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 09:20:44 +00:00

23 lines
423 B
Makefile

run: run-iso
all: all-kernel all-iso
clean: clean-iso clean-kernel
run-kernel:
make run -C arch I=$(shell pwd)/include
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