summaryrefslogtreecommitdiff
path: root/examples/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'examples/Makefile')
-rw-r--r--examples/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/examples/Makefile b/examples/Makefile
index c6c5643..e86f074 100644
--- a/examples/Makefile
+++ b/examples/Makefile
@@ -2,14 +2,15 @@
CC = cc
CFLAGS = -Wall -Wextra -Wpedantic -Werror \
- -Og -g -ggdb
+ -Og -g -ggdb -std=c99
LDFLAGS = -I../src
-progs = gehashmap gevector
+progs = gehashmap geset gevector
all: ${progs}
gehashmap: gehashmap.c
+geset: geset.c
gevector: gevector.c
clean: