summaryrefslogtreecommitdiff
path: root/Makefile
blob: b018e9f6a1ddaa2db86e42399e6a455560786786 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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