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/debconf7 | |
parent | df5d8bf2689c623b90fa908d843ba9d6fff3529f (diff) | |
download | pbuilder-2aa6c79cc30eedb46308ec871da3e3547df090c6.tar pbuilder-2aa6c79cc30eedb46308ec871da3e3547df090c6.tar.gz |
Makefile modifications
Diffstat (limited to 'Documentation/debconf7')
-rw-r--r-- | Documentation/debconf7/Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
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 |