-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathproject.mk
41 lines (31 loc) · 1.17 KB
/
project.mk
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
35
36
37
38
39
40
41
# This file can be used to set build configuration
# variables. These variables are defined in a file called
# "Makefile" that is located next to this one.
# For instructions on how to use this system, see
# https://analog-devices-msdk.github.io/msdk/USERGUIDE/#build-system
#MXC_OPTIMIZE_CFLAGS = -Og
# ^ For example, you can uncomment this line to
# optimize the project for debugging
# **********************************************************
# Add your config here!
# This example is only compatible with the FTHR board,
# so we override the BOARD value to hard-set it.
override BOARD=FTHR_RevA
MFLOAT_ABI=soft
IPATH+=../deployment
IPATH+=inc/
VPATH+=src/
# ****************** eCTF Bootloader *******************
# DO NOT REMOVE
LINKERFILE=firmware.ld
STARTUPFILE=startup_firmware.S
ENTRY=firmware_startup
# ****************** eCTF Crypto Example *******************
# Uncomment the commented lines below and comment the disable
# lines to enable the eCTF Crypto Example.
# WolfSSL must be included in this directory as wolfssl/
# WolfSSL can be downloaded from: https://www.wolfssl.com/download/
# Disable Crypto Example
CRYPTO_EXAMPLE=0
# Enable Crypto Example
#CRYPTO_EXAMPLE=1