]> Dogcows Code - chaz/openbox/blob - Makefile.in
fixes for build system. add themes to the install process. use the build/ dir for...
[chaz/openbox] / Makefile.in
1 include build/Makefile.incl
2
3 targets = render kernel plugins engines themes data
4
5 all: libtool
6 @for i in $(targets); do \
7 $(MAKE) -$(MAKEFLAGS) -f build/Makefile.$$i $@; \
8 done
9
10 uninstall:
11 @for i in $(targets); do \
12 $(MAKE) -$(MAKEFLAGS) -f build/Makefile.$$i $@; \
13 done
14
15 install: all
16 @for i in $(targets); do \
17 $(MAKE) -$(MAKEFLAGS) -f build/Makefile.$$i $@; \
18 done
19
20 clean:
21 @for i in $(targets); do \
22 $(MAKE) -$(MAKEFLAGS) -f build/Makefile.$$i $@; \
23 done
24 $(RM) *\~
25
26 distclean: clean
27 $(RM) configure Makefile.incl
28 $(RM) -r .deps/
29
30 LIBTOOL_DEPS = @LIBTOOL_DEPS@
31 libtool: $(LIBTOOL_DEPS)
32 $(SHELL) ./config.status --recheck
33
34 .PHONY: all clean distclean install uninstall
This page took 0.033658 seconds and 4 git commands to generate.