blob: 444ba77f53f03b849f9614699294a6dfe385cd79 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# Hey Emacs, this is a -*- makefile -*-
##############################################################################
# Architecture or project specific options
#
flash: bin
ifneq ($(strip $(PROGRAM_CMD)),)
$(PROGRAM_CMD)
else
$(PRINT_OK); $(SILENT) || printf "$(MSG_FLASH_ARCH)"
endif
|