summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index e632760..41323c3 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
.POSIX:
CC = gcc
-CFLAGS = -std=c11 -Wall -Wpedantic -O3 `sdl2-config --cflags`
+CFLAGS = -std=c11 -Wall -Wno-unused-function --pedantic-errors -O3 `sdl2-config --cflags`
LDLIBS = `sdl2-config --libs`
AR = ar
ARFLAGS = rcs
@@ -18,7 +18,7 @@ hitomezashi_cli: hitomezashi_cli.o libhitomezashi.a
hitomezashi_cli.o: hitomezashi_cli.c hitomezashi_cli.h
format-code:
- clang-format -i *.c *.h
+ clang-format -i --verbose *.c *.h
clean:
rm -f *.a *.o hitomezashi_cli