aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile
index 637f9a1..8f7c47c 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -1,12 +1,21 @@
include ../Makefile.config
kernel.SRCS := multiboot2.c mmap.c kernel.cpp mem/vmm.c
-kernel.OBJS := conf.h
+kernel.OBJS := include conf.h
include ../rules.mk
conf.h: conf.h.in
+ @echo ' GEN $@'
@cp conf.h.in conf.h
@sed -i 's/@VERSION@/$(shell git describe)/' conf.h
@sed -i 's/@CC@/$(shell ${CC} --version | head -n1)/' conf.h
+include:
+ mkdir -p $@
+ ln -sTf ../../grub $@/grub
+ ln -sTf ../../${ARCH} $@/arch
+ ln -sTf ../../${ARCH}/sys $@/sys
+ ln -sTf ../../devices $@/devices
+ ln -sTf ../../lib $@/lib
+