1
0
Fork 0
mirror of https://github.com/tailix/kernel.git synced 2024-11-20 11:16:10 -05:00
kernel/Makefile

9 lines
161 B
Makefile
Raw Normal View History

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