diff --git a/Makefile b/Makefile index 8c629fc42d..8ab4e9408b 100644 --- a/Makefile +++ b/Makefile @@ -18,5 +18,11 @@ include Makefile.subdir all: subdirs .PHONY: test +UNAME_S := $(shell uname -s) +ifeq ($(UNAME_S),Darwin) +test: +else test: $(QUIET) $(MAKE) -C AK/Tests clean all clean +endif +