# Copyright 2023 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#      http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

.PHONY: build qemu qemu_logger qemu_minimal qemu_psci qemu_rt qemu_safemmio

all: improved.bin logger.bin minimal.bin psci.bin rt.bin safemmio.bin

build:
	cargo build

improved.bin: build
	cargo objcopy --bin improved -- -O binary $@
logger.bin: build
	cargo objcopy --bin logger -- -O binary $@
minimal.bin: build
	cargo objcopy --bin minimal -- -O binary $@
psci.bin: build
	cargo objcopy --bin psci -- -O binary $@
rt.bin: build
	cargo objcopy --bin rt -- -O binary $@
safemmio.bin: build
	cargo objcopy --bin safemmio -- -O binary $@

qemu: improved.bin
	qemu-system-aarch64 -machine virt -cpu max -serial mon:stdio -display none -kernel $< -s
qemu_logger: logger.bin
	qemu-system-aarch64 -machine virt -cpu max -serial mon:stdio -display none -kernel $< -s
qemu_minimal: minimal.bin
	qemu-system-aarch64 -machine virt -cpu max -serial mon:stdio -display none -kernel $< -s
qemu_psci: psci.bin
	qemu-system-aarch64 -machine virt -cpu max -serial mon:stdio -display none -kernel $< -s
qemu_rt: rt.bin
	qemu-system-aarch64 -machine virt -cpu max -serial mon:stdio -display none -kernel $< -s
qemu_safemmio: safemmio.bin
	qemu-system-aarch64 -machine virt -cpu max -serial mon:stdio -display none -kernel $< -s

clean:
	cargo clean
	rm -f *.bin
