Files
mop3/Makefile
2025-12-21 22:53:25 +01:00

13 lines
237 B
Makefile

platform ?= amd64
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