steed/games/Makefile
2009-08-26 05:25:53 +00:00

11 lines
243 B
Makefile

include ../Rules.make
all:
install:
install -d -m0755 $(GAMESPATH)
for f in *; do \
if [ ! -d $$f ]; then continue; fi;\
install -d -m0755 $(GAMESPATH)/$$f;\
tar --exclude=".svn" -c -C $$f . | tar -x -C $(GAMESPATH)/$$f;\
done
clean: