From c24c1d160702f227cede324999bb5fbd15c7f312 Mon Sep 17 00:00:00 2001
From: Aryadev Chavali <aryadev@aryadevchavali.com>
Date: Sun, 15 Oct 2023 21:49:30 +0100
Subject: Implemented a dynamically sized byte array

Pretty simple, want to ensure amortised constant big O so I use a
REALLOC_MULT, which can be redefined if wished.
---
 Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'Makefile')

diff --git a/Makefile b/Makefile
index a89b547..566f41a 100644
--- a/Makefile
+++ b/Makefile
@@ -7,7 +7,7 @@ OUT=ovm.out
 SRC=src
 DIST=build
 
-CODE=$(addprefix $(SRC)/, runtime.c main.c)
+CODE=$(addprefix $(SRC)/, darr.c runtime.c main.c)
 OBJECTS=$(CODE:$(SRC)/%.c=$(DIST)/%.o)
 DEPS=$(OBJECTS:%.o=%.d)
 
-- 
cgit v1.2.3-13-gbd6f