diff options
author | jstebbins <[email protected]> | 2008-06-17 15:40:49 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2008-06-17 15:40:49 +0000 |
commit | 8bbd36bcbe75a53b29f7cc62e5ae9d107f92eddc (patch) | |
tree | aafba8f8091293cc3faac87f0c61460cc6017c39 /gtk/Jamfile | |
parent | 01cf7f40ab14ce0961c5ea0c6e16580284c03945 (diff) |
LinGui: Initial import
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1517 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'gtk/Jamfile')
-rw-r--r-- | gtk/Jamfile | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/gtk/Jamfile b/gtk/Jamfile new file mode 100644 index 000000000..2d7312478 --- /dev/null +++ b/gtk/Jamfile @@ -0,0 +1,45 @@ +SubDir TOP gtk ; + +#rule GhbConfig +#{ +# Depends $(SUBDIR)/ghb : $(1) ; +#} +#actions GhbConfig +#{ +# cd `dirname $(1)` && +# ./configure --prefix=/usr +#} +#GhbConfig $(SUBDIR)/config.h : $(SUBDIR)/configure ; + +rule GhbApp +{ + Depends all : $(1) ; +} +actions GhbApp +{ + cd `dirname $(1)` && + $(MAKE) +} +GhbApp $(SUBDIR)/ghb : libhb.a $(SUBDIR)/config.h ; + +rule GhbClean +{ + Depends clean : $(1) ; +} +actions GhbClean +{ + cd $(2) && + $(MAKE) clean +} +GhbClean clean_dummy : $(SUBDIR) ; + +rule GhbInstall +{ + Depends install : $(1) ; +} +actions GhbInstall +{ + cd $(2) && + $(MAKE) install +} +GhbInstall install_dummy : $(SUBDIR) ; |