Adds another safeguard to ensure AC3 pass-thru uses a 48khz sample rate.
[HandBrake.git] / contrib / Makefile
blob33baec42c7ca51aea9ef010f2fbb1d7777d4c9d8
1 # Contrib Makefile
3 SYSTEM = $(shell uname -s)
5 # Special case for Mac OS X: everything is handled from the Xcode project
6 ifeq ($(SYSTEM),Darwin)
8 all:
9 ( echo "MacOs X doesn't use this makefile, to build the contrib please use ../jam" ; false )
11 endif
13 ifeq ($(SYSTEM),Linux)
15 all: .contrib
17 .contrib:
18 ( cd .. ; ./configure ; cd contrib ; cp -f ../config.jam . ; jam )
20 clean:
21 ( echo "Do a make mrproper to remove the contrib libraries )
23 mrproper:
24 (rm -rf lib ; rm -rf include )
26 endif
28 ifeq ($(findstring CYGWIN_NT,$(SYSTEM)),CYGWIN_NT)
30 all: .contrib
32 .contrib:
33 ( cd .. ; ./configure ; cd contrib ; cp -f ../config.jam . ; jam.exe )
35 clean:
36 ( echo "Do a make mrproper to remove the contrib libraries )
38 mrproper: clean
39 (rm -rf lib ; rm -rf include ; rm -f .contrib)
41 endif