summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorFabrice <fabrice@schaub-dev.xyz>2026-02-09 23:38:28 +0100
committerFabrice <fabrice@schaub-dev.xyz>2026-02-09 23:38:28 +0100
commit9e8b564bbd1561985c12d8151cc786198e454ec0 (patch)
treedd0fd90a449b8cebd9ad080191dc610019fba1aa /Makefile
parent671329cb11d1ae2253a4381e49767c7ea5a56048 (diff)
use srcdir directly
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index c15317a..221b253 100644
--- a/Makefile
+++ b/Makefile
@@ -1,8 +1,7 @@
WORK_DIR = .
SRC_DIR = $(WORK_DIR)/src
-INC_DIR = $(WORK_DIR)/include
-CSH_FLAGS = -Wall -Wextra -Werror -pedantic -I$(INC_DIR)
+CSH_FLAGS = -Wall -Wextra -Werror -pedantic -I$(SRC_DIR)
CC = clang
CC_STD = -std=c11