]> git.saurik.com Git - wxWidgets.git/blobdiff - tests/Makefile.in
reopen app according to HIG
[wxWidgets.git] / tests / Makefile.in
index c00b28af80d599b6580cbcfe213eaf6c56eea29d..7ec05e078095f0eb05ebf8213f69f1022a2a0353 100644 (file)
@@ -43,8 +43,11 @@ TEST_OBJECTS =  \
        test_wxregex.o \
        test_filesys.o \
        test_arrays.o \
+       test_hashes.o \
        test_longlong.o \
        test_strings.o \
+       test_stdstrings.o \
+       test_unicode.o \
        test_bstream.o \
        test_ffilestream.o \
        test_filestream.o \
@@ -91,7 +94,7 @@ COND_MONOLITHIC_1___WXLIB_MONO_p = \
 
 ### Targets: ###
 
-all: test$(EXEEXT)
+all: test$(EXEEXT) data
 
 install: all
 
@@ -112,6 +115,14 @@ test$(EXEEXT): $(TEST_OBJECTS)
        
        $(__test___mac_setfilecmd) $(SAMPLES_RPATH_POSTLINK)
 
+data: 
+       @mkdir -p .
+       @for f in testdata.fc; do \
+       if test \( ! -s ./$$f \) -o \( $(srcdir)/$$f -nt ./$$f  \) ; then \
+       cp -pRf $(srcdir)/$$f . ; \
+       fi; \
+       done
+
 test_test.o: $(srcdir)/test.cpp
        $(CXXC) -c -o $@ $(TEST_CXXFLAGS) $<
 
@@ -133,12 +144,21 @@ test_filesys.o: $(srcdir)/filesys/filesys.cpp
 test_arrays.o: $(srcdir)/arrays/arrays.cpp
        $(CXXC) -c -o $@ $(TEST_CXXFLAGS) $<
 
+test_hashes.o: $(srcdir)/hashes/hashes.cpp
+       $(CXXC) -c -o $@ $(TEST_CXXFLAGS) $<
+
 test_longlong.o: $(srcdir)/longlong/longlong.cpp
        $(CXXC) -c -o $@ $(TEST_CXXFLAGS) $<
 
 test_strings.o: $(srcdir)/strings/strings.cpp
        $(CXXC) -c -o $@ $(TEST_CXXFLAGS) $<
 
+test_stdstrings.o: $(srcdir)/strings/stdstrings.cpp
+       $(CXXC) -c -o $@ $(TEST_CXXFLAGS) $<
+
+test_unicode.o: $(srcdir)/strings/unicode.cpp
+       $(CXXC) -c -o $@ $(TEST_CXXFLAGS) $<
+
 test_bstream.o: $(srcdir)/streams/bstream.cpp
        $(CXXC) -c -o $@ $(TEST_CXXFLAGS) $<
 
@@ -158,4 +178,4 @@ test_zlibstream.o: $(srcdir)/streams/zlibstream.cpp
 # Include dependency info, if present:
 @IF_GNU_MAKE@-include .deps/*.d
 
-.PHONY: all install uninstall clean distclean
+.PHONY: all install uninstall clean distclean data