From d07e4f44f18887a54a25748ce7f5b9e6cf310b22 Mon Sep 17 00:00:00 2001 From: LelixSuper Date: Sat, 12 Mar 2016 18:40:52 +0100 Subject: Edit the default target to conform to GNU standards I've changed all default target names with 'all'. Here there is the explanation: . --- examples/makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'examples/makefile') diff --git a/examples/makefile b/examples/makefile index 2a9e88ba..23931c98 100644 --- a/examples/makefile +++ b/examples/makefile @@ -202,9 +202,9 @@ EXAMPLES = \ fix_dylib \ -# typing 'make' will invoke the first target entry in the file, +# typing 'make' will invoke the default target entry called 'all', # in this case, the 'default' target entry is raylib -default: examples +all: examples # compile all examples examples: $(EXAMPLES) -- cgit v1.2.3