mirror of
https://github.com/tailix/kernel.git
synced 2025-02-10 15:36:37 -05:00
23 lines
423 B
Makefile
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
|