d86282a59b
Signed-off-by: Ian Moffett <ian@mirocom.org>
27 lines
583 B
Makefile
27 lines
583 B
Makefile
#
|
|
# Copyright (c) 2026, Mirocom Laboratories
|
|
# All rights reserved.
|
|
#
|
|
# The following sources are CONFIDENTIAL and PROPRIETARY
|
|
# property of Mirocom Laboratories. Unauthorized copying,
|
|
# use, distrubution or modification of this file, in whole
|
|
# and in part, is strictly prohibited without the prior written
|
|
# consent from Mirocom Laboratories.
|
|
#
|
|
|
|
.PHONY: all
|
|
all: target common $(ARCH)
|
|
|
|
.PHONY: target
|
|
target:
|
|
mkdir -p head/target/machine/
|
|
rsync -avr head/$(ARCH)/*.h head/target/machine/
|
|
|
|
.PHONY: common
|
|
common:
|
|
cd common; $(MAKE)
|
|
|
|
.PHONY: $(ARCH)
|
|
$(ARCH):
|
|
cd $(ARCH); $(MAKE)
|