Edit the default target to conform to GNU standards
I've changed all default target names with 'all'. Here there is the explanation: <https://www.gnu.org/prep/standards/standards.html#Standard-Targets>.
This commit is contained in:
parent
dcabb49244
commit
d07e4f44f1
6 changed files with 12 additions and 12 deletions
|
@ -153,9 +153,9 @@ ifeq ($(PLATFORM),PLATFORM_WEB)
|
|||
EXT = .html
|
||||
endif
|
||||
|
||||
# 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 basic_test
|
||||
default: basic_test
|
||||
all: basic_test
|
||||
|
||||
# compile template - basic_test
|
||||
basic_test: basic_test.c
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue