summaryrefslogtreecommitdiff
path: root/sys/kern/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'sys/kern/Makefile')
-rw-r--r--sys/kern/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/kern/Makefile b/sys/kern/Makefile
index b04e252..718df06 100644
--- a/sys/kern/Makefile
+++ b/sys/kern/Makefile
@@ -6,6 +6,7 @@ CFILES += $(shell find ../lib -name "*.c")
CFILES += $(shell find ../os -name "*.c")
CFILES += $(shell find ../vm -name "*.c")
CFILES += $(shell find ../dev -name "*.c")
+CFILES += $(shell find ../mu -name "*.c")
OFILES = $(CFILES:.c=.o)
DFILES = $(CFILES:.c=.d)
CC =
@@ -17,4 +18,4 @@ all: $(OFILES)
-include $(DFILES)
%.o: %.c
$(PROMPT) " [CC] " $<
- $(CC) -c $< $(SYS_CFLAGS) -MMD -I../inc/ -I../inc/lib -o $@
+ $(CC) -c $< $(SYS_CFLAGS) -MMD -I../target/inc/ -I../inc/ -I../inc/lib -o $@