Update Makefile

Signed-off-by: yzrh <yzrh@noema.org>
This commit is contained in:
yzrh 2022-12-19 23:18:43 +00:00
parent 89cdfb6f23
commit 471a8b42d2
4 changed files with 12 additions and 7 deletions

View file

@ -1,3 +1,8 @@
0.6.2_7 (2022-12-19)
====================
* Update Makefile.
0.6.2_6 (2020-12-30)
====================

View file

@ -1,5 +1,5 @@
#
# Copyright (c) 2019-2021, yzrh <yzrh@noema.org>
# Copyright (c) 2019-2022, yzrh <yzrh@noema.org>
#
# SPDX-License-Identifier: Apache-2.0
#
@ -18,8 +18,8 @@ obj = ${src:.c=.o}
PREFIX = /usr/local
CFLAGS = -O3 -march=native -pipe -flto -Wall -Wextra -Wno-unused-result -Wno-unused-parameter
LDFLAGS = -Wl,-O3 -lpthread -lSDL2 -lSDL2_ttf
CFLAGS = -O2 -pipe -flto -Wall -Wextra -Wno-unused-result -Wno-unused-parameter
LDFLAGS = -Wl,-O2 -lpthread -lSDL2 -lSDL2_ttf
.ifdef SOUND

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2019-2021, yzrh <yzrh@noema.org>
* Copyright (c) 2019-2022, yzrh <yzrh@noema.org>
*
* SPDX-License-Identifier: Apache-2.0
*/
@ -941,7 +941,7 @@ int
main(void)
{
printf("Snake " VERSION "." RELEASE "." PATCH EXTRA "\n"
"Copyright (c) 2019-2021, yzrh <yzrh@noema.org>\n");
"Copyright (c) 2019-2022, yzrh <yzrh@noema.org>\n");
if (SDL_Init(SDL_INIT_VIDEO |
SDL_INIT_AUDIO |

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2019-2021, yzrh <yzrh@noema.org>
* Copyright (c) 2019-2022, yzrh <yzrh@noema.org>
*
* SPDX-License-Identifier: Apache-2.0
*/
@ -7,4 +7,4 @@
#define VERSION "0"
#define RELEASE "6"
#define PATCH "2"
#define EXTRA "_6"
#define EXTRA "_7"