makefile.gnu 625 B

123456789101112131415161718192021222324252627
  1. topdir = ../../..
  2. LIBRARY = security_linux_test.dll
  3. LIB_LIST = security_linux_test.args
  4. LIB_FLAGS = \
  5. -r $(topdir)/class/lib/corlib.dll \
  6. -r $(topdir)/class/lib/System.Xml.dll \
  7. -r $(topdir)/class/lib/NUnitCore_mono.dll
  8. SOURCES_INCLUDE=*.cs
  9. SOURCES_EXCLUDE=_DUMMY_
  10. include $(topdir)/class/library.make
  11. MCS_FLAGS = --target library --noconfig
  12. TEST_SUITE_PREFIX = MonoTests.
  13. TEST_SUITE = AllTests
  14. NUNITCONSOLE=$(topdir)/class/lib/NUnitConsole_mono.exe
  15. test: $(LIBRARY) run_test
  16. .PHONY: run_test
  17. run_test:
  18. MONO_PATH=$(NUNIT_MONO_PATH) mono $(NUNITCONSOLE) $(TEST_SUITE_PREFIX)$(TEST_SUITE),security_linux_test.dll