[Expat-checkins] CVS: expat Makefile.in,1.26,1.27

Fred L. Drake fdrake@users.sourceforge.net
Wed Apr 24 21:05:03 2002


Update of /cvsroot/expat/expat
In directory usw-pr-cvs1:/tmp/cvs-serv25688

Modified Files:
	Makefile.in 
Log Message:
Revise the data accumulation to be at least a little separated from the
actual test code.  Not pretty & lacking in internal documentation, but
allows the test code to be a bit more readable.


Index: Makefile.in
===================================================================
RCS file: /cvsroot/expat/expat/Makefile.in,v
retrieving revision 1.26
retrieving revision 1.27
diff -C2 -d -r1.26 -r1.27
*** Makefile.in	22 Apr 2002 17:04:36 -0000	1.26
--- Makefile.in	25 Apr 2002 04:04:42 -0000	1.27
***************
*** 146,152 ****
  	$(LINK_EXE) $< lib/$(LIBRARY)
  
! tests/runtests.o: tests/runtests.c
! tests/runtests: tests/runtests.o lib/$(LIBRARY)
! 	$(LINK_EXE) $< lib/$(LIBRARY) -lcheck
  
  .SUFFIXES: .c .lo .o
--- 146,153 ----
  	$(LINK_EXE) $< lib/$(LIBRARY)
  
! tests/chardata.o: tests/chardata.c tests/chardata.h
! tests/runtests.o: tests/runtests.c tests/chardata.h
! tests/runtests: tests/runtests.o tests/chardata.o lib/$(LIBRARY)
! 	$(LINK_EXE) $^ -lcheck
  
  .SUFFIXES: .c .lo .o