From 972c453a085bedb3de8d598cc4ae4486e24f0144 Mon Sep 17 00:00:00 2001 From: Bad Diode Date: Thu, 20 Jun 2024 14:20:07 +0200 Subject: Move vm/chunk compiler to separate file --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index dd3f3ae..3153058 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ BUILD_DIR := build TESTS_DIR := tests TEST_FILES := $(wildcard $(TESTS_DIR)/*.bad) SRC_MAIN := $(SRC_DIR)/main.c -SRC_RUN := tests/expressions.bad +SRC_RUN := tests/functions.bad WATCH_SRC := $(shell find $(SRC_DIR) -name "*.c" -or -name "*.s" -or -name "*.h") INC_DIRS := $(shell find $(SRC_DIR) -type d) INC_FLAGS := $(addprefix -I,$(INC_DIRS)) -- cgit v1.2.1