diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 22 |
1 files changed, 12 insertions, 10 deletions
@@ -4,23 +4,25 @@ export GNUPGHOME := /home/aptbot/gnupg -TARBALL := package.tar.gz - -FIRMWARE := sw/stm32/projects/bootloader/bootloader.bin \ - sw/stm32/projects/bootloader/bootloader.elf \ - sw/stm32/projects/hsm/hsm.bin \ - sw/stm32/projects/hsm/hsm.elf \ - core/platform/alpha/build/alpha_fmc.bit +TARBALL := package.tar.gz +BITSTREAM := core/platform/alpha/build/alpha_fmc.bit +BINARIES := sw/stm32/projects/bootloader/bootloader.bin sw/stm32/projects/hsm/hsm.bin +FIRMWARE := ${BITSTREAM} ${BINARIES} ${BINARIES:.bin=.elf} +RTLSOURCE := $(shell find core -name .git -prune -o -path core/platform/alpha/build -prune -o -type f -print) all: bitstream elves package -bitstream: +bitstream: ${BITSTREAM} + +${BITSTREAM}: ${RTLSOURCE} cd core/platform/alpha/build; ${MAKE} +${BINARIES}: elves + elves: cd sw/stm32; ${MAKE} bootloader hsm -package: bitstream elves ${TARBALL} +package: ${TARBALL} ${TARBALL}: ${FIRMWARE} ./build-package.py $(basename $@) $^ @@ -30,4 +32,4 @@ clean: git clean -dfx git submodule foreach git clean -dfx -.PHONY: bitstream elves package clean +.PHONY: all bitstream elves package clean |