Update of /cvsroot/pure-data/externals/clr In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16888
Modified Files: makefile.darwin Log Message: changed from libs to framework
Index: makefile.darwin =================================================================== RCS file: /cvsroot/pure-data/externals/clr/makefile.darwin,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** makefile.darwin 28 Jan 2006 10:30:54 -0000 1.3 --- makefile.darwin 6 Mar 2006 16:28:54 -0000 1.4 *************** *** 14,29 ****
PDPATH=/Users/thomas/Develop/pd/devel_0_39 - MONO=/Library/Frameworks/Mono.Framework
# where is the PD executable? PD=$(PDPATH)/bin/pd
! LDFLAGS=-L$(MONO)/Libraries -lmono -lgmodule-2.0 -lgthread-2.0 -lglib-2.0 # -lintl -liconv
! DARWININCLUDE = -I$(MONO)/Headers -I$(MONO)/Headers/glib-2.0 -I$(MONO)/Libraries/glib-2.0/include -I$(PDPATH)/src
- DARWINCFLAGS = -DPD -O2
.cpp.pd_darwin: ! g++ -dynamiclib -undefined dynamic_lookup $(DARWINCFLAGS) $(DARWININCLUDE) $(CFLAGS) $(LDFLAGS) -o $*.pd_darwin $*.cpp --- 14,35 ----
PDPATH=/Users/thomas/Develop/pd/devel_0_39 MONO=/Library/Frameworks/Mono.Framework
+ CFLAGS += -DPD -O2 + # where is the PD executable? PD=$(PDPATH)/bin/pd
! LDFLAGS=-framework Mono
! INCLUDE = -I$(MONO)/Headers -I$(MONO)/Headers/glib-2.0 -I$(MONO)/Libraries/glib-2.0/include -I$(PDPATH)/src ! ! # new version ! OPTIONS = -dynamiclib -undefined dynamic_lookup ! ! # old version ! #OPTIONS = -bundle -bundle_loader $(PD)
.cpp.pd_darwin: ! g++ $(OPTIONS) $(INCLUDE) $(CFLAGS) $(LDFLAGS) -o $*.pd_darwin $*.cpp