Fred Drake | 60515f4 | 1998-05-07 14:50:22 +0000 | [diff] [blame] | 1 | # Convenience Makefile for building HTML documentation. You probably need to |
2 | # set TEXINPUTS from the command line for this to be useful, unless you | ||||
3 | # actually build the .dvi files in the top level directory. | ||||
4 | # | ||||
5 | # Note that the .dvi files must already be built and TEXINPUTS must include the | ||||
6 | # directory where latex's working files (esp. *.aux) are kept. | ||||
7 | |||||
Fred Drake | f832f4c | 1998-08-11 19:36:35 +0000 | [diff] [blame] | 8 | TOPDIR=.. |
9 | |||||
10 | TEXINPUTS=$(TOPDIR):$(TOPDIR)/texinputs: | ||||
11 | |||||
12 | |||||
13 | SUBMAKE=$(MAKE) srcdir=$(TOPDIR) VPATH=$(TOPDIR) TEXINPUTS=$(TEXINPUTS) \ | ||||
14 | -f ../Makefile | ||||
15 | |||||
Fred Drake | 60515f4 | 1998-05-07 14:50:22 +0000 | [diff] [blame] | 16 | |
17 | all: icons l2h | ||||
18 | |||||
Fred Drake | cdbd391 | 1998-05-15 17:02:10 +0000 | [diff] [blame] | 19 | l2h: l2hapi l2hext l2hlib l2hmac l2href l2htut |
Fred Drake | 60515f4 | 1998-05-07 14:50:22 +0000 | [diff] [blame] | 20 | |
Fred Drake | 4d46487 | 1998-08-11 13:18:52 +0000 | [diff] [blame] | 21 | l2hapi: icons |
Fred Drake | f832f4c | 1998-08-11 19:36:35 +0000 | [diff] [blame] | 22 | $(SUBMAKE) l2hapi |
Fred Drake | 60515f4 | 1998-05-07 14:50:22 +0000 | [diff] [blame] | 23 | |
Fred Drake | 4d46487 | 1998-08-11 13:18:52 +0000 | [diff] [blame] | 24 | l2hext: icons |
Fred Drake | f832f4c | 1998-08-11 19:36:35 +0000 | [diff] [blame] | 25 | $(SUBMAKE) l2hext |
Fred Drake | 60515f4 | 1998-05-07 14:50:22 +0000 | [diff] [blame] | 26 | |
Fred Drake | 4d46487 | 1998-08-11 13:18:52 +0000 | [diff] [blame] | 27 | l2hlib: icons |
Fred Drake | f832f4c | 1998-08-11 19:36:35 +0000 | [diff] [blame] | 28 | $(SUBMAKE) l2hlib |
Fred Drake | 60515f4 | 1998-05-07 14:50:22 +0000 | [diff] [blame] | 29 | |
Fred Drake | 4d46487 | 1998-08-11 13:18:52 +0000 | [diff] [blame] | 30 | l2hmac: icons |
Fred Drake | f832f4c | 1998-08-11 19:36:35 +0000 | [diff] [blame] | 31 | $(SUBMAKE) l2hmac |
Fred Drake | cdbd391 | 1998-05-15 17:02:10 +0000 | [diff] [blame] | 32 | |
Fred Drake | 4d46487 | 1998-08-11 13:18:52 +0000 | [diff] [blame] | 33 | l2href: icons |
Fred Drake | f832f4c | 1998-08-11 19:36:35 +0000 | [diff] [blame] | 34 | $(SUBMAKE) l2href |
Fred Drake | 60515f4 | 1998-05-07 14:50:22 +0000 | [diff] [blame] | 35 | |
Fred Drake | 4d46487 | 1998-08-11 13:18:52 +0000 | [diff] [blame] | 36 | l2htut: icons |
Fred Drake | f832f4c | 1998-08-11 19:36:35 +0000 | [diff] [blame] | 37 | $(SUBMAKE) l2htut |
Fred Drake | 60515f4 | 1998-05-07 14:50:22 +0000 | [diff] [blame] | 38 | |
Fred Drake | 60515f4 | 1998-05-07 14:50:22 +0000 | [diff] [blame] | 39 | icons: |
40 | mkdir icons | ||||
Fred Drake | f832f4c | 1998-08-11 19:36:35 +0000 | [diff] [blame] | 41 | cp $(TOPDIR)/icons/*.gif icons/ |