Update of /cvsroot/pure-data/externals/iem/iem_spec2/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3689
Modified Files: makefile Log Message: put the pdsource path into a PDSOURCE variable, so it can be set from outside
Index: makefile =================================================================== RCS file: /cvsroot/pure-data/externals/iem/iem_spec2/src/makefile,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** makefile 8 Dec 2006 07:47:49 -0000 1.1 --- makefile 9 Jan 2007 09:32:58 -0000 1.2 *************** *** 3,7 **** .SUFFIXES: .pd_linux
! INCLUDE = -I. -I/usr/local/src/pd/src
LDFLAGS = -export-dynamic -shared --- 3,9 ---- .SUFFIXES: .pd_linux
! PDSOURCE = /usr/local/src/pd/src ! ! INCLUDE = -I. -I${PDSOURCE}
LDFLAGS = -export-dynamic -shared *************** *** 53,58 ****
clean: ! rm ../$(TARGET) ! rm *.o
all: $(OBJ) --- 55,60 ----
clean: ! rm -f ../$(TARGET) ! rm -f *.o
all: $(OBJ)