aboutsummaryrefslogtreecommitdiff
path: root/boot/cmd
diff options
context:
space:
mode:
Diffstat (limited to 'boot/cmd')
-rw-r--r--boot/cmd/Makefile12
-rw-r--r--boot/cmd/main.c4
2 files changed, 16 insertions, 0 deletions
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
diff --git a/boot/cmd/main.c b/boot/cmd/main.c
new file mode 100644
index 0000000..b363531
--- /dev/null
+++ b/boot/cmd/main.c
@@ -0,0 +1,4 @@
+void
+main(void)
+{
+}