mirror of
https://git.code.sf.net/p/openocd/code
synced 2024-11-25 18:06:24 +00:00
7e8ea96345
Replace the FSF boilerplate with the SPDX tag. Signed-off-by: Erhan Kurubas <erhan.kurubas@espressif.com> Change-Id: Iddccae2bd8906a3587a2aa2684124356a340fc74 Reviewed-on: https://review.openocd.org/c/openocd/+/7105 Tested-by: jenkins Reviewed-by: Antonio Borneo <borneo.antonio@gmail.com>
21 lines
426 B
Makefile
21 lines
426 B
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
# ESP32 Makefile to compile the SoC reset program
|
|
# Copyright (C) 2022 Espressif Systems Ltd.
|
|
|
|
# Prefix for ESP32 cross compilers (can include a directory path)
|
|
CROSS ?= xtensa-esp32s3-elf-
|
|
|
|
APP_ARCH := xtensa
|
|
APP_CHIP := ESP32S3
|
|
APP_CHIP_PATH := $(shell pwd)
|
|
SRCS := $(APP_CHIP_PATH)/esp32s3_cpu_reset_handler.S
|
|
|
|
CFLAGS :=
|
|
LDFLAGS :=
|
|
|
|
INCLUDES :=
|
|
DEFINES :=
|
|
|
|
include ../common.mk
|