2
0

Makefile.am 1.2 KB

1234567891011121314151617181920212223242526272829
  1. ACCEPTANCE_TESTS_PATH=external
  2. BENCHMARKER_PATH=$(ACCEPTANCE_TESTS_PATH)/benchmarker
  3. ROSLYN_PATH=$(ACCEPTANCE_TESTS_PATH)/roslyn
  4. CORECLR_PATH=$(ACCEPTANCE_TESTS_PATH)/coreclr
  5. MSTESTSUITE_PATH=$(ACCEPTANCE_TESTS_PATH)/ms-test-suite
  6. DEBIANSHOOTOUTMONO_PATH=$(ACCEPTANCE_TESTS_PATH)/DebianShootoutMono
  7. CLEANFILES = *.dll *.exe *.mdb
  8. EXTRA_DIST=README.md SUBMODULES.json microbench.mk versions.mk profiler-stress.mk roslyn.mk coreclr.mk ms-test-suite.mk
  9. CLASS=$(mcs_topdir)/class/lib/$(DEFAULT_PROFILE)
  10. TOOLS_CLASS=$(mcs_topdir)/class/lib/build
  11. RUNTIME = MONO_PATH=$(CLASS) $(abs_top_builddir)/runtime/mono-wrapper --debug
  12. TOOLS_RUNTIME = MONO_PATH=$(TOOLS_CLASS) $(abs_top_builddir)/runtime/mono-wrapper --debug
  13. MCS = $(TOOLS_RUNTIME) $(CSC) -nologo -noconfig -lib:$(CLASS) -r:System.dll -r:System.Core.dll -r:System.Xml.dll -r:Microsoft.CSharp.dll
  14. ILASM = $(TOOLS_RUNTIME) $(TOOLS_CLASS)/ilasm.exe
  15. XUNIT = $(RUNTIME) $(abs_top_builddir)/external/xunit-binaries/xunit.console.exe
  16. include versions.mk
  17. include microbench.mk
  18. include profiler-stress.mk
  19. include roslyn.mk
  20. include coreclr.mk
  21. include ms-test-suite.mk
  22. check-full: check-profiler-stress check-roslyn check-coreclr check-ms-test-suite
  23. clean-local: clean-local-coreclr