diff options
author | justanothercatgirl <sotov2070@gmail.com> | 2024-06-28 00:06:40 +0300 |
---|---|---|
committer | justanothercatgirl <sotov2070@gmail.com> | 2024-06-28 00:52:08 +0300 |
commit | ebad5ad23dc6893b0fb75ba04aa961a25a532b5f (patch) | |
tree | c025946d4248b46aceae3e15c19efd29b2d12af2 /Makefile | |
parent | 28bb6070e64f25aa6ff64f81b59a7f52e12d4092 (diff) |
Finished hash_map implementation
TODO: fix that one linked list function
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 17 |
1 files changed, 10 insertions, 7 deletions
@@ -2,11 +2,9 @@ CC := gcc CFLAGS := -g -Wall -Wextra -Wpedantic -Werror -Wno-language-extension-token +tests: container types -tests: container - - -container: tests/dynarray.c tests/dynarray_struct.c tests/obscure.c tests/binary_search.c tests/types.c +container: tests/dynarray.c tests/dynarray_struct.c tests/obscure.c tests/binary_search.c include/container.h $(CC) $(CFLAGS) -o $@ $< -DTT_CHAR ./$@ $(CC) $(CFLAGS) -o $@ $< -DTT_SHORT @@ -21,10 +19,15 @@ container: tests/dynarray.c tests/dynarray_struct.c tests/obscure.c tests/binary ./$@ $(CC) $(CFLAGS) -o $@ tests/binary_search.c ./$@ - $(CC) $(CFLAGS) -o $@ tests/types.c - ./$@ - $(CC) $(CFLAGS) -o $@ tests/linked_list.c + # $(CC) $(CFLAGS) -o $@ tests/linked_list.c + # ./$@ + $(CC) $(CFLAGS) -o $@ tests/hmap.c ./$@ rm $@ +types: + $(CC) -o $@ tests/types.c + ./$@ + + rm $@ |