Rev 1676 | Blame | Compare with Previous | Last modification | View Log | RSS feed
# hmmm... da fare meglio mettendo le dipendenze come si deve per non
# rifare il mondo ogni volta...
SHARK_QG = shark-qg
MANUALS = vol1 vol2 vol3 vol4 vol5 vol6
OLD_CONTENT = vol-oldcontent
help:
@echo Available commands:
@echo
@echo make clean
@echo
@echo make shark-qg
@echo make manuals
@echo make old-content
@echo
@echo make all
clean:
for x in $(SHARK_QG) $(MANUALS) $(OLD_CONTENT); do make -C $${x} clean; done;
rm -fr *.pdf *.tgz
shark-qg:
for x in $(SHARK_QG); do make -C $${x}; done;
manuals:
for x in $(MANUALS); do make -C $${x}; done;
old-content:
for x in $(OLD_CONTENT); do make -C $${x}; done;
all: shark-qg manuals old-content