aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorjustanothercatgirl <sotov2070@gmail.com>2024-07-08 07:24:34 +0300
committerjustanothercatgirl <sotov2070@gmail.com>2024-07-08 10:36:43 +0300
commit5fa8a4e0787f23bac8810e41b331d85c540fbe21 (patch)
tree20dc699fb8575368a7b88828166e08d35d87f4ca /Makefile
parent2abcf429d73408a109c4501339fd18850ab83347 (diff)
added hash set
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 $@