aboutsummaryrefslogtreecommitdiffstats
path: root/config.mk
blob: 88b7f2714faf558f159756ca3a493ac0da1fe4ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
################################################################################
#
#      Copyright (C) 2015 by Intel Corporation, All Rights Reserved.
#
#            Global configuration Makefile. Included everywhere.
#
################################################################################

CC=gcc 
CFLAGS = -Os -std=c99 -Wall -Wextra -I../lib/include/ -I../lib/source/ -I../tests/include/
VPATH = ../lib/include/tinycrypt/ ../lib/source/

export CC
export CFLAGS
export VPATH

################################################################################