steed/themes/Makefile

12 lines
230 B
Makefile
Raw Normal View History

2009-02-21 12:52:44 +02:00
include ../Rules.make
clean:
all:
install:
install -d -m0755 $(THEMESPATH)
for f in *; do \
if [ ! -d $$f ]; then continue; fi;\
install -d -m0755 $(THEMESPATH)/$$f;\
tar -c -C $$f . | tar -x -C $(THEMESPATH)/$$f;\
done