mirror of
https://github.com/gwenhael-le-moine/ngstar.git
synced 2024-12-26 09:58:16 +01:00
19 lines
380 B
Makefile
19 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
|