diff options
author | N.N. <federico__@users.sourceforge.net> | 2008-12-20 21:48:16 +0000 |
---|---|---|
committer | N.N. <federico__@users.sourceforge.net> | 2008-12-20 21:48:16 +0000 |
commit | 407acc447b6d67a124b5560ecefae4ca1ea7e0ae (patch) | |
tree | 452ba2a354d1b5bc1c83466947ab14fb624b03c7 /tracker | |
parent | cef783f70abbbea5177ccd0d9e2d6df4a37f3033 (diff) |
fix cflags for amd64
svn path=/trunk/externals/ffext/; revision=10453
Diffstat (limited to 'tracker')
-rw-r--r-- | tracker/makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tracker/makefile b/tracker/makefile index 5a62b2b..c6e72bc 100644 --- a/tracker/makefile +++ b/tracker/makefile @@ -35,7 +35,7 @@ LINUXINCLUDE = -I/usr/include -I$(PDPATH)/src LINUXLDFLAGS = -export_dynamic -shared .c.pd_linux: - $(CC) $(LINUXCFLAGS) $(LINUXINCLUDE) -o $*.o -c $*.c + $(CC) $(LINUXCFLAGS) $(CFLAGS) $(LINUXINCLUDE) -fPIC -o $*.o -c $*.c $(LD) $(LINUXLDFLAGS) -o $*.pd_linux $*.o -lc -lm strip --strip-unneeded $*.pd_linux |