aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2010-08-19 03:10:23 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2010-08-19 03:10:23 +0000
commit239e4e138ea8cfb78fc0d484b0ceb92e56767270 (patch)
tree091922a9fedd7d3396aefcb50033e8cdb4ec78e6 /makefile
parent64f222ea0582da5ac88c72fa0e0406453925cc73 (diff)
debianized using library template
svn path=/trunk/externals/beatpipe/; revision=13832
Diffstat (limited to 'makefile')
-rw-r--r--makefile23
1 files changed, 0 insertions, 23 deletions
diff --git a/makefile b/makefile
deleted file mode 100644
index 829584e..0000000
--- a/makefile
+++ /dev/null
@@ -1,23 +0,0 @@
-# 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
-