Makefile revision 305911
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: stable/10/lib/atf/libatf-c/Makefile 305911 2016-09-18 02:51:18Z ngie $
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.
36ATF_BUILD_CC:=		${CC:N${CCACHE_BIN}:[1]}
37ATF_BUILD_CPP:=		${CPP:N${CCACHE_BIN}:[1]}
38ATF_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.
42ATF_BUILD_CFLAGS:=	${CFLAGS:M-[DILOWf]*}
43ATF_BUILD_CPPFLAGS:=	${CPPFLAGS:M-[DILOWf]*}
44ATF_BUILD_CXXFLAGS:=	${CXXFLAGS:M-[DILOWf]*}
45
46LIB=		atf-c
47PRIVATELIB=	true
48SHLIB_MAJOR=	1
49
50ATF=		${SRCTOP}/contrib/atf
51.PATH:		${ATF}
52.PATH:		${ATF}/atf-c
53.PATH:		${ATF}/atf-c/detail
54
55CFLAGS+=	-DATF_BUILD_CC='"${ATF_BUILD_CC}"'
56CFLAGS+=	-DATF_BUILD_CFLAGS='"${ATF_BUILD_CFLAGS}"'
57CFLAGS+=	-DATF_BUILD_CPP='"${ATF_BUILD_CPP}"'
58CFLAGS+=	-DATF_BUILD_CPPFLAGS='"${ATF_BUILD_CPPFLAGS}"'
59CFLAGS+=	-DATF_BUILD_CXX='"${ATF_BUILD_CXX}"'
60CFLAGS+=	-DATF_BUILD_CXXFLAGS='"${ATF_BUILD_CXXFLAGS}"'
61CFLAGS+=	-I${ATF}
62CFLAGS+=	-I${.CURDIR}
63CFLAGS+=	-I.
64
65SRCS=		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
82INCS=		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
91INCSDIR=	${INCLUDEDIR}/atf-c
92
93INCS+=		atf-c.h
94INCSDIR_atf-c.h= ${INCLUDEDIR}
95
96MAN=		atf-c.3
97MLINKS+=	atf-c.3 atf-c-api.3  # Backwards compatibility.
98
99.if ${MK_TESTS} != "no"
100SUBDIR=		tests
101.endif
102
103.include "../common.mk"
104.include <bsd.lib.mk>
105