aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile17
1 files changed, 17 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..38d1a78
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,17 @@
+# Preliminary makefile for releng/alpha/firmware, just to test the
+# basic build sequence before we start messing with packaging scripts,
+# version numbers, and other forms of entertainment. Expect changes.
+
+all: bitstream elves
+
+bitstream:
+ cd core/platform/alpha/build; ${MAKE}
+
+elves:
+ cd sw/stm32; ${MAKE} bootloader hsm
+
+clean:
+ git clean -dfx
+ git submodule foreach git clean -dfx
+
+.PHONY: bitstream elves clean