X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=Makefile;h=3d4327947f29bda305ff825b3a03dd6c6edaaa2a;hb=47cc179781aec47bf317c5c15879fa0dad95de86;hp=55aeecde9460058168711e1a1504ea914ec48195;hpb=9084ca41a5d73e4efce4b28958752a99554499b9;p=chaz%2Fopenbox diff --git a/Makefile b/Makefile index 55aeecde..3d432794 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