From 779b9834e30de1ba0b4f0755388bebd0c45aa1dc Mon Sep 17 00:00:00 2001 From: Thomas Albers Raviola Date: Wed, 12 Feb 2025 01:27:44 +0100 Subject: Restructure rom image and use dependencies for makefiles --- boot/cmd/Makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 boot/cmd/Makefile (limited to 'boot/cmd/Makefile') diff --git a/boot/cmd/Makefile b/boot/cmd/Makefile new file mode 100644 index 0000000..5c359e4 --- /dev/null +++ b/boot/cmd/Makefile @@ -0,0 +1,12 @@ +BUILD=$(PROJECT_ROOT)/build/boot/cmd + +TARGET=$(BUILD)/cmd.hex +IHX=$(BUILD)/cmd.ihx + +ASM=$(wildcard *.asm) +SRC=$(wildcard *.c) + +all : $(TARGET) $(PROJECT_ROOT)/payload.mk + +include $(PROJECT_ROOT)/payload.mk +include $(PROJECT_ROOT)/include.mk -- cgit v1.2.3