]> git.saurik.com Git - wxWidgets.git/blobdiff - tests/Makefile.in
ActiveX events should be sent to the window, not it's parent.
[wxWidgets.git] / tests / Makefile.in
index d2c83c7c4928b33c30b392a0d8c74e1ac5e8fa11..1e985bb72029e7136b51340f7c264d5e9f1fc47a 100644 (file)
@@ -40,9 +40,12 @@ TEST_OBJECTS =  \
        test_main.o \
        test_formatconverter.o \
        test_regex.o \
+       test_wxregex.o \
        test_filesys.o \
        test_arrays.o \
        test_longlong.o \
+       test_strings.o \
+       test_unicode.o \
        test_bstream.o \
        test_ffilestream.o \
        test_filestream.o \
@@ -89,7 +92,7 @@ COND_MONOLITHIC_1___WXLIB_MONO_p = \
 
 ### Targets: ###
 
-all: test$(EXEEXT)
+all: test$(EXEEXT) data
 
 install: all
 
@@ -110,6 +113,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) $<
 
@@ -122,6 +133,9 @@ test_formatconverter.o: $(srcdir)/formatconverter/formatconverter.cpp
 test_regex.o: $(srcdir)/regex/regex.cpp
        $(CXXC) -c -o $@ $(TEST_CXXFLAGS) $<
 
+test_wxregex.o: $(srcdir)/regex/wxregex.cpp
+       $(CXXC) -c -o $@ $(TEST_CXXFLAGS) $<
+
 test_filesys.o: $(srcdir)/filesys/filesys.cpp
        $(CXXC) -c -o $@ $(TEST_CXXFLAGS) $<
 
@@ -131,6 +145,12 @@ test_arrays.o: $(srcdir)/arrays/arrays.cpp
 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_unicode.o: $(srcdir)/strings/unicode.cpp
+       $(CXXC) -c -o $@ $(TEST_CXXFLAGS) $<
+
 test_bstream.o: $(srcdir)/streams/bstream.cpp
        $(CXXC) -c -o $@ $(TEST_CXXFLAGS) $<
 
@@ -150,4 +170,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