comparison doc/Makefile @ 1006:b0e581438835

Generate html documentation by default, too.
author Thomas Arendsen Hein <thomas@intevation.de>
date Mon, 22 Aug 2005 08:33:02 +0200
parents efa4a7e2f322
children 9346a7fb3fe2
comparison
equal deleted inserted replaced
991:b634b15c020b 1006:b0e581438835
1 SOURCES=$(wildcard *.[0-9].txt) 1 SOURCES=$(wildcard *.[0-9].txt)
2 MAN=$(SOURCES:%.txt=%) 2 MAN=$(SOURCES:%.txt=%)
3 HTML=$(SOURCES:%.txt=%.html) 3 HTML=$(SOURCES:%.txt=%.html)
4 4
5 all: man 5 all: man html
6 6
7 man: $(MAN) 7 man: $(MAN)
8 8
9 html: $(HTML) 9 html: $(HTML)
10 10