summaryrefslogtreecommitdiff
path: root/Makefile
blob: 68e0301daa3c18fe396d9e0a78bcd020e013dae9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
TARGET?=virt
BUILD?=debug
CROSS_COMPILE?=riscv64-unknown-elf- 
GDB_PORT?=1234
CFLAGS=-nostdlib -ffreestanding -mcmodel=medany -I${.CURDIR}/include 
.if ${BUILD}==debug
CFLAGS+=-ggdb
.endif
.export

sys: ${SRC} lib/build/libc.a
	@echo "building kernel"
	(${MAKE} -C sys -e) 

lib/build/libc.a: 
	@echo "building libc"
	(${MAKE} -C lib -e)

debug: sys
	(${MAKE} -C sys -e debug) 

clean:
	(${MAKE} -C sys -e clean)
	(${MAKE} -C lib -e clean)

.PHONY: sys debug all clean