]> icculus.org git repositories - mikachu/openbox.git/blob - Makefile
more build fixes
[mikachu/openbox.git] / Makefile
1 include build/Makefile.incl
2
3 depdir:=.deps
4
5 all: alltargets
6
7 include build/Makefile.render
8 include build/Makefile.kernel
9 include build/Makefile.themes
10 include build/Makefile.plugins
11 include build/Makefile.engines
12
13 alltargets: $(kernel_target) $(plugins_targets) $(engines_targets)
14
15 install: all render-install kernel-install themes-install plugins-install engines-install
16
17 uninstall: render-uninstall kernel-uninstall themes-uninstall plugins-uninstall engines-uninstall
18
19 clean: render-clean kernel-clean plugins-clean engines-clean
20         $(RM) *\~
21
22 distclean: clean
23         $(RM) configure Makefile.incl
24         $(RM) -r .deps/
25
26 .PHONY: all clean distclean