steed/games/Makefile
2009-09-23 04:21:24 +00:00

21 lines
351 B
Makefile

include ../Rules.make
all:
install:
ifeq ($(SYSTEMSETUP), yes)
$(INSTALLD) $(GAMESPATH)
for f in *; do \
if [ ! -d $$f ]; then continue; fi;\
$(INSTALLD) $(GAMESPATH)/$$f; \
tar --exclude=".svn" -c -C $$f . | tar -x -C $(GAMESPATH)/$$f;\
done
endif
ifeq ($(SYSTEMSETUP), yes)
uninstall:
$(RM) -rf $(GAMESPATH)
else
uninstall:
endif
clean: