From 74a85268c467c349bddc458047513eab18053f37 Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Thu, 26 Oct 2023 10:19:10 +0100 Subject: Moved base functions from inst.c to dedicated file Doesn't make sense for them to be in the VM module when they have a more general purpose now. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 2d2e538..6fa4b58 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,7 @@ TERM_RESET:=$(shell echo -e "\e[0;0m") ## Lib setup LIB_DIST=$(DIST)/lib LIB_SRC=lib -LIB_CODE:=$(addprefix $(LIB_SRC)/, darr.c) +LIB_CODE:=$(addprefix $(LIB_SRC)/, base.c darr.c) LIB_OBJECTS:=$(LIB_CODE:$(LIB_SRC)/%.c=$(LIB_DIST)/%.o) LIB_DEPS:=$(LIB_OBJECTS:%.o=%.d) LIB_CFLAGS=$(CFLAGS) -- cgit v1.2.3-13-gbd6f