From: guido Date: Tue, 19 Apr 2005 12:43:39 +0000 (+0000) Subject: Add doxygen to default targets X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=be38c6657f010535d2f8ed693be1b22448c9cabf;p=dealii-svn.git Add doxygen to default targets git-svn-id: https://svn.dealii.org/trunk@10526 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/Makefile b/deal.II/examples/Makefile index 21e25e710d..d7b5a3ccd4 100644 --- a/deal.II/examples/Makefile +++ b/deal.II/examples/Makefile @@ -9,13 +9,13 @@ steps = $(shell echo step-? step-??) # default is: build all examples. for each example, there is a target # build-step-N, where N in [1...] -default: $(addprefix build-,$(steps)) +default: $(addprefix build-,$(steps)) doxygen # run example programs; make a target run-step-N for each N -run: $(addprefix run-,$(steps)) +run: $(addprefix run-,$(steps)) run-doxygen # clean subdirs; make a target clean-step-N for each N -clean: $(addprefix clean-,$(steps)) +clean: $(addprefix clean-,$(steps)) clean-doxygen @@ -27,10 +27,16 @@ run-step-%: cd $(@:run-%=%) ; $(MAKE) run clean-step-%: cd $(@:clean-%=%) ; $(MAKE) clean - +doxygen: + cd doxygen ; $(MAKE) +run-doxygen: + cd doxygen ; $(MAKE) run +clean-doxygen: + cd doxygen ; $(MAKE) clean # all targets in this directory do not produce files, so they are # .PHONY: .PHONY: $(addprefix build-step-,$(steps)) \ $(addprefix run-step-,$(steps)) \ - $(addprefix clean-step-,$(steps)) + $(addprefix clean-step-,$(steps)) \ + doxygen doxygen-run doxygen-clean \ No newline at end of file