X-Git-Url: http://git.osdn.jp/view?a=blobdiff_plain;f=Makefile.config;h=4ae9bccdc32c0c39934cdc406276bcd8c873fba5;hb=533776bbad20db93fe964bc69975f108b2a30888;hp=bb7e512a26ef37456211c6b9ef1897dab4a89890;hpb=e80bffe847af97a9b038316963d22a6a3c6f194f;p=handbrake-jp%2Fhandbrake-jp-git.git diff --git a/Makefile.config b/Makefile.config index bb7e512a..4ae9bccd 100644 --- a/Makefile.config +++ b/Makefile.config @@ -1,15 +1,22 @@ -SNAP = $(shell echo $$SNAPSHOT) -ifeq ($(SNAP), 1) -HB_BUILD = $(shell date "+%Y%m%d")00 -HB_VERSION = 0.9.0s$(shell date "+%d") -else +# This line needs to be manually bumped for each release. +HB_VERSION = 0.9.3 + +# Use the current date for the build number HB_BUILD = $(shell date "+%Y%m%d")00 -HB_VERSION = "0.9.0" -endif + +# Do the same for snapshots but mark as unstable +SNAP_HB_BUILD = $(shell date "+%Y%m%d")01 + +# For snapshots add the svn revision number to the HB_VERSION +SNAP_HB_VERSION = svn$(shell svnversion) + +# The working path is needed for editing the MacGui .plist +FULL_PATH = $(shell pwd) +BUILD_DATE = $(shell date "+%Y%m%d") + HB_DEFPPC = $(shell uname -a | grep ppc > /dev/null ; echo RES$$?) ifeq ($(HB_DEFPPC), RES0) HB_DEFPPC = "-DWORDS_BIGENDIAN" else HB_DEFPPC = endif -