]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - lib/atf/libatf-c/Makefile
MFC r316600:
[FreeBSD/stable/10.git] / lib / atf / libatf-c / Makefile
1 #-
2 # Copyright (c) 2011 Google, Inc.
3 # All rights reserved.
4 #
5 # Redistribution and use in source and binary forms, with or without
6 # modification, are permitted provided that the following conditions
7 # are met:
8 # 1. Redistributions of source code must retain the above copyright
9 #    notice, this list of conditions and the following disclaimer.
10 # 2. Redistributions in binary form must reproduce the above copyright
11 #    notice, this list of conditions and the following disclaimer in the
12 #    documentation and/or other materials provided with the distribution.
13 #
14 # THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 # ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 # OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 # SUCH DAMAGE.
25 #
26 # $FreeBSD$
27
28 .include <bsd.init.mk>
29
30 # Store the toolchain executable in ATF_BUILD_{CC,CPP,CXX} to ensure other
31 # values -- like -target, -B ..., etc -- don't get leaked into the tests.
32 #
33 # Be sure to omit ${CCACHE_BIN} (if specified) from the variable as it gets
34 # automatically appended to the variables in bsd.compiler.mk when
35 # ${MK_CCACHE_BUILD} != no.
36 ATF_BUILD_CC:=          ${CC:N${CCACHE_BIN}:[1]}
37 ATF_BUILD_CPP:=         ${CPP:N${CCACHE_BIN}:[1]}
38 ATF_BUILD_CXX:=         ${CXX:N${CCACHE_BIN}:[1]}
39
40 # Only capture defines, includes, linker flags, optimization levels, warnings
41 # and preprocessor flags when building ATF_BUILD_{C,CPP,CXX}FLAGS.
42 ATF_BUILD_CFLAGS:=      ${CFLAGS:M-[DILOWf]*}
43 ATF_BUILD_CPPFLAGS:=    ${CPPFLAGS:M-[DILOWf]*}
44 ATF_BUILD_CXXFLAGS:=    ${CXXFLAGS:M-[DILOWf]*}
45
46 LIB=            atf-c
47 PRIVATELIB=     true
48 SHLIB_MAJOR=    1
49
50 ATF=            ${SRCTOP}/contrib/atf
51 .PATH:          ${ATF}
52 .PATH:          ${ATF}/atf-c
53 .PATH:          ${ATF}/atf-c/detail
54
55 CFLAGS+=        -DATF_BUILD_CC='"${ATF_BUILD_CC}"'
56 CFLAGS+=        -DATF_BUILD_CFLAGS='"${ATF_BUILD_CFLAGS}"'
57 CFLAGS+=        -DATF_BUILD_CPP='"${ATF_BUILD_CPP}"'
58 CFLAGS+=        -DATF_BUILD_CPPFLAGS='"${ATF_BUILD_CPPFLAGS}"'
59 CFLAGS+=        -DATF_BUILD_CXX='"${ATF_BUILD_CXX}"'
60 CFLAGS+=        -DATF_BUILD_CXXFLAGS='"${ATF_BUILD_CXXFLAGS}"'
61 CFLAGS+=        -I${ATF}
62 CFLAGS+=        -I${.CURDIR}
63 CFLAGS+=        -I.
64
65 SRCS=           build.c \
66                 check.c \
67                 dynstr.c \
68                 env.c \
69                 error.c \
70                 fs.c \
71                 list.c \
72                 map.c \
73                 process.c \
74                 sanity.c \
75                 text.c \
76                 user.c \
77                 utils.c \
78                 tc.c \
79                 tp.c \
80                 tp_main.c
81
82 INCS=           build.h \
83                 check.h \
84                 defs.h \
85                 error.h \
86                 error_fwd.h \
87                 macros.h \
88                 tc.h \
89                 tp.h \
90                 utils.h
91 INCSDIR=        ${INCLUDEDIR}/atf-c
92
93 INCS+=          atf-c.h
94 INCSDIR_atf-c.h= ${INCLUDEDIR}
95
96 MAN=            atf-c.3
97 MLINKS+=        atf-c.3 atf-c-api.3  # Backwards compatibility.
98
99 .if ${MK_TESTS} != "no"
100 SUBDIR=         tests
101 .endif
102
103 .include "../common.mk"
104 .include <bsd.lib.mk>