mirror of
https://git.code.sf.net/p/openocd/code
synced 2024-11-25 04:06:24 +00:00
36597636f2
Some file miss completely the license tag. Add the SPDX tag, using the same GPL-2.0-or-later license of the OpenOCD project. The SPDX tag on files *.c is incorrect, as it should use the C99 single line comment using '//'. But current checkpatch doesn't allow C99 comments, so keep using standard C comments, by now. Change-Id: I24bd362eeb6b74f09aceb9b757d45cbfa4afe334 Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com> Reviewed-on: https://review.openocd.org/c/openocd/+/7160 Tested-by: jenkins
41 lines
618 B
Makefile
41 lines
618 B
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
.PHONY: arm clean-arm
|
|
|
|
all: arm stm8
|
|
|
|
common_dirs = \
|
|
checksum \
|
|
erase_check \
|
|
watchdog
|
|
|
|
ARM_CROSS_COMPILE ?= arm-none-eabi-
|
|
|
|
arm_dirs = \
|
|
flash/fm4 \
|
|
flash/kinetis_ke \
|
|
flash/max32xxx \
|
|
flash/xmc1xxx \
|
|
debug/xscale
|
|
|
|
arm:
|
|
for d in $(common_dirs); do \
|
|
$(MAKE) -C $$d arm; \
|
|
done
|
|
for d in $(arm_dirs); do \
|
|
$(MAKE) -C $$d all CROSS_COMPILE=$(ARM_CROSS_COMPILE); \
|
|
done
|
|
|
|
clean-arm:
|
|
for d in $(arm_dirs); do \
|
|
$(MAKE) -C $$d clean; \
|
|
done
|
|
|
|
clean: clean-arm
|
|
for d in $(common_dirs); do \
|
|
$(MAKE) -C $$d clean; \
|
|
done
|
|
|
|
stm8:
|
|
$(MAKE) -C erase_check stm8
|