aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CHANGE.md5
-rw-r--r--src/Makefile6
-rw-r--r--src/snake-sdl.c4
-rw-r--r--src/version.h4
4 files changed, 12 insertions, 7 deletions
diff --git a/CHANGE.md b/CHANGE.md
index 942a586..d385a49 100644
--- a/CHANGE.md
+++ b/CHANGE.md
@@ -1,3 +1,8 @@
+0.6.2_7 (2022-12-19)
+====================
+
+* Update Makefile.
+
0.6.2_6 (2020-12-30)
====================
diff --git a/src/Makefile b/src/Makefile
index f54df80..21ccda9 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -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
diff --git a/src/snake-sdl.c b/src/snake-sdl.c
index 28268e0..47cf07e 100644
--- a/src/snake-sdl.c
+++ b/src/snake-sdl.c
@@ -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 |
diff --git a/src/version.h b/src/version.h
index eabf0a9..10f4865 100644
--- a/src/version.h
+++ b/src/version.h
@@ -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"