ngstar/datas/levelsets/Makefile
Gwenhael Le Moine f21eee8aaa Initial commit on github to give this project a somewhat more 'permanent' home
Signed-off-by: Gwenhael Le Moine <gwenhael.le.moine@gmail.com>
2009-05-12 13:28:12 +07:00

18 lines
380 B
Makefile

include ../../Makefile.config
LEVELSETS = cyco g-star
install :
install -m 0755 -d $(LEVELSETS_DIR)
$(INSTALL) -R $(LEVELSETS) $(LEVELSETS_DIR)
chmod -R 0755 $(LEVELSETS_DIR)
for i in $(LEVELSETS) ; do chmod 0644 $(LEVELSETS_DIR)/$$i/* ; done
uninstall :
-rm -fr $(LEVELSETS_DIR)
clean :
-rm *~ cyco/*~ g-star/*~
# for dir in $(LEVELSETS); do \
# rm $$dir/*~; \
# done