From 5fa8a4e0787f23bac8810e41b331d85c540fbe21 Mon Sep 17 00:00:00 2001 From: justanothercatgirl Date: Mon, 8 Jul 2024 07:24:34 +0300 Subject: added hash set --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'Makefile') 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 $@ -- cgit v1.2.3-70-g09d2