From d447dc0f59619d26073699d9f81d7de77c200be4 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Thu, 3 Apr 2003 05:59:03 +0000 Subject: new build system without automake --- Makefile | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 Makefile (limited to 'Makefile') 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 -- cgit v1.2.3