Update of /cvsroot/pure-data/externals/grill/flext/buildsys/mac/pd In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29038/buildsys/mac/pd
Modified Files: config-gcc.def Added Files: gnumake-gcc-ext.inc gnumake-gcc-flext.inc gnumake-gcc.inc Removed Files: make-gcc.inc Log Message: updated make system build system for OSX simplified make system reconsidered flext::buffer:Update added object construction and destruction flags updated build system
--- NEW FILE: gnumake-gcc.inc --- DEFS += -DFLEXT_SYS=2
INCPATH += -I$(PDPATH)/src LIBPATH += -L$(PDPATH)/bin
LDFLAGS += -bundle -bundle_loader $(PDBIN)
##############################################
OBJPATH=$(OUTPATH)/$(OUTSUB) TARGETPATH=$(OBJPATH) TARGET=$(TARGETPATH)/$(OUTNAME).$(EXT)
--- NEW FILE: gnumake-gcc-ext.inc --- EXT=pd_darwin
Index: config-gcc.def =================================================================== RCS file: /cvsroot/pure-data/externals/grill/flext/buildsys/mac/pd/config-gcc.def,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** config-gcc.def 30 Dec 2004 04:58:25 -0000 1.2 --- config-gcc.def 3 Jan 2005 05:00:28 -0000 1.3 *************** *** 1,17 **** # where is the PD installation including source code? ! PDPATH=/Applications/Pd-0.38-0test10.app/Contents/Resources
# where is the PD executable? ! PDBIN=/usr/local/bin/pd
! # where should the external be installed? ! INSTPATH=$(PDPATH)/extra
! # where do the flext headers and libraries reside? ! FLEXTPATH=$(PDPATH)/flext
# where should the external be built? OUTPATH=pd-darwin
# user defined compiler flags # (check if they match your system!) --- 1,29 ---- # where is the PD installation including source code? ! PDPATH=/Applications/audio/Pd-0.38-0test13.app/Contents/Resources
# where is the PD executable? ! PDBIN=$(PDPATH)/bin/pd
! ###############################################################
! # where do/should the flext headers reside/be built? ! FLEXTINC=/usr/local/include/flext ! ! # where do/should the flext static libraries reside/be built? ! FLEXTLIB=/usr/local/lib ! ! # where do/should the flext shared libraries reside/be built? ! FLEXTSHLIB=$(FLEXTLIB) ! ! ###############################################################
# where should the external be built? OUTPATH=pd-darwin
+ # where should the external be installed? + INSTPATH=$(PDPATH)/extra + + ############################################################### + # user defined compiler flags # (check if they match your system!)
--- make-gcc.inc DELETED ---
--- NEW FILE: gnumake-gcc-flext.inc --- ifdef SHARED EXT=dylib else EXT=a endif