Files
mars-matrixssl/makefiles/testsupp.mk
Janne Johansson d0a51a7e43 MatrixSSL 4.0.0
2018-09-13 12:17:26 +03:00

17 lines
484 B
Makefile

#
# Build test executable(s) using testsupp and catch.hpp
#
# Copyright (c) 2013-2016 INSIDE Secure Corporation. All Rights Reserved.
#
# Include test materials to path
CPPFLAGS += -I$(MATRIXSSL_ROOT)/../core/include/testsupp
# Building with testsupp requires C++: define additional rules allowing
# compilation of C++ files inheriting options from C files compilation.
CXXFLAGS=$(CFLAGS)
OBJS += $(SRC_CC:.cc=.o)
# Override compiler used in linking rules
CC_LD=$(CXX)