14 lines
225 B
Makefile
14 lines
225 B
Makefile
|
|
.PHONY: html
|
|
|
|
Q_FLAG =
|
|
|
|
ifeq ($(quiet), true)
|
|
Q_FLAG = quiet=true
|
|
endif
|
|
|
|
html:
|
|
@cd $(CURDIR)/data && make html $(Q_FLAG)
|
|
@cd $(CURDIR)/course_authors && make html $(Q_FLAG)
|
|
@cd $(CURDIR)/developers && make html $(Q_FLAG)
|