Makefile.am 730 B

1234567891011121314151617181920212223
  1. ACCEPTANCE_TESTS_PATH=external
  2. ROSLYN_PATH=$(ACCEPTANCE_TESTS_PATH)/roslyn
  3. CORECLR_PATH=$(ACCEPTANCE_TESTS_PATH)/coreclr
  4. MSTESTSUITE_PATH=$(ACCEPTANCE_TESTS_PATH)/ms-test-suite
  5. CLEANFILES = *.dll *.exe *.mdb
  6. EXTRA_DIST=README.md SUBMODULES.json versions.mk roslyn.mk coreclr.mk ms-test-suite.mk
  7. CLASS=$(mcs_topdir)/class/lib/$(DEFAULT_PROFILE)
  8. with_mono_path = MONO_PATH=$(CLASS)
  9. RUNTIME = $(with_mono_path) $(abs_top_builddir)/runtime/mono-wrapper --debug
  10. MCS = $(RUNTIME) $(mcs_topdir)/class/lib/build/mcs.exe
  11. ILASM = $(RUNTIME) $(CLASS)/ilasm.exe
  12. include versions.mk
  13. include roslyn.mk
  14. include coreclr.mk
  15. include ms-test-suite.mk
  16. check-full: check-roslyn check-coreclr check-ms-test-suite
  17. clean-local: clean-local-coreclr