summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-04-03 21:02:13 +0000
committerDana Jansens <danakj@orodu.net>2003-04-03 21:02:13 +0000
commitce901a234111f0a6cf98b441c011289ce0d0bdfa (patch)
tree9a13756d08ea31a85a22bc5987b2f4d5818c5513 /Makefile
parent2d81fb038b0690e73518a644ce73ff8c44565707 (diff)
more build fixes, calling the other makefiles instead of including them
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile34
1 files changed, 14 insertions, 20 deletions
diff --git a/Makefile b/Makefile
index 55aeecde..5fa73e6e 100644
--- a/Makefile
+++ b/Makefile
@@ -1,26 +1,20 @@
-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
+all install uninstall:
+ @$(MAKE) -$(MAKEFLAGS) -f build/Makefile.render $@
+ @$(MAKE) -$(MAKEFLAGS) -f build/Makefile.kernel $@
+# @$(MAKE) -$(MAKEFLAGS) -f build/Makefile.plugins $@
+# @$(MAKE) -$(MAKEFLAGS) -f build/Makefile.engines $@
+# @$(MAKE) -$(MAKEFLAGS) -f build/Makefile.themes $@
+
+clean:
+ @$(MAKE) -$(MAKEFLAGS) -f build/Makefile.render $@
+ @$(MAKE) -$(MAKEFLAGS) -f build/Makefile.kernel $@
+# @$(MAKE) -$(MAKEFLAGS) -f build/Makefile.plugins $@
+# @$(MAKE) -$(MAKEFLAGS) -f build/Makefile.engines $@
+# @$(MAKE) -$(MAKEFLAGS) -f build/Makefile.themes $@
$(RM) *\~
distclean: clean
$(RM) configure Makefile.incl
$(RM) -r .deps/
-.PHONY: all clean distclean
+.PHONY: all clean distclean install uninstall