Update of /cvsroot/pure-data/doc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7739
Modified Files: Makefile.buildlayout Log Message: created Pd-0.38.4-extendedRC3.app release
Index: Makefile.buildlayout =================================================================== RCS file: /cvsroot/pure-data/doc/Makefile.buildlayout,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Makefile.buildlayout 21 Nov 2005 04:39:02 -0000 1.1 --- Makefile.buildlayout 21 Nov 2005 23:02:16 -0000 1.2 *************** *** 57,61 **** endif
- #==============================================================================# # --- 57,60 ---- *************** *** 116,119 **** --- 115,143 ---- #==============================================================================# # + # PD VERSION AND PACKAGE NAMING + # + #==============================================================================# + + + PD_MAJOR_VERSION := $(shell grep 'Pd version' $(PD_SRC)/src/s_main.c | \ + sed 's/char pd_version[] = "Pd version ([0-9]).[0-9]*[. TES-]*[0-9]*[0-9extndRC.-]*\n";/\1/') + PD_MINOR_VERSION := $(shell grep 'Pd version' $(PD_SRC)/src/s_main.c | \ + sed 's/char pd_version[] = "Pd version [0-9].([0-9]*)[. TES-]*([0-9]*)[0-9extndRC.-]*\n";/\1/') + PD_BUGFIX_VERSION := $(shell grep 'Pd version' $(PD_SRC)/src/s_main.c | \ + sed 's/char pd_version[] = "Pd version [0-9].[0-9]*[. TES-]*([0-9]*)[0-9extndRC.-]*\n";/\1/') + # the separators [.-] need to be the same as in s_main.c or the regexps break + PD_VERSION = $(PD_MAJOR_VERSION).$(PD_MINOR_VERSION).$(PD_BUGFIX_VERSION) + + + # release version for this distro + PACKAGE_VERSION = extended-RC3 + PACKAGE_NAME = Pd-$(PD_VERSION)-$(PACKAGE_VERSION) + DMG_NAME = $(PACKAGE_NAME) + + + + + #==============================================================================# + # # CLEAN TARGETS #