openbox/build/Makefile.themes

22 lines
447 B
Text
Raw Normal View History

include build/Makefile.incl
2003-04-03 05:59:03 +00:00
targets = openbox
2003-04-03 05:59:03 +00:00
all clean distclean:
@for i in $(targets); do \
$(MAKE) -$(MAKEFLAGS) -f build/Makefile.themes.$$i $@; \
2003-04-03 05:59:03 +00:00
done
install:
@for i in $(targets); do \
$(MAKE) -$(MAKEFLAGS) -f build/Makefile.themes.$$i $@; \
2003-04-03 05:59:03 +00:00
done
uninstall:
@for i in $(targets); do \
$(MAKE) -$(MAKEFLAGS) -f build/Makefile.themes.$$i $@; \
2003-04-03 05:59:03 +00:00
done
-rmdir $(DESTDIR)$(themedir)
2003-04-03 05:59:03 +00:00
.PHONY: all clean distclean install uninstall