OSDN Git Service

MacGUI: Implements a part of the NSTableView delegate in ChapterTitles so that pressi...
[handbrake-jp/handbrake-jp-git.git] / contrib / Makefile
1 # Contrib Makefile\r
2 \r
3 SYSTEM = $(shell uname -s)\r
4 \r
5 # Special case for Mac OS X: everything is handled from the Xcode project\r
6 ifeq ($(SYSTEM),Darwin)\r
7 \r
8 all:    .contrib\r
9 \r
10 .contrib:\r
11         ( cd .. ; ./configure ; cd contrib ; cp -f ../config.jam . ; ../jam )\r
12 \r
13 clean:  \r
14         ( echo "Do a make mrproper to remove the contrib libraries )\r
15 \r
16 mrproper: \r
17         (rm -rf lib ; rm -rf include )\r
18 \r
19 endif\r
20 \r
21 ifeq ($(SYSTEM),Linux)\r
22 \r
23 all:    .contrib\r
24 \r
25 .contrib:\r
26         ( cd .. ; ./configure ; cd contrib ; cp -f ../config.jam . ; jam )\r
27 \r
28 clean:  \r
29         ( echo "Do a make mrproper to remove the contrib libraries )\r
30 \r
31 mrproper: \r
32         (rm -rf lib ; rm -rf include )\r
33 \r
34 endif\r
35 \r
36 ifeq ($(findstring CYGWIN_NT,$(SYSTEM)),CYGWIN_NT)\r
37 \r
38 all:    .contrib\r
39 \r
40 .contrib:    \r
41         ( cd .. ; ./configure ; cd contrib ; cp -f ../config.jam . ; jam.exe )\r
42 \r
43 clean:\r
44         ( echo "Do a make mrproper to remove the contrib libraries )\r
45 \r
46 mrproper: clean\r
47         (rm -rf lib ; rm -rf include ; rm -f .contrib)\r
48 \r
49 endif\r