Update of /cvsroot/pure-data/packages/darwin_app In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14357
Modified Files: Makefile Log Message:
- fixed typo in DESTDIR (there was a space after "installroot") - added generated config files to darwin_app_externals_flext_clean target
Index: Makefile =================================================================== RCS file: /cvsroot/pure-data/packages/darwin_app/Makefile,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** Makefile 5 Jun 2005 10:34:10 -0000 1.12 --- Makefile 6 Jun 2005 02:38:27 -0000 1.13 *************** *** 4,8 **** PD_APP_NAME = Pd
! DESTDIR = installroot PD_APP_CONTENTS = /Applications/$(PD_APP_NAME).app/Contents INSTALL_PREFIX = $(PD_APP_CONTENTS)/Resources --- 4,8 ---- PD_APP_NAME = Pd
! DESTDIR = installroot PD_APP_CONTENTS = /Applications/$(PD_APP_NAME).app/Contents INSTALL_PREFIX = $(PD_APP_CONTENTS)/Resources *************** *** 298,306 **** ( \ ( \ ! cat buildsys/config-mac-pd-gcc.txt | \ ! sed "s/^PDPATH=.*/PDPATH=../../../pd/" > ____c && \ ! cp ____c buildsys/config-mac-pd-gcc.txt && rm -f ____c \ ! ) || \ ! ( \ sed "s/^PDPATH=.*/PDPATH=../../../pd/" buildsys/mac/pd/config-gcc.def > buildsys/config-mac-pd-gcc.txt \ ) \ --- 298,306 ---- ( \ ( \ ! cat buildsys/config-mac-pd-gcc.txt | \ ! sed "s/^PDPATH=.*/PDPATH=../../../pd/" > ____c && \ ! cp ____c buildsys/config-mac-pd-gcc.txt && rm -f ____c \ ! ) || \ ! ( \ sed "s/^PDPATH=.*/PDPATH=../../../pd/" buildsys/mac/pd/config-gcc.def > buildsys/config-mac-pd-gcc.txt \ ) \ *************** *** 591,603 ****
darwin_app_externals_flext_clean: ! -rm ../../externals/grill/flext/source/libflext.a ! cd ../../externals/grill/flext && make -f makefile.pd-darwin clean ! cd ../../externals/grill/dyn && make -f makefile.pd-darwin clean ! cd ../../externals/grill/fftease && make -f makefile.pd-darwin clean ! cd ../../externals/grill/pool && make -f makefile.pd-darwin clean ! cd ../../externals/grill/py && make -f makefile.pd-darwin clean ! cd ../../externals/grill/vasp && make -f makefile.pd-darwin clean ! cd ../../externals/grill/vst && make -f makefile.pd-darwin clean ! cd ../../externals/grill/xsample && make -f makefile.pd-darwin clean cd ../../externals/footils/syncgrain && make -f makefile.pd-darwin clean
--- 591,606 ----
darwin_app_externals_flext_clean: ! cd ../../externals/grill && ( \ ! rm flext/buildsys/config-mac-pd-gcc.txt config.txt; \ ! rm flext/source/libflext.a; \ ! cd flext && make -f makefile.pd-darwin clean; \ ! cd dyn && make -f makefile.pd-darwin clean; \ ! cd fftease && make -f makefile.pd-darwin clean; \ ! cd pool && make -f makefile.pd-darwin clean; \ ! cd py && make -f makefile.pd-darwin clean; \ ! cd vasp && make -f makefile.pd-darwin clean; \ ! cd vst && make -f makefile.pd-darwin clean; \ ! cd xsample && make -f makefile.pd-darwin clean; \ ! ) cd ../../externals/footils/syncgrain && make -f makefile.pd-darwin clean