diff options
author | Fred Drake <fdrake@acm.org> | 1998-05-07 15:12:51 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1998-05-07 15:12:51 (GMT) |
commit | 0ef1b079a2a2c2c5ca2ffd8c8bd22f1145b17af4 (patch) | |
tree | 9fe2c63473db2eae5d89ab1b8e1c8028bd476e22 /Doc | |
parent | 106fe12ebf036f607a383d48def4124fbbd89744 (diff) | |
download | cpython-0ef1b079a2a2c2c5ca2ffd8c8bd22f1145b17af4.zip cpython-0ef1b079a2a2c2c5ca2ffd8c8bd22f1145b17af4.tar.gz cpython-0ef1b079a2a2c2c5ca2ffd8c8bd22f1145b17af4.tar.bz2 |
Preliminary convenience Makefile.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/paper-a4/Makefile | 14 | ||||
-rw-r--r-- | Doc/paper-letter/Makefile | 14 |
2 files changed, 28 insertions, 0 deletions
diff --git a/Doc/paper-a4/Makefile b/Doc/paper-a4/Makefile new file mode 100644 index 0000000..15c7f14 --- /dev/null +++ b/Doc/paper-a4/Makefile @@ -0,0 +1,14 @@ + + +TEXINPUTS=.:../texinputs: + +all: all-ps + +all-ps: + $(MAKE) srcdir=.. VPATH=.. TEXINPUTS=$(TEXINPUTS) -f ../Makefile all-ps + +all-pdf: + $(MAKE) srcdir=.. VPATH=.. TEXINPUTS=$(TEXINPUTS) -f ../Makefile all-pdf + +all-dvi: + $(MAKE) srcdir=.. VPATH=.. TEXINPUTS=$(TEXINPUTS) -f ../Makefile all-dvi diff --git a/Doc/paper-letter/Makefile b/Doc/paper-letter/Makefile new file mode 100644 index 0000000..72c8bbe --- /dev/null +++ b/Doc/paper-letter/Makefile @@ -0,0 +1,14 @@ + + +TEXINPUTS=../texinputs: + +all: all-ps + +all-ps: + $(MAKE) srcdir=.. VPATH=.. TEXINPUTS=$(TEXINPUTS) -f ../Makefile all-ps + +all-pdf: + $(MAKE) srcdir=.. VPATH=.. TEXINPUTS=$(TEXINPUTS) -f ../Makefile all-pdf + +all-dvi: + $(MAKE) srcdir=.. VPATH=.. TEXINPUTS=$(TEXINPUTS) -f ../Makefile all-dvi |