X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/cf8ee08b1bfb5680e2e199f3330ae93ef3a901a0..678666f2381592db7857772e35b5c0a39fc83f17:/tests/Makefile.in diff --git a/tests/Makefile.in b/tests/Makefile.in index 26df18762c..d91b651e8e 100644 --- a/tests/Makefile.in +++ b/tests/Makefile.in @@ -41,6 +41,7 @@ TEST_OBJECTS = \ test_formatconverter.o \ test_regex.o \ test_wxregex.o \ + test_filename.o \ test_filesys.o \ test_arrays.o \ test_hashes.o \ @@ -53,7 +54,9 @@ TEST_OBJECTS = \ test_ffilestream.o \ test_filestream.o \ test_memstream.o \ - test_zlibstream.o + test_zlibstream.o \ + test_fontmap.o \ + test_datetime.o ### Conditionally set variables: ### @@ -119,13 +122,9 @@ test$(EXEEXT): $(TEST_OBJECTS) data: @mkdir -p . @for f in testdata.fc; do \ - if test ! -e ./$$f ; \ - then x=yep ; \ - else x=`find $(srcdir)/$$f -newer ./$$f -print` ; \ + if test \( ! -s ./$$f \) -o \( $(srcdir)/$$f -nt ./$$f \) ; then \ + cp -pRf $(srcdir)/$$f . ; \ fi; \ - case "$$x" in ?*) \ - cp -pRf $(srcdir)/$$f . ;; \ - esac; \ done test_test.o: $(srcdir)/test.cpp @@ -143,6 +142,9 @@ test_regex.o: $(srcdir)/regex/regex.cpp test_wxregex.o: $(srcdir)/regex/wxregex.cpp $(CXXC) -c -o $@ $(TEST_CXXFLAGS) $< +test_filename.o: $(srcdir)/filename/filename.cpp + $(CXXC) -c -o $@ $(TEST_CXXFLAGS) $< + test_filesys.o: $(srcdir)/filesys/filesys.cpp $(CXXC) -c -o $@ $(TEST_CXXFLAGS) $< @@ -182,6 +184,12 @@ test_memstream.o: $(srcdir)/streams/memstream.cpp test_zlibstream.o: $(srcdir)/streams/zlibstream.cpp $(CXXC) -c -o $@ $(TEST_CXXFLAGS) $< +test_fontmap.o: $(srcdir)/fontmap/fontmap.cpp + $(CXXC) -c -o $@ $(TEST_CXXFLAGS) $< + +test_datetime.o: $(srcdir)/datetime/datetime.cpp + $(CXXC) -c -o $@ $(TEST_CXXFLAGS) $< + # Include dependency info, if present: @IF_GNU_MAKE@-include .deps/*.d