OSDN Git Service

MacGui: Remove Target Size as a rate control option as it doesn't really work correct...
[handbrake-jp/handbrake-jp-git.git] / gtk / Jamfile
1 SubDir TOP gtk ;
2
3 #rule GhbConfig
4 #{
5 #       Depends $(SUBDIR)/ghb : $(1) ;
6 #}
7 #actions GhbConfig
8 #{
9 #       cd `dirname $(1)` &&
10 #       ./configure --prefix=/usr
11 #}
12 #GhbConfig $(SUBDIR)/config.h : $(SUBDIR)/configure ;
13
14 rule GhbApp
15 {
16         Depends all : $(1) ;
17 }
18 actions GhbApp
19 {
20         cd `dirname $(1)` &&
21         $(MAKE)
22 }
23 GhbApp $(SUBDIR)/ghb : libhb.a $(SUBDIR)/config.h ;
24
25 rule GhbClean
26 {
27         Depends clean : $(1) ;
28 }
29 actions GhbClean
30 {
31         cd $(2) &&
32         $(MAKE) clean
33 }
34 GhbClean clean_dummy : $(SUBDIR) ;
35
36 rule GhbInstall
37 {
38         Depends install : $(1) ;
39 }
40 actions GhbInstall
41 {
42         cd $(2) &&
43         $(MAKE) install
44 }
45 GhbInstall install_dummy : $(SUBDIR) ;