aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorBad Diode <bd@badd10de.dev>2024-06-19 11:08:28 +0200
committerBad Diode <bd@badd10de.dev>2024-06-19 11:08:28 +0200
commit06220393b4d3e9bdd227f333650883971e37b9f9 (patch)
tree57355861a2c93e0e6c9325d404ddd6ff12c0851f /Makefile
parent27e6bf016e87702d30ebb7c0716ff3e4f08a8823 (diff)
downloadbdl-06220393b4d3e9bdd227f333650883971e37b9f9.tar.gz
bdl-06220393b4d3e9bdd227f333650883971e37b9f9.zip
Add barebones stack vm
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 732766e..dd3f3ae 100644
--- a/Makefile
+++ b/Makefile
@@ -7,7 +7,7 @@ BUILD_DIR := build
7TESTS_DIR := tests 7TESTS_DIR := tests
8TEST_FILES := $(wildcard $(TESTS_DIR)/*.bad) 8TEST_FILES := $(wildcard $(TESTS_DIR)/*.bad)
9SRC_MAIN := $(SRC_DIR)/main.c 9SRC_MAIN := $(SRC_DIR)/main.c
10SRC_RUN := tests/loops.bad 10SRC_RUN := tests/expressions.bad
11WATCH_SRC := $(shell find $(SRC_DIR) -name "*.c" -or -name "*.s" -or -name "*.h") 11WATCH_SRC := $(shell find $(SRC_DIR) -name "*.c" -or -name "*.s" -or -name "*.h")
12INC_DIRS := $(shell find $(SRC_DIR) -type d) 12INC_DIRS := $(shell find $(SRC_DIR) -type d)
13INC_FLAGS := $(addprefix -I,$(INC_DIRS)) 13INC_FLAGS := $(addprefix -I,$(INC_DIRS))