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/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: