steed/themes/Makefile

20 lines
353 B
Makefile
Raw Normal View History

2009-02-21 12:52:44 +02:00
include ../Rules.make
clean:
all:
install:
2009-09-23 07:21:24 +03:00
ifeq ($(SYSTEMSETUP), yes)
$(INSTALLD) $(THEMESPATH)
2009-02-21 12:52:44 +02:00
for f in *; do \
if [ ! -d $$f ]; then continue; fi;\
2009-09-23 07:21:24 +03:00
$(INSTALLD) $(THEMESPATH)/$$f;\
2009-08-26 08:25:53 +03:00
tar --exclude=".svn" -c -C $$f . | tar -x -C $(THEMESPATH)/$$f;\
2009-02-21 12:52:44 +02:00
done
2009-09-23 07:21:24 +03:00
endif
2009-02-21 12:52:44 +02:00
2009-09-23 07:21:24 +03:00
ifeq ($(SYSTEMSETUP), yes)
uninstall:
$(RM) -rf $(THEMESPATH)
else
uninstall:
endif