aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorBad Diode <bd@badd10de.dev>2024-06-16 21:36:49 +0200
committerBad Diode <bd@badd10de.dev>2024-06-16 21:36:49 +0200
commitbf4aa41a445986658f4ee931305d9caf496e9072 (patch)
tree3fbc53824ac50e24050420ef6aa541cc7ea84af3 /Makefile
parentb86d262b9fe27131d8163a6ba49957736691b1d0 (diff)
downloadbdl-bf4aa41a445986658f4ee931305d9caf496e9072.tar.gz
bdl-bf4aa41a445986658f4ee931305d9caf496e9072.zip
Add parsing for logical operators
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 7fed16b..082ab87 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/expressions.bad 8SRC_BAD := tests/comparisons.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))