OSDN Git Service

Correct project name references in mingwrt source files.
[mingw/mingw-org-wsl.git] / mingwrt / tests / atlocal.in
1 # @configure_input@
2 #
3 # Autotest configuration template for MinGW.OSDN Runtime Library Package
4 #
5 # $Id$
6 #
7 # Written by Keith Marshall <keith@users.osdn.me>
8 # Copyright (C) 2016, 2022, MinGW.OSDN Project
9 #
10 #
11 # Permission is hereby granted, free of charge, to any person obtaining a
12 # copy of this software and associated documentation files (the "Software"),
13 # to deal in the Software without restriction, including without limitation
14 # the rights to use, copy, modify, merge, publish, distribute, sublicense,
15 # and/or sell copies of the Software, and to permit persons to whom the
16 # Software is furnished to do so, subject to the following conditions:
17 #
18 # The above copyright notice and this permission notice (including the next
19 # paragraph) shall be included in all copies or substantial portions of the
20 # Software.
21 #
22 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
23 # OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25 # AUTHORS OR THE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
26 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
27 # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
28 # DEALINGS IN THE SOFTWARE.
29 #
30 #
31 # Options we need to pass to the GCC compilers, to ensure that we will be
32 # testing locally installed copies of our system headers and libraries, in
33 # the testsuite directory, rather than those associated with the compilers
34 # themselves.
35 #
36 at_compiler_config="-nostdinc -iwithprefixbefore include"
37 at_package_includes="-I $at_top_build_prefix/../include"
38
39 # Commands to invoke the C and C++ compilers, as identified during package
40 # configuration.
41 #
42 at_compiler_cc="@CC@ $at_compiler_config $at_package_includes"
43 at_compiler_cxx="@CXX@ $at_compiler_config $at_package_includes"
44
45 # $RCSfile$: vim: set filetype=config: end of file