From 16dfd6ab3a956046b16cdddead30be0f768cc3db Mon Sep 17 00:00:00 2001 From: "N.N." Date: Sat, 22 Sep 2007 10:13:46 +0000 Subject: minor fixes to makefile svn path=/trunk/externals/ffext/; revision=8746 --- tracker/makefile | 7 ++++--- 1 file 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 -- cgit v1.2.1