kernel/Makefile

9 lines
161 B
Makefile
Raw Normal View History

2017-11-01 05:03:52 +00:00
run: all
2017-11-01 07:06:34 +00:00
qemu-system-i386 -kernel arch/kernel -d guest_errors
2017-11-01 05:03:52 +00:00
2017-11-01 04:53:54 +00:00
all:
2017-11-01 08:37:39 +00:00
make all -C arch I=$(shell pwd)/include
2017-11-01 04:43:42 +00:00
clean:
2017-11-01 08:37:39 +00:00
make clean -C arch I=$(shell pwd)/include