From 8536b06f7c68ddf3725ff11889393e8d03cf74ca Mon Sep 17 00:00:00 2001 From: allen Date: Mon, 9 Apr 2001 10:19:12 +0000 Subject: Added make targets UsersGuide.ps and MaintGuide.ps Pipe latex output to NULL_DEVICE as well git-svn-id: http://svn.cactuscode.org/flesh/trunk@2103 17b73243-c579-4c4c-a9d2-2d5706c11dac --- Makefile | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index c015fa29..fa38c7ac 100644 --- a/Makefile +++ b/Makefile @@ -16,7 +16,7 @@ # # # @enddesc -# @version $Id: Makefile,v 1.106 2000-12-21 15:04:29 goodale Exp $ +# @version $Id: Makefile,v 1.107 2001-04-09 10:19:12 allen Exp $ # @@*/ ################################################################################## @@ -786,18 +786,24 @@ endif # Make the users manuals +.PHONY: UsersGuide.ps +UsersGuide.ps: UsersGuide + .PHONY: UsersGuide -UsersGuide: +UsersGuide: @echo $(DIVIDER) @echo Creating user documentation UsersGuide.ps - (cd doc/UsersGuide; latex UsersGuide.tex; latex UsersGuide.tex; dvips ./UsersGuide.dvi -o $(CCTK_HOME)/UsersGuide.ps) ; cd $(CCTK_HOME); + (cd doc/UsersGuide; latex UsersGuide.tex > $NULL_DEVICE; latex UsersGuide.tex > $NULL_DEVICE; dvips ./UsersGuide.dvi -o $(CCTK_HOME)/UsersGuide.ps >& $NULL_DEVICE) ; cd $(CCTK_HOME); @echo $(DIVIDER) +.PHONY: MaintGuide.ps +MaintGuide.ps: MaintGuide + .PHONY: MaintGuide MaintGuide: @echo $(DIVIDER) @echo Creating maintainers documentation MaintGuide.ps - (cd doc/MaintGuide; latex MaintGuide.tex; latex MaintGuide.tex; dvips ./MaintGuide.dvi -o $(CCTK_HOME)/MaintGuide.ps) ; cd $(CCTK_HOME); + (cd doc/MaintGuide; latex MaintGuide.tex > $NULL_DEVICE; latex MaintGuide.tex > $NULL_DEVICE; dvips ./MaintGuide.dvi -o $(CCTK_HOME)/MaintGuide.ps >& $NULL_DEVICE) ; cd $(CCTK_HOME); @echo $(DIVIDER) # Rule to show thorn information -- cgit v1.2.3