Initial commit
Initial commit.
This commit is contained in:
35
bootloader/mcuboot/ext/tinycrypt/config.mk
Normal file
35
bootloader/mcuboot/ext/tinycrypt/config.mk
Normal file
@@ -0,0 +1,35 @@
|
||||
################################################################################
|
||||
#
|
||||
# Copyright (C) 2017 by Intel Corporation, All Rights Reserved.
|
||||
#
|
||||
# Global configuration Makefile. Included everywhere.
|
||||
#
|
||||
################################################################################
|
||||
|
||||
# EDIT HERE:
|
||||
CC:=gcc
|
||||
CFLAGS:=-Os -std=c99 -Wall -Wextra -D_ISOC99_SOURCE -MMD -I../lib/include/ -I../lib/source/ -I../tests/include/
|
||||
vpath %.c ../lib/source/
|
||||
ENABLE_TESTS=true
|
||||
|
||||
# override MinGW built-in recipe
|
||||
%.o: %.c
|
||||
$(COMPILE.c) $(OUTPUT_OPTION) $<
|
||||
|
||||
ifeq ($(OS),Windows_NT)
|
||||
DOTEXE:=.exe
|
||||
endif
|
||||
|
||||
# DO NOT EDIT AFTER THIS POINT:
|
||||
ifeq ($(ENABLE_TESTS), true)
|
||||
CFLAGS += -DENABLE_TESTS
|
||||
else
|
||||
CFLAGS += -DDISABLE_TESTS
|
||||
endif
|
||||
|
||||
export CC
|
||||
export CFLAGS
|
||||
export VPATH
|
||||
export ENABLE_TESTS
|
||||
|
||||
################################################################################
|
||||
Reference in New Issue
Block a user