steed/games/Makefile

11 lines
226 B
Makefile
Raw Normal View History

2009-02-21 12:52:44 +02:00
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: