From 1c5846378bf832562b7cc2eb782a743ec9cd32f5 Mon Sep 17 00:00:00 2001 From: Thomas Voss Date: Sat, 24 Dec 2022 03:23:09 +0100 Subject: Compile examples with warnings --- examples/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'examples/Makefile') diff --git a/examples/Makefile b/examples/Makefile index af41d5d..c6c5643 100644 --- a/examples/Makefile +++ b/examples/Makefile @@ -1,7 +1,8 @@ .POSIX: CC = cc -CFLAGS = -Og -g -ggdb +CFLAGS = -Wall -Wextra -Wpedantic -Werror \ + -Og -g -ggdb LDFLAGS = -I../src progs = gehashmap gevector @@ -9,7 +10,6 @@ progs = gehashmap gevector all: ${progs} gehashmap: gehashmap.c - gevector: gevector.c clean: -- cgit v1.2.3