This repository has been archived on 2019-04-06. You can view files and clone it, but cannot push or open issues or pull requests.
adventin/themes/Makefile
2009-08-26 05:25:53 +00:00

12 lines
247 B
Makefile

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 --exclude=".svn" -c -C $$f . | tar -x -C $(THEMESPATH)/$$f;\
done