summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-04-03 05:59:03 +0000
committerDana Jansens <danakj@orodu.net>2003-04-03 05:59:03 +0000
commitd447dc0f59619d26073699d9f81d7de77c200be4 (patch)
treefae507e2a2568d249b0681bfc255ea3941a71a6f /Makefile
parent28a4456c46976ba5c58a300dfa67109227bc1583 (diff)
new build system without automake
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile29
1 files changed, 29 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 00000000..b018e9f6
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,29 @@
+include build/Makefile.incl
+
+depdir:=.deps
+
+all: alltargets
+
+include build/Makefile.render
+include build/Makefile.kernel
+include build/Makefile.themes
+include build/Makefile.plugins
+include build/Makefile.engines
+
+alltargets: $(kernel_target) $(plugins_targets) $(engines_targets)
+
+install: all render-install kernel-install themes-install plugins-install engines-install
+
+uninstall: render-uninstall kernel-uninstall themes-uninstall plugins-uninstall engines-uninstall
+
+clean: render-clean kernel-clean plugins-clean engines-clean
+ $(RM) *\~
+
+distclean: clean
+ $(RM) configure Makefile.incl
+ $(RM) -r .deps/
+
+$(depdir):
+ @mkdir $@
+
+.PHONY: all clean distclean