all repos — openbox @ 2d81fb038b0690e73518a644ce73ff8c44565707

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
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/

.PHONY: all clean distclean