aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'makefile')
-rw-r--r--makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/makefile b/makefile
index 6dd59d7..0235442 100644
--- a/makefile
+++ b/makefile
@@ -4,9 +4,9 @@
# != execute a shell script on the right-hand side and assign its result to the left-hand side
include toolchain.makefile
-OBJ_DIR := obj
+OBJ_DIR := build
-include kernel/makefile
+include src/makefile
include libk/makefile
AS_OBJ := $(addprefix $(OBJ_DIR)/, $(AS_OBJ))
CXX_OBJ := $(addprefix $(OBJ_DIR)/, $(CXX_OBJ))