Update of /cvsroot/pure-data/packages/darwin-pkg In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15167
Modified Files: Makefile Log Message: grabbed Pd major, minor, and bugfix versions from s_main.c
Index: Makefile =================================================================== RCS file: /cvsroot/pure-data/packages/darwin-pkg/Makefile,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** Makefile 9 Mar 2004 15:27:03 -0000 1.6 --- Makefile 14 Mar 2004 23:17:36 -0000 1.7 *************** *** 5,11 **** # Fetch the versions of the various included packages
! PD_MAJOR_VERSION = $(shell grep PD_MAJOR_VERSION ../../pd/src/m_pd.h | cut -d ' ' -f 3) ! PD_MINOR_VERSION = $(shell grep PD_MINOR_VERSION ../../pd/src/m_pd.h | cut -d ' ' -f 3) ! PD_VERSION = $(PD_MAJOR_VERSION).$(PD_MINOR_VERSION)
CYCLONE_MAJOR_VERSION = $(shell grep CYCLONE_VERSION ../../externals/miXed/cyclone/build_counter | cut -d ' ' -f 3 | cut -d '"' -f 2) --- 5,12 ---- # Fetch the versions of the various included packages
! PD_MAJOR_VERSION = $(shell grep 'Pd version' s_main.c | cut -d '\' -f 1 | cut -d ' ' -f 6 | cut -d '.' -f 1) ! PD_MINOR_VERSION = $(shell grep 'Pd version' s_main.c | cut -d '\' -f 1 | cut -d ' ' -f 6 | cut -d '.' -f 2) ! PD_BUGFIX_VERSION = $(shell grep 'Pd version' s_main.c | cut -d '\' -f 1 | cut -d ' ' -f 6 | cut -d '.' -f 3) ! PD_VERSION = $(PD_MAJOR_VERSION).$(PD_MINOR_VERSION).$(PD_BUGFIX_VERSION)
CYCLONE_MAJOR_VERSION = $(shell grep CYCLONE_VERSION ../../externals/miXed/cyclone/build_counter | cut -d ' ' -f 3 | cut -d '"' -f 2) *************** *** 16,19 **** --- 17,22 ---- FLEXT_VERSION = $(shell grep PROJECT_NUMBER ../../externals/grill/flext/flext.doxy | cut -d '"' -f2 | cut -d ' ' -f2)
+ MAXLIB_VERSION = $(shell grep "#define VERSION" ../../externals/maxlib/maxlib.c | cut -d '"' -f 2) + ZEXY_VERSION = $(shell grep VERSION ../../externals/zexy/src/zexy.h | cut -d ' ' -f 3 | cut -d '"' -f 2)
*************** *** 40,44 **** INFO_FILE = $(PACKAGE_PREFIX).info
! clean: darwin_mpkg_clean darwin_mpkg_clean -cd ../../pd/src && make clean cd ../../externals/miXed/cyclone && make clean --- 43,47 ---- INFO_FILE = $(PACKAGE_PREFIX).info
! clean: darwin_dmg_clean darwin_mpkg_clean -cd ../../pd/src && make clean cd ../../externals/miXed/cyclone && make clean *************** *** 51,55 **** cd ../../nqpoly && make clean
! darwin_pkg_clean: -sudo rm -Rf installroot -sudo rm -Rf "$(DMG_PREFIX)"* --- 54,58 ---- cd ../../nqpoly && make clean
! darwin_dmg_clean: -sudo rm -Rf installroot -sudo rm -Rf "$(DMG_PREFIX)"* *************** *** 124,127 **** --- 127,131 ---- echo "<LI>cyclone: $(CYCLONE_VERSION)" >> $(README_FILE) echo "<LI>flext: $(FLEXT_VERSION)" >> $(README_FILE) + echo "<LI>maxlib: $(MAXLIB_VERSION)" >> $(README_FILE) echo "<LI>pd-abstractions: `date +20%y.%m.%d`" >> $(README_FILE) echo "<LI>pd-doc: `date +20%y.%m.%d`" >> $(README_FILE)