aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorN.N. <federico__@users.sourceforge.net>2007-09-22 10:13:46 +0000
committerN.N. <federico__@users.sourceforge.net>2007-09-22 10:13:46 +0000
commit16dfd6ab3a956046b16cdddead30be0f768cc3db (patch)
tree83f339233e5a16efccad60cf95cb71118d757fd9
parent3148f9f94577958e208dfcfbdbf38e5bc6bf5145 (diff)
minor fixes to makefile
svn path=/trunk/externals/ffext/; revision=8746
-rw-r--r--tracker/makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/tracker/makefile b/tracker/makefile
index 826444f..1014845 100644
--- a/tracker/makefile
+++ b/tracker/makefile
@@ -1,6 +1,7 @@
all: tracker.pd_linux
tracker.pd_linux: tracker.c tracker.h tracker.tk2c
+STRIP = strip
CFLAGS = -DPD -DUNIX -O2 -funroll-loops -fomit-frame-pointer \
-Wall -W -Wno-shadow -Wstrict-prototypes \
-Wno-unused -Wno-parentheses -Wno-switch \
@@ -9,10 +10,10 @@ CFLAGS = -DPD -DUNIX -O2 -funroll-loops -fomit-frame-pointer \
.SUFFIXES: .pd_linux .tk .tk2c
.tk.tk2c:
- sh tk2c.bash < $*.tk >$*.tk2c
+ ./tk2c.bash < $*.tk > $*.tk2c
.c.pd_linux:
$(CC) $(CFLAGS) -o $*.o -c $*.c
$(LD) -export_dynamic -shared -o $*.pd_linux $*.o -lc -lm
- strip --strip-unneeded $*.pd_linux
+ $(STRIP) --strip-unneeded $*.pd_linux
clean:
- rm -f *.o *.pd_* so_locations *.tk2c
+ $(RM) -f *.o *.pd_* so_locations *.tk2c