Update of /cvsroot/pure-data/externals/grill/dyn In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20201
Modified Files: config-pd-darwin.txt make-files.txt makefile.pd-darwin Log Message: ""
Index: make-files.txt =================================================================== RCS file: /cvsroot/pure-data/externals/grill/dyn/make-files.txt,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** make-files.txt 30 Jan 2003 17:12:59 -0000 1.1 --- make-files.txt 23 Sep 2004 04:10:33 -0000 1.2 *************** *** 1,2 **** --- 1,4 ---- + NAME=dyn~ + # all the source files from the package DIR=src
Index: makefile.pd-darwin =================================================================== RCS file: /cvsroot/pure-data/externals/grill/dyn/makefile.pd-darwin,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** makefile.pd-darwin 30 Dec 2003 01:02:03 -0000 1.3 --- makefile.pd-darwin 23 Sep 2004 04:10:33 -0000 1.4 *************** *** 17,31 **** include $(CONFIG)
- FLEXTLIB=$(FLEXTPATH)/flext.a - # compiler+linker stuff INCLUDES=$(PDPATH) LIBPATH= ! FLAGS=-DFLEXT_SYS=2 ${U_FLAGS} ! CFLAGS=-O2 -Wno-unused -Wno-parentheses -Wno-switch -Wstrict-prototypes -fno-rtti ! #CFLAGS=-g LIBS=m FRAMEWORKS=vecLib ! LDFLAGS=-bundle -bundle_loader $(PD)
--- 17,39 ---- include $(CONFIG)
# compiler+linker stuff INCLUDES=$(PDPATH) LIBPATH= ! FLAGS=-DFLEXT_SYS=2 ! CFLAGS=-O2 ${UFLAGS} -Wno-unused -Wno-parentheses -Wno-switch -Wstrict-prototypes LIBS=m FRAMEWORKS=vecLib ! LDFLAGS+=-Wl,-x -Wl,-S -bundle -bundle_loader $(PD) ! ! ifdef FLEXT_SHARED ! CFLAGS+=-DFLEXT_SHARED ! LDFLAGS+=-L$(FLEXTPATH) ! FLEXTLIB=-lflext ! ! else ! ! FLEXTLIB=$(FLEXTPATH)/libflext.a ! ! endif
*************** *** 34,39 **** # ----------------------------------------------
- NAME=dyn~ - # all the source files from the package include make-files.txt --- 42,45 ---- *************** *** 44,48 **** all: $(TARGDIR) $(TARGET)
! $(patsubst %,$(DIR)/%,$(SRCS)): $(patsubst %,$(DIR)/%,$(HDRS)) $(FLEXTLIB) $(CONFIG) touch $@
--- 50,54 ---- all: $(TARGDIR) $(TARGET)
! $(patsubst %,$(DIR)/%,$(SRCS)): $(patsubst %,$(DIR)/%,$(HDRS)) $(CONFIG) touch $@
*************** *** 53,58 **** $(CXX) -c $(CFLAGS) $(FLAGS) $(patsubst %,-I%,$(INCLUDES) $(FLEXTPATH)) $< -o $@
! $(TARGET) : $(patsubst %.cpp,$(TARGDIR)/%.o,$(SRCS)) $(FLEXTLIB) ! $(CXX) $(LDFLAGS) $^ $(patsubst %,-L%,$(LIBPATH)) $(patsubst %,-l%,$(LIBS)) $(patsubst %,-framework %,$(FRAMEWORKS)) -o $@ chmod 755 $@
--- 59,64 ---- $(CXX) -c $(CFLAGS) $(FLAGS) $(patsubst %,-I%,$(INCLUDES) $(FLEXTPATH)) $< -o $@
! $(TARGET) : $(patsubst %.cpp,$(TARGDIR)/%.o,$(SRCS)) ! $(CXX) $(LDFLAGS) $^ $(patsubst %,-L%,$(LIBPATH)) $(patsubst %,-l%,$(LIBS)) $(patsubst %,-framework %,$(FRAMEWORKS)) $(FLEXTLIB) -o $@ chmod 755 $@
Index: config-pd-darwin.txt =================================================================== RCS file: /cvsroot/pure-data/externals/grill/dyn/config-pd-darwin.txt,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** config-pd-darwin.txt 28 Dec 2003 03:58:11 -0000 1.2 --- config-pd-darwin.txt 23 Sep 2004 04:10:33 -0000 1.3 *************** *** 12,16 **** # leave it blank if it is a system directory (like /usr/local/include), # since gcc 3.2 complains about it ! PDPATH=/usr/src/pd-0.37-0/src
# where is the PD executable? --- 12,16 ---- # leave it blank if it is a system directory (like /usr/local/include), # since gcc 3.2 complains about it ! PDPATH=../../../pd/src
# where is the PD executable? *************** *** 27,32 **** INSTPATH=/usr/local/lib/pd/extra
- # additional compiler flags # (check if they fit for your system!) ! UFLAGS=-maltivec -faltivec --- 27,35 ---- INSTPATH=/usr/local/lib/pd/extra
# additional compiler flags # (check if they fit for your system!) ! UFLAGS=-malign-power -maltivec -faltivec ! ! # build with a shared flext library ! FLEXT_SHARED=1 !