Makefile 643 B

123456789101112131415161718192021222324252627
  1. thisdir=class/System.Data/Test/DataProviderTests/datareadertests
  2. include ../../../../../build/rules.make
  3. LIB_MCS_FLAGS = /r:System.Data,System.Data.OracleClient,ByteFX.Data,Npgsql,System,System.Xml
  4. DATABASE=all
  5. LIBRARY = DbAdapter.dll
  6. NO_INSTALL=yes
  7. NO_SIGN_ASSEMBLY=yes
  8. include $(topdir)/build/library.make
  9. Runtests.exe: $(the_lib)
  10. $(MCS) /r:$(the_lib) Runtests.cs
  11. DbAdapter.dll:
  12. $(MCS) /r:$(REFERENCES) /target:library /out:DbAdapter.dll @$(SOURCEFILE)
  13. run-test-local: run-test-db
  14. run-test-db: Runtests.exe
  15. $(TEST_RUNTIME) Runtests.exe $(DATABASE) | tee TestResults.log
  16. test-local: Runtests.exe
  17. CLEAN_FILES = *.exe *.dll *.log