From 20696d06a37f7f123fa57094f351fa4c1a9d9b40 Mon Sep 17 00:00:00 2001 From: Kalle Vahlman Date: Mon, 3 Nov 2008 15:04:42 +0200 Subject: [PATCH] Add top-level Makefile --- Makefile | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..765eac0 --- /dev/null +++ b/Makefile @@ -0,0 +1,31 @@ +PLUGINS=xpcom-dbusservice +LIBRARIES=jscorebus + +about: + @echo + @echo "This is the Browser D-Bus Bridge" + @echo "Originally developed by Movial" + @echo + @echo "The following build targets are available:" + @echo " xpcom The XPCOM D-Bus service" + @echo " jscore The JavaScriptCore (WebKit) D-Bus library" + @echo " all Build all above targets" + @echo " install Install all built targets" + @echo + +build: jscore xpcom + +jscore-print: + @echo + @echo Building JSCoreBus: +jscore: jscore-print jscorebus-shared + +xpcom-print: + @echo + @echo Building XPCOM D-Bus service: +xpcom: xpcom-print xpcom-dbusservice-plugin + +include build/project.mk + +.PHONY: build all jscorebus xpcom-dbusservice + -- 2.25.1