about summary refs log tree commit diff stats
path: root/WWW/Library/Implementation/makefile.in
diff options
context:
space:
mode:
authorThomas E. Dickey <dickey@invisible-island.net>2015-12-13 23:22:17 -0500
committerThomas E. Dickey <dickey@invisible-island.net>2015-12-13 23:22:17 -0500
commit231dc852bc6568e13b9f74ee09387637907ce91a (patch)
treeee15427d4307e969f3ff9999e3fb0e280e061dac /WWW/Library/Implementation/makefile.in
parentaf2a4476e5ade8fa0c4de65324959fdab130193b (diff)
downloadlynx-snapshots-231dc852bc6568e13b9f74ee09387637907ce91a.tar.gz
snapshot of project "lynx", label v2-8-9dev_6l
Diffstat (limited to 'WWW/Library/Implementation/makefile.in')
-rw-r--r--WWW/Library/Implementation/makefile.in23
1 files changed, 12 insertions, 11 deletions
diff --git a/WWW/Library/Implementation/makefile.in b/WWW/Library/Implementation/makefile.in
index 3559ae9a..50d3389e 100644
--- a/WWW/Library/Implementation/makefile.in
+++ b/WWW/Library/Implementation/makefile.in
@@ -1,4 +1,4 @@
-# $LynxId: makefile.in,v 1.31 2012/08/12 23:55:17 tom Exp $
+# $LynxId: makefile.in,v 1.32 2015/12/13 23:20:11 tom Exp $
 # Make WWW under unix for a.n.other unix system (bsd)
 # Use this as a template
 
@@ -339,41 +339,42 @@ sources: dtd_util$x src0_HTMLDTD.txt src1_HTMLDTD.txt
 dtd_util$x: $(DTD_UTIL)
 	$(CC) $(CC_OPTS) $(LDFLAGS) -o $@  $(DTD_UTIL) $(LIBS)
 
+DIFFC	= diff -u -I LynxId
 check: dtd_util$x
 	@echo "** comparing builtin src0_HTMLDTD.txt"
 	./dtd_util$x >HTMLDTD.log
-	-diff -u src0_HTMLDTD.txt HTMLDTD.log
+	-$(DIFFC) src0_HTMLDTD.txt HTMLDTD.log
 
 	@echo "** comparing reloaded src0_HTMLDTD.txt"
 	./dtd_util$x -l src0_HTMLDTD.txt >HTMLDTD.log
-	-diff -u src0_HTMLDTD.txt HTMLDTD.log
+	-$(DIFFC) src0_HTMLDTD.txt HTMLDTD.log
 
 	@echo "** comparing header generated from builtin"
 	./dtd_util$x -s -h -o HTMLDTD.log
-	-diff -u hdr_HTMLDTD.h HTMLDTD.log
+	-$(DIFFC) hdr_HTMLDTD.h HTMLDTD.log
 	./dtd_util$x -t -h -o HTMLDTD.log
-	-diff -u hdr_HTMLDTD.h HTMLDTD.log
+	-$(DIFFC) hdr_HTMLDTD.h HTMLDTD.log
 
 	@echo "** comparing header generated by load"
 	./dtd_util$x -s -h -o HTMLDTD.log -l src0_HTMLDTD.txt
-	-diff -u hdr_HTMLDTD.h HTMLDTD.log
+	-$(DIFFC) hdr_HTMLDTD.h HTMLDTD.log
 	./dtd_util$x -t -h -o HTMLDTD.log -l src1_HTMLDTD.txt
-	-diff -u hdr_HTMLDTD.h HTMLDTD.log
+	-$(DIFFC) hdr_HTMLDTD.h HTMLDTD.log
 
 	@echo "** comparing strict source generated from builtin"
 	./dtd_util$x -s -c -o HTMLDTD.log
-	-diff -u src0_HTMLDTD.h HTMLDTD.log
+	-$(DIFFC) src0_HTMLDTD.h HTMLDTD.log
 
 	@echo "** comparing strict source generated by load"
 	./dtd_util$x -s -c -o HTMLDTD.log -l src0_HTMLDTD.txt
-	-diff -u src0_HTMLDTD.h HTMLDTD.log
+	-$(DIFFC) src0_HTMLDTD.h HTMLDTD.log
 
 	@echo "** comparing tagsoup source generated from builtin"
 	./dtd_util$x -t -c -o HTMLDTD.log
-	-diff -u src1_HTMLDTD.h HTMLDTD.log
+	-$(DIFFC) src1_HTMLDTD.h HTMLDTD.log
 
 	@echo "** comparing tagsoup source generated by load"
 	./dtd_util$x -t -c -o HTMLDTD.log -l src1_HTMLDTD.txt
-	-diff -u src1_HTMLDTD.h HTMLDTD.log
+	-$(DIFFC) src1_HTMLDTD.h HTMLDTD.log
 
 # DO NOT DELETE THIS LINE -- make depend depends on it.