Adds more changes for 0.9.1 to the NEWS file.
[HandBrake.git] / contrib / Makefile
blobb39c53ea67bc0001d2cc6658ce6f966c0d674a8b
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 ($(SYSTEM),CYGWIN_NT-5.1)
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