summaryrefslogtreecommitdiff
path: root/build/Makefile.common
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2009-03-25 20:35:48 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2009-03-25 20:35:48 +0000
commit71f4a46b3a94a406530ef000420795e49d17ebf4 (patch)
tree6faf37fe516e3210ba949b1161edb606a52b52db /build/Makefile.common
parent795caf742657a42827502ee959cb0af4c5da9970 (diff)
downloadlibdom-71f4a46b3a94a406530ef000420795e49d17ebf4.tar.gz
libdom-71f4a46b3a94a406530ef000420795e49d17ebf4.tar.bz2
First cut at a port to the new buildsystem.
DOMTS stuff currently disabled. svn path=/trunk/dom/; revision=6883
Diffstat (limited to 'build/Makefile.common')
-rw-r--r--build/Makefile.common45
1 files changed, 0 insertions, 45 deletions
diff --git a/build/Makefile.common b/build/Makefile.common
deleted file mode 100644
index c445a4c..0000000
--- a/build/Makefile.common
+++ /dev/null
@@ -1,45 +0,0 @@
-# Top-level Makefile fragment for DOM library
-
-# Name of component
-export COMPONENT = libdom
-
-# Environment
-export EXPORT = $(CURDIR)/dist
-export TOP = $(CURDIR)
-
-.PHONY: release debug test clean setup export distclean
-
-# Rules
-release: setup
- @$(MAKE) $(MAKEFLAGS) -C bindings release
- @$(MAKE) $(MAKEFLAGS) -C src release
-
-debug: setup
- @$(MAKE) $(MAKEFLAGS) -C bindings debug
- @$(MAKE) $(MAKEFLAGS) -C src debug
-
-test: debug
- @$(MAKE) $(MAKEFLAGS) -C test test
-
-clean:
- @$(MAKE) $(MAKEFLAGS) -C bindings clean
- @$(MAKE) $(MAKEFLAGS) -C src clean
- @$(MAKE) $(MAKEFLAGS) -C test clean
-
-setup:
- @$(MAKE) $(MAKEFLAGS) -C bindings setup
- @$(MAKE) $(MAKEFLAGS) -C src setup
- @$(MAKE) $(MAKEFLAGS) -C test setup
-
-export: release
- @$(MKDIR) $(MKDIRFLAGS) $(TOP)/dist/lib
- @$(CP) $(CPFLAGS) -r include $(EXPORT)/
- @$(MAKE) $(MAKEFLAGS) -C bindings export
- @$(MAKE) $(MAKEFLAGS) -C src export
- @$(MAKE) $(MAKEFLAGS) -C test export
-
-distclean: clean
- -@$(RM) $(RMFLAGS) -r $(TOP)/dist
- @$(MAKE) $(MAKEFLAGS) -C bindings distclean
- @$(MAKE) $(MAKEFLAGS) -C src distclean
- @$(MAKE) $(MAKEFLAGS) -C test distclean