diff options
Diffstat (limited to 'gfsm')
-rw-r--r-- | gfsm/README.txt | 39 | ||||
-rw-r--r-- | gfsm/src/Makefile.am | 4 |
2 files changed, 41 insertions, 2 deletions
diff --git a/gfsm/README.txt b/gfsm/README.txt new file mode 100644 index 0000000..f889241 --- /dev/null +++ b/gfsm/README.txt @@ -0,0 +1,39 @@ + README for pd external package 'gfsm' + + Last updated for pd-gfsm v0.04 + +DESCRIPTION + pd-gfsm provides Pd bindings for the GFSM finite-state machine library. + +PREREQUISITES + Pd Available from http://crca.ucsd.edu/~msp/software.html + + libgfsm >= v0.0.8-pre6 + Available from http://www.ling.uni-potsdam.de/~moocow/projects/gfsm + +INSTALLATION + Issue the following commands to the shell: + + cd DISTNAME-X.YY (or wherever you extracted the distribution) + ./configure + make + make install + +BUILD OPTIONS + The 'configure' script supports the following options, among others: + + * --enable-debug , --disable-debug + Whether to enable verbose debugging messages. Default=no. + +ACKNOWLEDGEMENTS + PD by Miller Puckette and others. + + Ideas, black magic, and other nuggets of information drawn from code by + Guenter Geiger, Larry Troxler, and iohannes m zmoelnig. + +KNOWN BUGS + None known. + +AUTHOR + Bryan Jurish <moocow@ling.uni-potsdam.de> + diff --git a/gfsm/src/Makefile.am b/gfsm/src/Makefile.am index 05d3eda..06b741c 100644 --- a/gfsm/src/Makefile.am +++ b/gfsm/src/Makefile.am @@ -66,7 +66,7 @@ gfsm_SOURCES = \ DEFS = @DEFS@ AFLAGS = @AFLAGS@ DFLAGS = @DFLAGS@ -IFLAGS = @IFLAGS@ +IFLAGS = @IFLAGS@ -I$(srcdir) LFLAGS = @LFLAGS@ OFLAGS = @OFLAGS@ WFLAGS = -Wall @@ -90,7 +90,7 @@ gfsm_LDFLAGS = $(LFLAGS) #MOSTLYCLEANFILES = ## --- clean: built by 'make' -CLEANFILES = *$(EXEEXT) +CLEANFILES = *.$(PDEXT) ## --- distclean: built by 'configure' DISTCLEANFILES = \ |