diff options
author | Junichi Uekawa <dancer@coreduo.netfort.gr.jp> | 2007-06-15 18:20:54 +0900 |
---|---|---|
committer | Junichi Uekawa <dancer@coreduo.netfort.gr.jp> | 2007-06-15 18:20:54 +0900 |
commit | 2aa6c79cc30eedb46308ec871da3e3547df090c6 (patch) | |
tree | d85e882142b166db6d1051b37b4715c7bd69384c /Documentation | |
parent | df5d8bf2689c623b90fa908d843ba9d6fff3529f (diff) | |
download | pbuilder-2aa6c79cc30eedb46308ec871da3e3547df090c6.tar pbuilder-2aa6c79cc30eedb46308ec871da3e3547df090c6.tar.gz |
Makefile modifications
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/Makefile | 1 | ||||
-rw-r--r-- | Documentation/debconf7/Makefile | 16 |
2 files changed, 17 insertions, 0 deletions
diff --git a/Documentation/Makefile b/Documentation/Makefile index 84b7309..2ef2d5b 100644 --- a/Documentation/Makefile +++ b/Documentation/Makefile @@ -7,6 +7,7 @@ # po4a # dblatex +# the main XML file which is source to all documents MASTERXML=pbuilder-doc.xml all: pbuilder-doc.html pbuilder-doc.ja.html diff --git a/Documentation/debconf7/Makefile b/Documentation/debconf7/Makefile new file mode 100644 index 0000000..f728918 --- /dev/null +++ b/Documentation/debconf7/Makefile @@ -0,0 +1,16 @@ +SOURCE:=$(wildcard pb*.tex) +DVIFILES:=$(SOURCE:%.tex=%.dvi) +PDFFILES:=$(SOURCE:%.tex=%.pdf) + +all: $(PDFFILES) + +%.pdf: %.dvi + dvipdfmx $< + +%.dvi: %.tex + latex $< + latex $< + latex $< + +clean: + -rm *~ *.log *.aux |