Skip to content

Commit b27d26f

Browse files
committed
[css2] Added TODO.html.
Changed rule for PS->GIF. --HG-- extra : convert_revision : svn%3A73dc7c4b-06e6-40f3-b4f7-9ed1dbc14bfc/trunk%40166
1 parent 5cfd81a commit b27d26f

1 file changed

Lines changed: 17 additions & 6 deletions

File tree

css2/Makefile

Lines changed: 17 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Makefile to generate the CSS2 document based on its "source files"
22
# Arnaud Le Hors - lehors@w3.org
3-
# $Id: Makefile,v 1.29 1997-09-25 19:42:51 ian Exp $
3+
# $Id: Makefile,v 1.30 1997-09-27 01:22:23 bbos Exp $
44

55
ROOT = .
66

@@ -133,15 +133,18 @@ PEXTR= $(PERL) ./bin/pextr
133133
DEXTR= $(PERL) ./bin/dextr
134134
# extract issues from issues db.
135135
ISSUES= bin/issues
136+
# extract issues from todo db.
137+
TODO= bin/todo
136138

137139
# utility to generate the PostScript version
138140
# -R seems broken for this spec.
139141
HTML2PS= $(PERL) ./bin/html2ps -f html2psrc
140142

141143
# PS -> GIF tools
142-
PSTOPNM = ./bin/mypstopnm -r 75
143-
PPMQUANT = ppmquant 256
144-
PPMTOGIF = ppmtogif -trans rgb:ffff/ffff/ffff
144+
#PSTOPNM = ./bin/mypstopnm -r 75
145+
PSTOPNM = ./bin/mypstopnm -r 150
146+
#PNMTOGIF_PIPE = ppmquant 256 | ppmtogif
147+
PNMTOGIF_PIPE = pnmscale 0.5 | pnmgamma 1.8 | ppmquant 256 | ppmtogif
145148

146149
# include paths
147150
INCLUDES= -Ibuild -I.
@@ -169,11 +172,13 @@ LN= ln
169172

170173
.idraw.gif:
171174
$(RM) $@
172-
$(PSTOPNM) $< | $(PPMQUANT) | $(PPMTOGIF) >$@
175+
# $(PSTOPNM) $< | $(PPMQUANT) | $(PPMTOGIF) >$@
176+
$(PSTOPNM) $< \
177+
| $(PNMTOGIF_PIPE) >$@
173178

174179

175180
all: blocks $(PROPERTYDB) $(VALUEDB) $(HEADINGDB) $(SPECOBJS) $(INDEXES) \
176-
$(IMAGES) issues.html
181+
$(IMAGES) issues.html DOC/TODO.html
177182

178183
install: all css20.tgz
179184
@if [ ! -d $(INSTALLDIR) ]; then mkdir -p $(INSTALLDIR);fi
@@ -320,6 +325,12 @@ issues.html: issues.src build/issues.srb
320325
build/issues.srb: issues.db
321326
$(ISSUES) -g >$@
322327

328+
DOC/TODO.html: DOC/TODO.src DOC/todo.srb
329+
$(HIPP) $(INCLUDES) DOC/TODO.src $@
330+
331+
DOC/todo.srb: DOC/todo.db
332+
$(TODO) -g >$@
333+
323334
### check on the document to see if it's valid
324335

325336
check: all

0 commit comments

Comments
 (0)