From: Marco Costalba Date: Tue, 17 May 2011 07:09:26 +0000 (+0200) Subject: Let 'make' with no arguments to show compilation options X-Git-Url: https://git.sesse.net/?p=stockfish;a=commitdiff_plain;h=1cc42ac9e4786790a30d2b9dd572dc7e7bfcd021;ds=inline Let 'make' with no arguments to show compilation options No functional change. Signed-off-by: Marco Costalba --- diff --git a/src/Makefile b/src/Makefile index eb6390aa..d81e7d70 100644 --- a/src/Makefile +++ b/src/Makefile @@ -315,9 +315,6 @@ endif ### Section 4. Public targets ### ========================================================================== -default: - $(MAKE) ARCH=$(ARCH) COMP=$(COMP) build - help: @echo "" @echo "To compile stockfish, type: " @@ -431,6 +428,9 @@ clean: testrun: @$(PGOBENCH) +default: + help + ### ========================================================================== ### Section 5. Private targets ### ==========================================================================