steed/games/Makefile
2009-02-21 10:52:44 +00:00

11 lines
226 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 -c -C $$f . | tar -x -C $(GAMESPATH)/$$f;\
done
clean: