Update of /cvsroot/pure-data/externals/build/linux In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14399/linux
Modified Files: makefile Log Message:
- added headers from 0.38-4 to externals/build/include and added README so people don't repeat the same mistake of removing/etc.
- added Pd src to include search before externals/build/include so if the Pd src is in the standard dev layout, externals will be compiled with those headers instead of externals/build/include
Index: makefile =================================================================== RCS file: /cvsroot/pure-data/externals/build/linux/makefile,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** makefile 17 Jun 2004 03:15:56 -0000 1.21 --- makefile 12 Apr 2005 15:59:03 -0000 1.22 *************** *** 47,56 **** -Wno-unused -Wno-parentheses -Wno-switch
! INCLUDES = -I. -I.. -I../include
%.pd_linux: ../src/%.c $(CC) $(CFLAGS) $(INCLUDES) -o "$*.o" -c "../src/$*.c" gcc -Wl,-export_dynamic -shared -o "$*.pd_linux" "$*.o" -lc -lm \ ! `test -f $*.libs && cat $*.libs` chmod a-x "$*.pd_linux" $(STRIP) $*.pd_linux --- 47,57 ---- -Wno-unused -Wno-parentheses -Wno-switch
! INCLUDES = -I. -I.. -I../../../pd/src -I../include
%.pd_linux: ../src/%.c $(CC) $(CFLAGS) $(INCLUDES) -o "$*.o" -c "../src/$*.c" gcc -Wl,-export_dynamic -shared -o "$*.pd_linux" "$*.o" -lc -lm \ ! `test -f $*.libs && cat $*.libs` \ ! `test -f ../src/$*.libs && cat ../src/$*.libs` chmod a-x "$*.pd_linux" $(STRIP) $*.pd_linux