diff options
| author | LelixSuper <emanuele98@openmailbox.org> | 2016-03-12 18:40:52 +0100 |
|---|---|---|
| committer | LelixSuper <emanuele98@openmailbox.org> | 2016-03-12 18:40:52 +0100 |
| commit | d07e4f44f18887a54a25748ce7f5b9e6cf310b22 (patch) | |
| tree | 7914d79ecb6d56710aeff52a428a23152f2152dd /templates/standard_game | |
| parent | dcabb49244ba4da0d0ccdda7fce61103c814b086 (diff) | |
| download | raylib-d07e4f44f18887a54a25748ce7f5b9e6cf310b22.tar.gz raylib-d07e4f44f18887a54a25748ce7f5b9e6cf310b22.zip | |
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>.
Diffstat (limited to 'templates/standard_game')
| -rw-r--r-- | templates/standard_game/makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/standard_game/makefile b/templates/standard_game/makefile index 90f0e6f2..ca4ed475 100644 --- a/templates/standard_game/makefile +++ b/templates/standard_game/makefile @@ -162,9 +162,9 @@ SCREENS = \ screens/screen_gameplay.o \ screens/screen_ending.o \ -# 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 standard_game -default: standard_game +all: standard_game # compile template - standard_game standard_game: standard_game.c $(SCREENS) |
