OSDN Git Service

fix: cannot preview with QT
[handbrake-jp/handbrake-jp.git] / Makefile.config
1 # This line needs to be manually bumped for each release.
2 HB_VERSION = 0.9.3-jp
3
4 # Use the current date for the build number
5 HB_BUILD = $(shell date "+%Y%m%d")00
6
7 # Do the same for snapshots but mark as unstable
8 SNAP_HB_BUILD = $(shell date "+%Y%m%d")01
9
10 # For snapshots add the svn revision number to the HB_VERSION
11 SNAP_HB_VERSION = svn$(shell svnversion)
12
13 # The working path is needed for editing the MacGui .plist
14 FULL_PATH = $(shell pwd)
15 BUILD_DATE = $(shell date "+%Y%m%d")
16
17 HB_DEFPPC = $(shell uname -a | grep ppc > /dev/null ; echo RES$$?)
18 ifeq ($(HB_DEFPPC), RES0)
19 HB_DEFPPC = "-DWORDS_BIGENDIAN"
20 else
21 HB_DEFPPC = 
22 endif