]> git.saurik.com Git - wxWidgets.git/blobdiff - tests/Makefile.in
Remove no longer used header.
[wxWidgets.git] / tests / Makefile.in
index 7ec05e078095f0eb05ebf8213f69f1022a2a0353..86b8dd9281c9f72bc5c9e06beafac28df210ca22 100644 (file)
@@ -48,11 +48,13 @@ TEST_OBJECTS =  \
        test_strings.o \
        test_stdstrings.o \
        test_unicode.o \
+       test_crt.o \
        test_bstream.o \
        test_ffilestream.o \
        test_filestream.o \
        test_memstream.o \
-       test_zlibstream.o
+       test_zlibstream.o \
+       test_fontmap.o
 
 ### Conditionally set variables: ###
 
@@ -118,9 +120,13 @@ test$(EXEEXT): $(TEST_OBJECTS)
 data: 
        @mkdir -p .
        @for f in testdata.fc; do \
-       if test \( ! -s ./$$f \) -o \( $(srcdir)/$$f -nt ./$$f  \) ; then \
-       cp -pRf $(srcdir)/$$f . ; \
+       if test ! -e ./$$f ; \
+       then x=yep ; \
+       else x=`find $(srcdir)/$$f -newer ./$$f -print` ; \
        fi; \
+       case "$$x" in ?*) \
+       cp -pRf $(srcdir)/$$f . ;; \
+       esac; \
        done
 
 test_test.o: $(srcdir)/test.cpp
@@ -159,6 +165,9 @@ test_stdstrings.o: $(srcdir)/strings/stdstrings.cpp
 test_unicode.o: $(srcdir)/strings/unicode.cpp
        $(CXXC) -c -o $@ $(TEST_CXXFLAGS) $<
 
+test_crt.o: $(srcdir)/strings/crt.cpp
+       $(CXXC) -c -o $@ $(TEST_CXXFLAGS) $<
+
 test_bstream.o: $(srcdir)/streams/bstream.cpp
        $(CXXC) -c -o $@ $(TEST_CXXFLAGS) $<
 
@@ -174,6 +183,9 @@ 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) $<
+
 
 # Include dependency info, if present:
 @IF_GNU_MAKE@-include .deps/*.d