1# 2# Copyright (c) 2016-2019 Vinnie Falco (vinnie dot falco at gmail dot com) 3# 4# Distributed under the Boost Software License, Version 1.0. (See accompanying 5# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 6# 7# Official repository: https://github.com/boostorg/beast 8# 9 10local SOURCES = 11 ssl_stream.cpp 12 ; 13 14local RUN_TESTS ; 15 16for local f in $(SOURCES) 17{ 18 RUN_TESTS += [ run $(f) 19 /boost/beast//lib-asio-ssl 20 /boost/beast/test//lib-test 21 ] ; 22} 23 24alias run-tests : $(RUN_TESTS) ; 25 26exe fat-tests 27 : 28 $(SOURCES) 29 /boost/beast//lib-asio-ssl 30 /boost/beast/test//lib-test 31 ; 32 33explicit fat-tests ; 34 35run $(SOURCES) 36 /boost/beast//lib-asio-ssl 37 /boost/beast/test//lib-test 38 : : : : run-fat-tests ; 39 40explicit run-fat-tests ; 41