Makefile 225 Bytes
Newer Older
1 2 3

.PHONY: html

Julian Arni committed
4 5 6 7 8 9
Q_FLAG =

ifeq ($(quiet), true)
Q_FLAG = quiet=true
endif

10
html:
Julian Arni committed
11 12 13
	@cd $(CURDIR)/data && make html $(Q_FLAG)
	@cd $(CURDIR)/course_authors && make html $(Q_FLAG)
	@cd $(CURDIR)/developers && make html $(Q_FLAG)