aboutsummaryrefslogtreecommitdiffstats
path: root/src/Makefile
diff options
context:
space:
mode:
authoryzrh <yzrh@noema.org>2023-01-09 15:18:37 +0000
committeryzrh <yzrh@noema.org>2023-01-09 15:18:37 +0000
commit09cfe6cee9bc8ac36659f490515375e6a9abe45e (patch)
treea914c6a7e662641c85b55c011d73d0b5b8b58182 /src/Makefile
parent471a8b42d262ec1cc1324e357af178ded2e04555 (diff)
downloadsnake-sdl-master.tar.gz
snake-sdl-master.tar.zst
Fix compiler warnings.HEADmaster
Signed-off-by: yzrh <yzrh@noema.org>
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile b/src/Makefile
index 21ccda9..67f1a2b 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2019-2022, yzrh <yzrh@noema.org>
+# Copyright (c) 2019-2023, yzrh <yzrh@noema.org>
#
# SPDX-License-Identifier: Apache-2.0
#
@@ -18,7 +18,7 @@ obj = ${src:.c=.o}
PREFIX = /usr/local
-CFLAGS = -O2 -pipe -flto -Wall -Wextra -Wno-unused-result -Wno-unused-parameter
+CFLAGS = -O2 -pipe -flto -Wall -Wextra -Wno-unused-parameter
LDFLAGS = -Wl,-O2 -lpthread -lSDL2 -lSDL2_ttf
.ifdef SOUND