]> Dogcows Code - chaz/openbox/blob - Makefile.in
shrimpx above miklos?
[chaz/openbox] / Makefile.in
1 include build/Makefile.incl
2
3 targets = render cwmcc obcl kernel plugins themes data
4
5 all: libtool
6 @for i in $(targets); do \
7 $(MAKE) -$(MAKEFLAGS) -f build/Makefile.$$i $@ || break; \
8 done
9
10 uninstall:
11 @for i in $(targets); do \
12 $(MAKE) -$(MAKEFLAGS) -f build/Makefile.$$i $@ || break; \
13 done
14
15 install: all
16 @for i in $(targets); do \
17 $(MAKE) -$(MAKEFLAGS) -f build/Makefile.$$i $@ || break; \
18 done
19
20 clean:
21 @for i in $(targets); do \
22 $(MAKE) -$(MAKEFLAGS) -f build/Makefile.$$i $@ || break; \
23 done
24 $(RM) *\~
25
26 distclean: clean
27 $(RM) configure Makefile.incl Makefile
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.034097 seconds and 4 git commands to generate.