From: <mma...@us...> - 2012-04-02 20:54:24
|
Revision: 10135 http://octave.svn.sourceforge.net/octave/?rev=10135&view=rev Author: mmarzolla Date: 2012-04-02 20:54:18 +0000 (Mon, 02 Apr 2012) Log Message: ----------- makefile simplification Modified Paths: -------------- trunk/octave-forge/main/queueing/doc/Makefile Modified: trunk/octave-forge/main/queueing/doc/Makefile =================================================================== --- trunk/octave-forge/main/queueing/doc/Makefile 2012-04-02 18:16:48 UTC (rev 10134) +++ trunk/octave-forge/main/queueing/doc/Makefile 2012-04-02 20:54:18 UTC (rev 10135) @@ -1,8 +1,8 @@ DOC=queueing -CHAPTERS=summary.texi installation.texi markovchains.texi singlestation.texi queueingnetworks.texi conf.texi ack.texi contributing.texi gpl.texi gettingstarted.texi references.texi -DISTFILES=README INSTALL $(DOC).pdf $(DOC).html $(DOC).texi +CHAPTERS=$(patsubst %.txi,%.texi,$(wildcard *.txi)) +DISTFILES=README INSTALL $(DOC).pdf $(DOC).html -.PHONY: clean +.PHONY: clean dist ALL: pdf html INSTALL @@ -32,7 +32,7 @@ DOCSTRINGS: $(wildcard ../inst/*.m) (cd ../scripts; ./mkdoc ../inst) > DOCSTRINGS || \rm -f DOCSTRINGS -dist: $(DOC).pdf $(DOC).html +dist: ln $(DISTFILES) ../`cat ../fname`/doc/ clean: This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |