|
1 | 1 | # Makefile to generate the CSS2 document based on its "source files" |
2 | 2 | # 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 $ |
4 | 4 |
|
5 | 5 | ROOT = . |
6 | 6 |
|
@@ -133,15 +133,18 @@ PEXTR= $(PERL) ./bin/pextr |
133 | 133 | DEXTR= $(PERL) ./bin/dextr |
134 | 134 | # extract issues from issues db. |
135 | 135 | ISSUES= bin/issues |
| 136 | +# extract issues from todo db. |
| 137 | +TODO= bin/todo |
136 | 138 |
|
137 | 139 | # utility to generate the PostScript version |
138 | 140 | # -R seems broken for this spec. |
139 | 141 | HTML2PS= $(PERL) ./bin/html2ps -f html2psrc |
140 | 142 |
|
141 | 143 | # 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 |
145 | 148 |
|
146 | 149 | # include paths |
147 | 150 | INCLUDES= -Ibuild -I. |
@@ -169,11 +172,13 @@ LN= ln |
169 | 172 |
|
170 | 173 | .idraw.gif: |
171 | 174 | $(RM) $@ |
172 | | - $(PSTOPNM) $< | $(PPMQUANT) | $(PPMTOGIF) >$@ |
| 175 | +# $(PSTOPNM) $< | $(PPMQUANT) | $(PPMTOGIF) >$@ |
| 176 | + $(PSTOPNM) $< \ |
| 177 | + | $(PNMTOGIF_PIPE) >$@ |
173 | 178 |
|
174 | 179 |
|
175 | 180 | all: blocks $(PROPERTYDB) $(VALUEDB) $(HEADINGDB) $(SPECOBJS) $(INDEXES) \ |
176 | | - $(IMAGES) issues.html |
| 181 | + $(IMAGES) issues.html DOC/TODO.html |
177 | 182 |
|
178 | 183 | install: all css20.tgz |
179 | 184 | @if [ ! -d $(INSTALLDIR) ]; then mkdir -p $(INSTALLDIR);fi |
@@ -320,6 +325,12 @@ issues.html: issues.src build/issues.srb |
320 | 325 | build/issues.srb: issues.db |
321 | 326 | $(ISSUES) -g >$@ |
322 | 327 |
|
| 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 | + |
323 | 334 | ### check on the document to see if it's valid |
324 | 335 |
|
325 | 336 | check: all |
|
0 commit comments