Files
edx-platform/docs/en_us/Makefile
Mark Hoeber 50f41c24f0 Add new doc projects to top level make file
To enable Jenkins testing
2014-06-19 20:50:45 -04:00

17 lines
377 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)
@cd $(CURDIR)/install_operations && make html $(Q_FLAG)
@cd $(CURDIR)/ORA2 && make html $(Q_FLAG)
@cd $(CURDIR)/release_notes && make html $(Q_FLAG)