aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorjustanothercatgirl <sotov2070@gmail.com>2024-06-26 22:21:04 +0300
committerjustanothercatgirl <sotov2070@gmail.com>2024-06-26 22:21:04 +0300
commit28bb6070e64f25aa6ff64f81b59a7f52e12d4092 (patch)
treec5ceaef26d2ce4c48d926e86257e7d186f680448 /Makefile
parentf34d8be861231709fc9e115ede326de80c176395 (diff)
Finished and kind of tested linked list
HASH MAP IS "finished" BUT UNTESTED AT ALL, I WILL TEST AND WORK ON IT TOMORROW
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 427fcdb..1e1397a 100644
--- a/Makefile
+++ b/Makefile
@@ -23,7 +23,8 @@ container: tests/dynarray.c tests/dynarray_struct.c tests/obscure.c tests/binary
./$@
$(CC) $(CFLAGS) -o $@ tests/types.c
./$@
-
+ $(CC) $(CFLAGS) -o $@ tests/linked_list.c
+ ./$@
rm $@