1
0
Fork 0
mirror of https://github.com/tailix/kernel.git synced 2024-10-30 12:03:52 -04:00
kernel/Makefile
2017-11-02 03:38:06 +00:00

20 lines
319 B
Makefile

run: run-iso
all: all-kernel all-iso
clean: clean-iso clean-kernel
all-kernel:
make all -C arch I=$(shell pwd)/include
clean-kernel:
make clean -C arch
run-iso: all-kernel
make run -C iso K=$(shell pwd)/arch/kernel
all-iso: all-kernel
make all -C iso K=$(shell pwd)/arch/kernel
clean-iso:
make clean -C iso