From 791e03d8199fa1177f970f45a8a436912d229d1c Mon Sep 17 00:00:00 2001 From: Danny van Kooten Date: Thu, 12 Mar 2020 15:07:09 +0100 Subject: add vector type --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index a362f52..56f1d9f 100644 --- a/Makefile +++ b/Makefile @@ -6,13 +6,13 @@ all: bin/hyde bin:; mkdir -p bin/ -bin/hyde: src/hyde.c src/hashmap.c src/template.c vendor/mpc.c | bin +bin/hyde: src/hyde.c src/hashmap.c src/template.c src/vector.c vendor/mpc.c | bin $(CC) $(CFLAGS) $^ -o $@ bin/test_hashmap: src/hashmap.c tests/test_hashmap.c | bin $(CC) $(TESTFLAGS) $^ -o $@ -bin/test_template: src/template.c src/hashmap.c tests/test_template.c vendor/mpc.c | bin +bin/test_template: src/template.c src/hashmap.c src/vector.c tests/test_template.c vendor/mpc.c | bin $(CC) $(TESTFLAGS) $^ -o $@ .PHONY: check -- cgit v1.2.3