diff options
author | Thomas Albers Raviola <thomas@thomaslabs.org> | 2025-02-12 01:27:44 +0100 |
---|---|---|
committer | Thomas Albers Raviola <thomas@thomaslabs.org> | 2025-02-12 01:27:44 +0100 |
commit | 779b9834e30de1ba0b4f0755388bebd0c45aa1dc (patch) | |
tree | 218edb656e329884e4b9cab7e84f4ba4b4af0c4a /boot/devmode/Makefile | |
parent | 8ac78b9953908d2a4ffece855296fb7597440cce (diff) |
Restructure rom image and use dependencies for makefiles
Diffstat (limited to 'boot/devmode/Makefile')
-rw-r--r-- | boot/devmode/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/boot/devmode/Makefile b/boot/devmode/Makefile new file mode 100644 index 0000000..24c841a --- /dev/null +++ b/boot/devmode/Makefile @@ -0,0 +1,12 @@ +BUILD=$(PROJECT_ROOT)/build/boot/devmode + +TARGET=$(BUILD)/devmode.hex +IHX=$(BUILD)/devmode.ihx + +ASM=$(wildcard *.asm) +SRC=$(wildcard *.c) + +all : $(TARGET) + +include $(PROJECT_ROOT)/payload.mk +include $(PROJECT_ROOT)/include.mk |