diff options
Diffstat (limited to 'Documentation/debconf7/Makefile')
-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 |