X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/7735998c2a8bf66e7cc57fb3d46c065bc814d8b6..c0d9c29dbe1ac5e73ee3a2420553dc321ad3962a:/tests/Makefile.in diff --git a/tests/Makefile.in b/tests/Makefile.in index d2c83c7c49..d91b651e8e 100644 --- a/tests/Makefile.in +++ b/tests/Makefile.in @@ -40,14 +40,23 @@ TEST_OBJECTS = \ test_main.o \ test_formatconverter.o \ test_regex.o \ + test_wxregex.o \ + test_filename.o \ test_filesys.o \ test_arrays.o \ + test_hashes.o \ test_longlong.o \ + 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 \ + test_datetime.o ### Conditionally set variables: ### @@ -89,7 +98,7 @@ COND_MONOLITHIC_1___WXLIB_MONO_p = \ ### Targets: ### -all: test$(EXEEXT) +all: test$(EXEEXT) data install: all @@ -110,6 +119,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,15 +139,36 @@ 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_filename.o: $(srcdir)/filename/filename.cpp + $(CXXC) -c -o $@ $(TEST_CXXFLAGS) $< + test_filesys.o: $(srcdir)/filesys/filesys.cpp $(CXXC) -c -o $@ $(TEST_CXXFLAGS) $< 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_crt.o: $(srcdir)/strings/crt.cpp + $(CXXC) -c -o $@ $(TEST_CXXFLAGS) $< + test_bstream.o: $(srcdir)/streams/bstream.cpp $(CXXC) -c -o $@ $(TEST_CXXFLAGS) $< @@ -146,8 +184,14 @@ 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 -.PHONY: all install uninstall clean distclean +.PHONY: all install uninstall clean distclean data