a747113422afaa29ce72d2c5ba7f0b7ea9ec2054Evan Hunt# Copyright (c) 2007 The NetBSD Foundation, Inc.
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt# All rights reserved.
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt#
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt# Redistribution and use in source and binary forms, with or without
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt# modification, are permitted provided that the following conditions
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt# are met:
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt# 1. Redistributions of source code must retain the above copyright
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt# notice, this list of conditions and the following disclaimer.
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt# 2. Redistributions in binary form must reproduce the above copyright
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt# notice, this list of conditions and the following disclaimer in the
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt# documentation and/or other materials provided with the distribution.
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt#
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt# THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt# CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt# INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt# IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS BE LIABLE FOR ANY
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt# GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt# IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt
ef421f66f47224a42073deaf087378c5d0c9952eEvan Huntlibatf_c_la_SOURCES += atf-c/detail/dynstr.c \
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt atf-c/detail/dynstr.h \
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt atf-c/detail/env.c \
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt atf-c/detail/env.h \
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt atf-c/detail/fs.c \
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt atf-c/detail/fs.h \
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt atf-c/detail/list.c \
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt atf-c/detail/list.h \
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt atf-c/detail/map.c \
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt atf-c/detail/map.h \
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt atf-c/detail/process.c \
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt atf-c/detail/process.h \
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt atf-c/detail/sanity.c \
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt atf-c/detail/sanity.h \
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt atf-c/detail/text.c \
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt atf-c/detail/text.h \
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt atf-c/detail/tp_main.c \
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt atf-c/detail/user.c \
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt atf-c/detail/user.h
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt
a747113422afaa29ce72d2c5ba7f0b7ea9ec2054Evan Hunttests_atf_c_detail_DATA = atf-c/detail/Atffile \
a747113422afaa29ce72d2c5ba7f0b7ea9ec2054Evan Hunt atf-c/detail/Kyuafile
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunttests_atf_c_detaildir = $(pkgtestsdir)/atf-c/detail
ef421f66f47224a42073deaf087378c5d0c9952eEvan HuntEXTRA_DIST += $(tests_atf_c_detail_DATA)
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt
ef421f66f47224a42073deaf087378c5d0c9952eEvan Huntnoinst_LTLIBRARIES += atf-c/detail/libtest_helpers.la
ef421f66f47224a42073deaf087378c5d0c9952eEvan Huntatf_c_detail_libtest_helpers_la_SOURCES = atf-c/detail/test_helpers.c \
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt atf-c/detail/test_helpers.h
4a53e3c2b83c476a93148eaee0272649beb221caMark Andrewsatf_c_detail_libtest_helpers_la_CPPFLAGS = -I$(srcdir)/atf-c \
4a53e3c2b83c476a93148eaee0272649beb221caMark Andrews -DATF_INCLUDEDIR=\"$(includedir)\"
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunttests_atf_c_detail_PROGRAMS = atf-c/detail/dynstr_test
ef421f66f47224a42073deaf087378c5d0c9952eEvan Huntatf_c_detail_dynstr_test_SOURCES = atf-c/detail/dynstr_test.c
ef421f66f47224a42073deaf087378c5d0c9952eEvan Huntatf_c_detail_dynstr_test_LDADD = atf-c/detail/libtest_helpers.la libatf-c.la
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunttests_atf_c_detail_PROGRAMS += atf-c/detail/env_test
ef421f66f47224a42073deaf087378c5d0c9952eEvan Huntatf_c_detail_env_test_SOURCES = atf-c/detail/env_test.c
ef421f66f47224a42073deaf087378c5d0c9952eEvan Huntatf_c_detail_env_test_LDADD = atf-c/detail/libtest_helpers.la libatf-c.la
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunttests_atf_c_detail_PROGRAMS += atf-c/detail/fs_test
ef421f66f47224a42073deaf087378c5d0c9952eEvan Huntatf_c_detail_fs_test_SOURCES = atf-c/detail/fs_test.c
ef421f66f47224a42073deaf087378c5d0c9952eEvan Huntatf_c_detail_fs_test_LDADD = atf-c/detail/libtest_helpers.la libatf-c.la
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunttests_atf_c_detail_PROGRAMS += atf-c/detail/list_test
ef421f66f47224a42073deaf087378c5d0c9952eEvan Huntatf_c_detail_list_test_SOURCES = atf-c/detail/list_test.c
ef421f66f47224a42073deaf087378c5d0c9952eEvan Huntatf_c_detail_list_test_LDADD = atf-c/detail/libtest_helpers.la libatf-c.la
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunttests_atf_c_detail_PROGRAMS += atf-c/detail/map_test
ef421f66f47224a42073deaf087378c5d0c9952eEvan Huntatf_c_detail_map_test_SOURCES = atf-c/detail/map_test.c
ef421f66f47224a42073deaf087378c5d0c9952eEvan Huntatf_c_detail_map_test_LDADD = atf-c/detail/libtest_helpers.la libatf-c.la
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunttests_atf_c_detail_PROGRAMS += atf-c/detail/process_helpers
ef421f66f47224a42073deaf087378c5d0c9952eEvan Huntatf_c_detail_process_helpers_SOURCES = atf-c/detail/process_helpers.c
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunttests_atf_c_detail_PROGRAMS += atf-c/detail/process_test
ef421f66f47224a42073deaf087378c5d0c9952eEvan Huntatf_c_detail_process_test_SOURCES = atf-c/detail/process_test.c
ef421f66f47224a42073deaf087378c5d0c9952eEvan Huntatf_c_detail_process_test_LDADD = atf-c/detail/libtest_helpers.la libatf-c.la
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunttests_atf_c_detail_PROGRAMS += atf-c/detail/sanity_test
ef421f66f47224a42073deaf087378c5d0c9952eEvan Huntatf_c_detail_sanity_test_SOURCES = atf-c/detail/sanity_test.c
ef421f66f47224a42073deaf087378c5d0c9952eEvan Huntatf_c_detail_sanity_test_LDADD = atf-c/detail/libtest_helpers.la libatf-c.la
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunttests_atf_c_detail_PROGRAMS += atf-c/detail/text_test
ef421f66f47224a42073deaf087378c5d0c9952eEvan Huntatf_c_detail_text_test_SOURCES = atf-c/detail/text_test.c
ef421f66f47224a42073deaf087378c5d0c9952eEvan Huntatf_c_detail_text_test_LDADD = atf-c/detail/libtest_helpers.la libatf-c.la
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunttests_atf_c_detail_PROGRAMS += atf-c/detail/user_test
ef421f66f47224a42073deaf087378c5d0c9952eEvan Huntatf_c_detail_user_test_SOURCES = atf-c/detail/user_test.c
ef421f66f47224a42073deaf087378c5d0c9952eEvan Huntatf_c_detail_user_test_LDADD = atf-c/detail/libtest_helpers.la libatf-c.la
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt
4a53e3c2b83c476a93148eaee0272649beb221caMark Andrewstests_atf_c_detail_PROGRAMS += atf-c/detail/version_helper
4a53e3c2b83c476a93148eaee0272649beb221caMark Andrewsatf_c_detail_version_helper_SOURCES = atf-c/detail/version_helper.c
4a53e3c2b83c476a93148eaee0272649beb221caMark Andrews
ef421f66f47224a42073deaf087378c5d0c9952eEvan Hunt# vim: syntax=make:noexpandtab:shiftwidth=8:softtabstop=8