Files
mars-matrixssl/makefiles/testsupp.mk
Janne Johansson 0790908cb0 MatrixSSL 3.9.3
2017-06-22 16:11:29 +03:00

17 lines
471 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)/../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)