Blame view

RIOT/makefiles/bindist.inc.mk 1.18 KB
a752c7ab   elopes   add first test an...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
  USEMODULE += $(BIN_USEMODULE)
  
  DIST_FILES += $(BIN_USEMODULE:%=bin/$(BOARD)/%.a)
  
  # if the file Makefile.distcheck exists, we're executing from within a folder
  # generated by "make bindist".
  ifneq (, $(wildcard Makefile.distcheck))
    include Makefile.distcheck
  else
    DIRS+=$(BIN_DIRS)
  endif
  
  bindist: all
  	@mkdir -p bindist
  	@for i in $(DIST_FILES) ; do \
  		echo Copying $$i to bindist. ; \
  		cp -a --parents $$i bindist ; \
  		done
  	@cp -a bin/$(BOARD)/$(APPLICATION).elf bindist
  
  	@echo "BINDIST_RIOT_VERSION=$(RIOT_VERSION)" > bindist/Makefile.distcheck
  	@echo "BINDIST_GIT_HEAD=$$(git -C $(RIOTBASE) describe)" >> bindist/Makefile.distcheck
  
  prepare_check_bindist:
  	@[ "$(BINDIST_RIOT_VERSION)" = "$(RIOT_VERSION)" ] || \
  		echo "Warning! RIOT_VERSION doesn't match!"
  	@[ "$(BINDIST_GIT_HEAD)" = "$$(git -C $(RIOTBASE) describe)" ] || \
  		echo "Warning! git describe doesn't match!"
  
  check_bindist: prepare_check_bindist all
  	@test $(shell md5sum bin/$(BOARD)/$(APPLICATION).elf | cut -f1 -d\ ) \
  		= $(shell md5sum $(APPLICATION).elf | cut -f1 -d\ ) \
  		&& echo "bin/$(BOARD)/$(APPLICATION).elf matches $(APPLICATION).elf." \
  		|| echo "bin/$(BOARD)/$(APPLICATION).elf and $(APPLICATION).elf don't match!"