]> git.saurik.com Git - wxWidgets.git/blobdiff - tests/Makefile.in
wx-config symlink creation fix
[wxWidgets.git] / tests / Makefile.in
index 86b8dd9281c9f72bc5c9e06beafac28df210ca22..9923a9250e7972b4b10b79864bb0e6cd14a0f4fc 100644 (file)
@@ -54,7 +54,8 @@ TEST_OBJECTS =  \
        test_filestream.o \
        test_memstream.o \
        test_zlibstream.o \
        test_filestream.o \
        test_memstream.o \
        test_zlibstream.o \
-       test_fontmap.o
+       test_fontmap.o \
+       test_datetime.o
 
 ### Conditionally set variables: ###
 
 
 ### Conditionally set variables: ###
 
@@ -120,13 +121,9 @@ test$(EXEEXT): $(TEST_OBJECTS)
 data: 
        @mkdir -p .
        @for f in testdata.fc; do \
 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; \
        fi; \
-       case "$$x" in ?*) \
-       cp -pRf $(srcdir)/$$f . ;; \
-       esac; \
        done
 
 test_test.o: $(srcdir)/test.cpp
        done
 
 test_test.o: $(srcdir)/test.cpp
@@ -186,6 +183,9 @@ test_zlibstream.o: $(srcdir)/streams/zlibstream.cpp
 test_fontmap.o: $(srcdir)/fontmap/fontmap.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
 
 # Include dependency info, if present:
 @IF_GNU_MAKE@-include .deps/*.d