xamarin-macios/tests/cecil-tests/Makefile

17 строки
314 B
Makefile

TOP=../..
include $(TOP)/Make.config
all-local::
build:
$(Q) $(DOTNET) build $(DOTNET_BUILD_VERBOSITY) /bl
run-tests: build
$(TOP)/tools/nunit3-console-3.11.1 $(abspath $(TOP)/tests/cecil-tests/bin/Debug/net472/cecil-tests.dll) $(TEST_NAME) -labels=After
clean:
rm -rf bin/ obj/ TestResult.xml
all: build