steed/games/Makefile
2009-09-23 06:28:30 +00:00

15 lines
269 B
Makefile

include ../Rules.make
all:
install:
$(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
uninstall:
$(RM) -rf $(GAMESPATH)
clean: