diff options
author | justanothercatgirl <sotov2070@gmail.com> | 2024-07-08 07:24:34 +0300 |
---|---|---|
committer | justanothercatgirl <sotov2070@gmail.com> | 2024-07-08 10:36:43 +0300 |
commit | 5fa8a4e0787f23bac8810e41b331d85c540fbe21 (patch) | |
tree | 20dc699fb8575368a7b88828166e08d35d87f4ca /Makefile | |
parent | 2abcf429d73408a109c4501339fd18850ab83347 (diff) |
added hash set
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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 $@ |