blob: 38d1a781b6f4746f6c712f7f4a7b88b33cc30073 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
|