Files
mop3/kernel.mk
2025-12-29 23:54:21 +01:00

11 lines
218 B
Makefile

all_kernel:
make -C kernel platform=$(platform) all
clean_kernel:
make -C kernel platform=$(platform) clean
format_kernel:
make -C kernel platform=$(platform) format
.PHONY: all_kernel clean_kernel format_kernel