6b13f685e
김민수
BSP 최초 추가
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
################################################################################
#
# atf
#
################################################################################
ATF_VERSION = 0.21
ATF_SITE = https://github.com/jmmv/atf/releases/download/atf-$(ATF_VERSION)
ATF_INSTALL_STAGING = YES
ATF_LICENSE = BSD-2c, BSD-3c
ATF_LICENSE_FILES = COPYING
# Ships a beta libtool version hence our patch doesn't apply.
ATF_AUTORECONF = YES
# Do not install precompiled tests.
ATF_INSTALL_TARGET_OPTS = DESTDIR=$(TARGET_DIR) install-exec
# ATF_SHELL defaults to the host's bash
ATF_CONF_ENV = \
kyua_cv_getopt_plus=yes \
kyua_cv_attribute_noreturn=yes \
kyua_cv_getcwd_works=yes \
ATF_SHELL=/bin/sh
$(eval $(autotools-package))
|