Files
SystemPaw3/paw/stos/Makefile
T
Chloe M. c5b77032ac stos/amd64: Add port I/O helpers
Signed-off-by: Chloe M. <chloe@mensia.org>
2026-06-22 01:36:40 +00:00

27 lines
436 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: target ke machine
.PHONY: target
target:
mkdir -p target/machine/
rsync -avr head/arch/$(ST_TARGET_ARCH)/*.h target/machine/
.PHONY: ke
ke:
cd ke/; $(MAKE) $(PASSDOWN_ARGS)
.PHONY: machine
machine:
cd arch/$(ST_TARGET_ARCH)/; $(MAKE) $(PASSDOWN_ARGS)