From 63305a132cf1a72e8d53d283471f0258d0f52bc7 Mon Sep 17 00:00:00 2001 From: Gerard van Dongen Date: Sat, 18 Oct 2003 13:20:49 +0000 Subject: This commit was generated by cvs2svn to compensate for changes in r1104, which included commits to RCS files with non-trunk default branches. svn path=/trunk/externals/beatpipe/; revision=1105 --- makefile | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 makefile (limited to 'makefile') diff --git a/makefile b/makefile new file mode 100644 index 0000000..88a4c64 --- /dev/null +++ b/makefile @@ -0,0 +1,23 @@ +# where is your m_pd.h ??? + +LINUXINCLUDE = -I/usr/local/include + + + + +beatpipe: beatpipe.c + gcc $(CFLAGS) $(LINUXCFLAGS) $(LINUXINCLUDE) -o beatpipe.o -c beatpipe.c + ld -export_dynamic -shared -o beatpipe.pd_linux beatpipe.o -lc -lm + strip --strip-unneeded beatpipe.pd_linux + rm beatpipe.o + + +install: + + cp help-beatpipe.pd /usr/local/lib/pd/doc/5.reference + cp beatpipe.pd_linux /usr/local/lib/pd/externs + + +clean: + rm beatpipe.pd_linux + -- cgit v1.2.1