Changes requested during the initial review

This commit is contained in:
Attila Body 2020-01-13 09:47:52 +01:00
parent 53e65e566a
commit c4c6ac8bb3
8 changed files with 186 additions and 89 deletions

View file

@ -1,15 +1,7 @@
##########################################################################################################################
# File automatically-generated by tool: [projectgenerator] version: [3.5.2] date: [Tue Dec 10 15:21:03 CET 2019]
# Main makefile for unit tests
##########################################################################################################################
# ------------------------------------------------
# Generic Makefile (based on gcc)
#
# ChangeLog :
# 2017-02-10 - Several enhancements + project update mode
# 2015-07-22 - first version
# ------------------------------------------------
######################################
# target
######################################
@ -21,6 +13,8 @@ COMPONENT_DEPS =
######################################
# debug build?
DEBUG = 1
# save preprocessor output
SAVETEMPS = 0
# optimization
OPT = -Og
# c++ standard
@ -128,6 +122,10 @@ CFLAGS += -g3
CXXFLAGS += -g3
endif
ifeq ($(SAVETEMPS), 1)
CFLAGS += -save-temps
CXXFLAGS += -save-temps
endif
# Generate dependency information
CFLAGS += -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@)"