[SCM] WebKit Debian packaging branch, debian/experimental, updated. debian/1.3.8-1-1049-g2e11a8e

weinig at apple.com weinig at apple.com
Fri Jan 21 14:43:30 UTC 2011


The following commit has been merged in the debian/experimental branch:
commit 8b7b40fbe4702eeb1c62683448aa6ca7e633a35c
Author: weinig at apple.com <weinig at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Dec 27 19:41:35 2010 +0000

    Fix Makefile based build.
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@74692 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/Sources/Makefile b/Sources/Makefile
index 5f3c4b7..910f0d9 100644
--- a/Sources/Makefile
+++ b/Sources/Makefile
@@ -1,4 +1,4 @@
-MODULES = JavaScriptGlue
+MODULES = JavaScriptGlue ThirdParty/ANGLE
 
 all:
 	@for dir in $(MODULES); do ${MAKE} $@ -C $$dir; exit_status=$$?; \
diff --git a/Sources/ThirdParty/Makefile b/Sources/ThirdParty/Makefile
new file mode 100644
index 0000000..d9b8d2a
--- /dev/null
+++ b/Sources/ThirdParty/Makefile
@@ -0,0 +1,17 @@
+MODULES = ANGLE
+
+all:
+	@for dir in $(MODULES); do ${MAKE} $@ -C $$dir; exit_status=$$?; \
+	if [ $$exit_status -ne 0 ]; then exit $$exit_status; fi; done
+
+debug d development dev develop:
+	@for dir in $(MODULES); do ${MAKE} $@ -C $$dir; exit_status=$$?; \
+	if [ $$exit_status -ne 0 ]; then exit $$exit_status; fi; done
+
+release r deployment dep deploy:
+	@for dir in $(MODULES); do ${MAKE} $@ -C $$dir; exit_status=$$?; \
+	if [ $$exit_status -ne 0 ]; then exit $$exit_status; fi; done
+
+clean:
+	@for dir in $(MODULES); do ${MAKE} $@ -C $$dir; exit_status=$$?; \
+	if [ $$exit_status -ne 0 ]; then exit $$exit_status; fi; done
diff --git a/Sources/ThirdParty/Makefile.shared b/Sources/ThirdParty/Makefile.shared
new file mode 100644
index 0000000..1c78613
--- /dev/null
+++ b/Sources/ThirdParty/Makefile.shared
@@ -0,0 +1,2 @@
+SCRIPTS_PATH ?= ../../../Tools/Scripts
+include ../../../Makefile.shared

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list