aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile
blob: 637f9a104cbf2744bce490a52e6978cfa8c2f295 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
include ../Makefile.config

kernel.SRCS := multiboot2.c mmap.c kernel.cpp mem/vmm.c
kernel.OBJS := conf.h

include ../rules.mk

conf.h: conf.h.in
	@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