Files
mars-matrixssl/makefiles/testsupp.mk
Janne Johansson 69b5f2c6c3 MatrixSSL 4.5.1
2022-07-29 12:30:12 +03:00

17 lines
469 B
Makefile

#
# Build test executable(s) using testsupp and catch.hpp
#
# Copyright (c) 2013-2016 Rambus Inc. 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)