diff options
Diffstat (limited to 'plugins/eunit.mk')
-rw-r--r-- | plugins/eunit.mk | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/plugins/eunit.mk b/plugins/eunit.mk index 211a744..8a97688 100644 --- a/plugins/eunit.mk +++ b/plugins/eunit.mk @@ -4,6 +4,11 @@ .PHONY: eunit apps-eunit +# Eunit can be disabled by setting this to any other value. +EUNIT ?= system + +ifeq ($(EUNIT),system) + # Configuration EUNIT_OPTS ?= @@ -61,3 +66,5 @@ apps-eunit: test-build exit $$eunit_retcode endif endif + +endif |