OSDN Git Service

Change the fifo size from being statically tuned for a Mac Pro with 4 CPUs to dynamic...
[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.1s$(shell date "+%d")
5 else
6 HB_BUILD = $(shell date "+%Y%m%d")00
7 HB_VERSION = "0.9.1"
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