diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-04-03 21:02:13 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-04-03 21:02:13 +0000 |
| commit | ce901a234111f0a6cf98b441c011289ce0d0bdfa (patch) | |
| tree | 9a13756d08ea31a85a22bc5987b2f4d5818c5513 /Makefile | |
| parent | 2d81fb038b0690e73518a644ce73ff8c44565707 (diff) | |
more build fixes, calling the other makefiles instead of including them
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 34 |
1 files changed, 14 insertions, 20 deletions
@@ -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 |
