Skip to content

Commit dc5d607

Browse files
committed
[css2] Integration of checkprops into make check
--HG-- extra : convert_revision : svn%3A73dc7c4b-06e6-40f3-b4f7-9ed1dbc14bfc/trunk%40584
1 parent b94a2cb commit dc5d607

1 file changed

Lines changed: 17 additions & 7 deletions

File tree

css2/Makefile

Lines changed: 17 additions & 7 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.60 1997-12-28 23:17:43 ijacobs Exp $
3+
# $Id: Makefile,v 1.61 1997-12-28 23:38:10 ijacobs Exp $
44

55
# what needs to be set for every new release:
66
THIS_VERSION= http://www.w3.org/Style/Group/9712/WD-css2-971211
@@ -424,20 +424,23 @@ build/todo.srb: DOC/todo.db
424424

425425
### check on the document to see if it's valid
426426

427-
check: checkdoc checkrefs checkspell checksample checklnx
427+
check: checkdoc checkprops checkrefs checkspell checksample checklnx
428428

429429
FILES= $(MAINOBJS) $(APPENDIXES) $(REFS) $(INDEXES)
430430

431431
checkdoc: all
432+
-@echo "# Begin checking sgml."
432433
@for i in $(FILES); \
433434
do echo checking $$i...; \
434-
$(NSGMLS) -s -c sgml/HTML4.cat $$i; done; \
435-
echo checking done.
435+
$(NSGMLS) -s -c sgml/HTML4.cat $$i; done;
436+
-@echo "# End checking sgml."
436437

437438
### check on the validity references in the document
438439

439440
checkrefs: build/refs.db
441+
-@echo "# Begin checking references."
440442
-@$(CHKREFS) build/refs.db $(SPECSRCS)
443+
-@echo "# End checking references."
441444

442445
build/refs.db : $(SPECSRCS) $(REFSRCS)
443446
-@$(RM) -f build/refs.db
@@ -446,31 +449,38 @@ build/refs.db : $(SPECSRCS) $(REFSRCS)
446449
### Spell check, using a "CSS" personal dictionary.
447450

448451
checkspell:
452+
-@echo "# Begin spell checking."
449453
-@for i in $(SPECSRCS); \
450454
do\
451455
echo "Checking spelling in $$i.";\
452456
cat $$i | $(SPELL) css.dico;\
453457
done;
458+
-@echo "# End spell checking."
454459

455460
### check the sample style sheet.
456461

457462
checksample: sample.src $(PROPSRC)
463+
-@echo "# Begin checking sample."
458464
@$(CHKSAMPLE) sample.src $(PROPSRC)
465+
-@echo "# End checking sample."
459466

460467
### check links
461468

462469
checklnx: all
470+
-@echo "# Begin checking links."
463471
-@$(RM) linklint
464472
$(LINKLINT) -doc linklint $(FILES)
473+
-@echo "# End checking links."
465474

466475
### check property instances
467476

468477
checkprops: $(SPECSRCS) $(PROPSRC) $(DESCSRC)
469-
-@echo "Checking property instances and defs."
478+
-@echo "# Begin checking properties."
470479
-@$(CHKPROPS) $(PROPSRC) propinst $(SPECSRCS)
471-
-@echo
472-
-@echo "Checking descriptor instances and defs."
480+
-@echo "# End checking properties."
481+
-@echo "# Begin checking descriptors."
473482
-@$(CHKPROPS) $(DESCSRC) descinst $(SPECSRCS)
483+
-@echo "# End checking descriptors."
474484

475485
# get cvs logs
476486

0 commit comments

Comments
 (0)