Files
SystemPaw3/paw/stos/Makefile
T
Chloe M. 6f222ae96c stos: init: Add kernel C entry
Signed-off-by: Chloe M. <chloe@mensia.org>
2026-06-22 00:43:03 +00:00

22 lines
319 B
Makefile

#
# Copyright (c) 2026, Chloe M.
# Provided under the BSD-3 clause
#
# Description: OS core build script
# Author: Chloe M.
#
.SILENT:
include ../mk/stos.mk
.PHONY: all
all: ke machine
.PHONY: ke
ke:
cd ke/; $(MAKE) $(PASSDOWN_ARGS)
.PHONY: machine
machine:
cd arch/$(ST_TARGET_ARCH)/; $(MAKE) $(PASSDOWN_ARGS)