]> Dogcows Code - chaz/openbox/blob - build/Makefile.themes
fixes for build system. add themes to the install process. use the build/ dir for...
[chaz/openbox] / build / Makefile.themes
1 include build/Makefile.incl
2
3 targets = openbox
4
5 all clean distclean:
6 @for i in $(targets); do \
7 $(MAKE) -$(MAKEFLAGS) -f build/Makefile.themes.$$i $@; \
8 done
9
10 install:
11 @for i in $(targets); do \
12 $(MAKE) -$(MAKEFLAGS) -f build/Makefile.themes.$$i $@; \
13 done
14
15 uninstall:
16 @for i in $(targets); do \
17 $(MAKE) -$(MAKEFLAGS) -f build/Makefile.themes.$$i $@; \
18 done
19 -rmdir $(DESTDIR)$(themedir)
20
21 .PHONY: all clean distclean install uninstall
This page took 0.036658 seconds and 4 git commands to generate.