all repos — openbox @ f0c7edec62913a8d057b7d0defec7c45ac3fc94e

openbox fork - make it a bit more like ryudo

Makefile (raw)

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