aboutsummaryrefslogblamecommitdiff
path: root/Makefile
blob: 2b01f9d73ee275f1d3d5bc75d206ce6ac830b133 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12



                                                                      
                            






                                             


                                                                 
                                                                 

                                                                 

                                                       




                                            
 



                                            
                                     
# 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 package

bitstream:
	cd core/platform/alpha/build; ${MAKE}

elves:
	cd sw/stm32; ${MAKE} bootloader hsm

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

package: bitstream elves ${TARBALL}

${TARBALL}: ${FIRMWARE}
	./build-package.py $(basename $@) $^
	gzip -9f $(basename $@)

clean:
	git clean -dfx
	git submodule foreach git clean -dfx

.PHONY: bitstream elves package clean