aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2016-06-21 17:59:44 -0400
committerRob Austein <sra@hactrn.net>2016-06-21 17:59:44 -0400
commitd630816f9bbb6e1aec4d6fa583ca7ca5045c4f18 (patch)
tree50cbe6e87131d2c6223454815be3d497e562dbd2 /Makefile
First step towards Alpha board firmware release engineering.
Committing and pushing early so I can do initial test builds on something with a little more horsepower.
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