We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 400cd9c commit 1047d2fCopy full SHA for 1047d2f
1 file changed
css2/Makefile
@@ -1,6 +1,6 @@
1
# Makefile to generate the CSS2 document based on its "source files"
2
# Arnaud Le Hors - lehors@w3.org
3
-# $Id: Makefile,v 1.22 1997-09-15 15:49:25 ian Exp $
+# $Id: Makefile,v 1.23 1997-09-18 15:55:07 ian Exp $
4
5
ROOT = .
6
@@ -250,6 +250,15 @@ check: all
250
do echo checking $$i...; $(NSGMLS) -s -c sgml/HTML4.cat $$i; done; \
251
echo checking done.
252
253
+# get cvs logs
254
+
255
+FROMDATE=1 week ago
256
+log:
257
+ @for i in `cat DOC/FILES` ; \
258
+ do cvs log -d ">$(FROMDATE)" $$i >/tmp/log; \
259
+ grep "selected revisions: 0" /tmp/log >/dev/null || cat /tmp/log; \
260
+ done; rm /tmp/log
261
262
clean:
263
$(RM) $(SPECOBJS) $(SPECIALOBJS) $(INDEXES) $(PROPBLKSDIR)/* \
264
$(DESCBLKSDIR)/* build/* css20.*
0 commit comments