Files
mop3/make/kernel.mk
kamkow1 d09e4d97ad
All checks were successful
Build documentation / build-and-deploy (push) Successful in 31s
Fix missing headers, generate compile db with bear
2026-01-06 03:08:13 +01:00

14 lines
328 B
Makefile

all_kernel:
make -C kernel platform=$(platform) all
all_compiledb_kernel:
bear --output kernel/compile_commands.json -- 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