mirror of
https://github.com/gwenhael-le-moine/ngstar.git
synced 2024-12-26 09:58:16 +01:00
f21eee8aaa
Signed-off-by: Gwenhael Le Moine <gwenhael.le.moine@gmail.com>
18 lines
380 B
Makefile
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
|