aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorBad Diode <bd@badd10de.dev>2024-06-18 16:57:24 +0200
committerBad Diode <bd@badd10de.dev>2024-06-18 16:57:24 +0200
commitc80020d23599a9ea7b60f83449dbb93762ca9770 (patch)
tree259d721f962783e4a51691b1034708f3e305eb20 /Makefile
parent649b378bb01a6964b9deec4d0fe57aeae1e5cb9e (diff)
downloadbdl-c80020d23599a9ea7b60f83449dbb93762ca9770.tar.gz
bdl-c80020d23599a9ea7b60f83449dbb93762ca9770.zip
Add parsing support for basic conditionals and blocks
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index fabc1c7..b6419fd 100644
--- a/Makefile
+++ b/Makefile
@@ -5,7 +5,7 @@
5SRC_DIR := src 5SRC_DIR := src
6BUILD_DIR := build 6BUILD_DIR := build
7SRC_MAIN := $(SRC_DIR)/main.c 7SRC_MAIN := $(SRC_DIR)/main.c
8SRC_BAD := tests/variables.bad 8SRC_BAD := tests/conditionals.bad
9WATCH_SRC := $(shell find $(SRC_DIR) -name "*.c" -or -name "*.s" -or -name "*.h") 9WATCH_SRC := $(shell find $(SRC_DIR) -name "*.c" -or -name "*.s" -or -name "*.h")
10INC_DIRS := $(shell find $(SRC_DIR) -type d) 10INC_DIRS := $(shell find $(SRC_DIR) -type d)
11INC_FLAGS := $(addprefix -I,$(INC_DIRS)) 11INC_FLAGS := $(addprefix -I,$(INC_DIRS))