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-01 13:23:42 +00:00

20 lines
369 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 I=$(shell pwd)/include
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 K=$(shell pwd)/arch/kernel