aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 4824636..21f4a17 100644
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,9 @@ CFLAGS := -g -Wall -Wextra -Wpedantic -Werror -Wno-language-extension-token
tests: container types
-container: tests/dynarray.c tests/dynarray_struct.c tests/obscure.c tests/binary_search.c include/container.h
+container: tests/dynarray.c tests/dynarray_struct.c tests/obscure.c \
+ tests/binary_search.c tests/linked_list.c tests/hashset.c \
+ tests/hmap.c include/container.h \
$(CC) $(CFLAGS) -o $@ $< -DTT_CHAR
./$@
$(CC) $(CFLAGS) -o $@ $< -DTT_SHORT
@@ -23,6 +25,8 @@ container: tests/dynarray.c tests/dynarray_struct.c tests/obscure.c tests/binary
# ./$@
$(CC) $(CFLAGS) -o $@ tests/hmap.c
./$@
+ #$(CC) $(CFLAGS) -o $@ tests/hashset.c
+ #./$@
rm $@