OSDN Git Service

Updates jam and make's HB_BUILD and HB_VERSION numbers for 0.9.2.
[handbrake-jp/handbrake-jp-git.git] / Makefile.config
1 SNAP = $(shell echo $$SNAPSHOT)
2 ifeq ($(SNAP), 1)
3 HB_BUILD = $(shell date "+%Y%m%d")00
4 HB_VERSION = 0.9.2s$(shell date "+%d")
5 else
6 HB_BUILD = $(shell date "+%Y%m%d")00
7 HB_VERSION = "0.9.2"
8 endif
9 HB_DEFPPC = $(shell uname -a | grep ppc > /dev/null ; echo RES$$?)
10 ifeq ($(HB_DEFPPC), RES0)
11 HB_DEFPPC = "-DWORDS_BIGENDIAN"
12 else
13 HB_DEFPPC = 
14 endif
15