gcc: update gcc7
[openadk.git] / mk / host-bottom.mk
blob29cfc57ea80fddb094a6ef5e08345a645ccdc198
1 # This file is part of the OpenADK project. OpenADK is copyrighted
2 # material, please see the LICENCE file in the top-level directory.
4 host-extract: ${_HOST_PATCH_COOKIE}
6 HOST_CONFIG_STYLE?= ${HOST_STYLE}
8 hostpre-configure:
9 host-configure:
10 ${_HOST_CONFIGURE_COOKIE}: ${_HOST_PATCH_COOKIE}
11 mkdir -p ${WRKBUILD}
12 ifneq (,$(filter autogen,${AUTOTOOL_STYLE}))
13 @$(CMD_TRACE) "autotooling.. "
14 @cd ${WRKSRC}; env ${HOST_AUTOTOOL_ENV} $(BASH) autogen.sh $(MAKE_TRACE)
15 endif
16 ifneq (,$(filter autoreconf,${AUTOTOOL_STYLE}))
17 cd ${WRKSRC}; env ${HOST_AUTOTOOL_ENV} autoreconf -vif $(MAKE_TRACE)
18 @rm -rf ${WRKSRC}/autom4te.cache
19 @touch ${WRKDIR}/.autoreconf_done
20 endif
21 @${MAKE} hostpre-configure $(MAKE_TRACE)
22 ifeq (${HOST_CONFIG_STYLE},)
23 @$(CMD_TRACE) "configuring.. "
24 cd ${WRKBUILD}; \
25 env ${HOST_CONFIGURE_ENV} \
26 ${BASH} ${WRKSRC}/${CONFIGURE_PROG} \
27 --prefix=${STAGING_HOST_DIR}/usr \
28 --bindir=${STAGING_HOST_DIR}/usr/bin \
29 --datadir=${STAGING_HOST_DIR}/usr/share \
30 --mandir=${STAGING_HOST_DIR}/usr/share/man \
31 --libdir=${STAGING_HOST_DIR}/usr/lib \
32 --libexecdir=${STAGING_HOST_DIR}/usr/libexec \
33 --sysconfdir=${STAGING_HOST_DIR}/etc \
34 ${HOST_CONFIGURE_ARGS} $(MAKE_TRACE)
35 endif
36 ifeq (${HOST_CONFIG_STYLE},auto)
37 @$(CMD_TRACE) "configuring.. "
38 cd ${WRKBUILD}; \
39 env ${HOST_CONFIGURE_ENV} \
40 ${BASH} ${WRKSRC}/${CONFIGURE_PROG} \
41 --program-prefix= \
42 --program-suffix= \
43 --prefix=/usr \
44 --bindir=/usr/bin \
45 --datadir=/usr/share \
46 --mandir=/usr/share/man \
47 --libdir=/usr/lib \
48 --libexecdir=/usr/libexec \
49 --localstatedir=/var \
50 --sysconfdir=/etc \
51 --disable-dependency-tracking \
52 --disable-libtool-lock \
53 --disable-nls \
54 ${HOST_CONFIGURE_ARGS} $(MAKE_TRACE)
55 endif
56 ifeq (${HOST_CONFIG_STYLE},cmake)
57 @$(CMD_TRACE) "configuring cmake.. "
58 cd ${WRKBUILD}; PATH='${HOST_PATH}' \
59 cmake -Wno-dev -DCMAKE_INSTALL_PREFIX:PATH=/usr \
60 ${HOST_CMAKE_FLAGS} ${WRKSRC} $(MAKE_TRACE)
61 endif
62 ifeq (${HOST_CONFIG_STYLE},perl)
63 @$(CMD_TRACE) "configuring perl module.. "
64 cd ${WRKBUILD}; \
65 PATH='${HOST_PATH}' \
66 PERL_MM_USE_DEFAULT=1 \
67 PERL_AUTOINSTALL=--skipdeps \
68 $(HOST_PERL_ENV) \
69 perl-host Makefile.PL ${HOST_CONFIGURE_ARGS}
70 endif
71 ifeq (${HOST_CONFIG_STYLE},manual)
72 @$(CMD_TRACE) "configuring.. "
73 ${MAKE} host-configure $(MAKE_TRACE)
74 endif
75 touch $@
77 host-build:
78 ${_HOST_BUILD_COOKIE}: ${_HOST_CONFIGURE_COOKIE}
79 @$(CMD_TRACE) "compiling.. "
80 ifneq (${HOST_STYLE},manual)
81 cd ${WRKBUILD} && env ${HOST_MAKE_ENV} ${MAKE} -j${ADK_MAKE_JOBS} -f ${MAKE_FILE} \
82 ${HOST_MAKE_FLAGS} ${HOST_ALL_TARGET} $(MAKE_TRACE)
83 endif
84 ${MAKE} host-build $(MAKE_TRACE)
85 touch $@
87 HOST_INSTALL_STYLE?= ${HOST_STYLE}
89 hostpost-install:
90 host-install: ${ALL_HOSTINST}
91 ${_HOST_FAKE_COOKIE}: ${_HOST_BUILD_COOKIE}
92 @$(CMD_TRACE) "installing.. "
93 @mkdir -p ${HOST_WRKINST}
94 ifeq (${HOST_INSTALL_STYLE},)
95 cd ${WRKBUILD} && env ${HOST_MAKE_ENV} ${MAKE} -f ${MAKE_FILE} \
96 DESTDIR='' ${HOST_FAKE_FLAGS} ${HOST_INSTALL_TARGET} $(MAKE_TRACE)
97 endif
98 ifeq (${HOST_INSTALL_STYLE},auto)
99 cd ${WRKBUILD} && env ${HOST_MAKE_ENV} ${MAKE} -f ${MAKE_FILE} \
100 DESTDIR='${STAGING_HOST_DIR}' ${HOST_FAKE_FLAGS} ${HOST_INSTALL_TARGET} $(MAKE_TRACE)
101 endif
102 ifeq (${HOST_INSTALL_STYLE},manual)
103 env ${HOST_MAKE_ENV} ${MAKE} host-install $(MAKE_TRACE)
104 endif
105 env ${HOST_MAKE_ENV} ${MAKE} hostpost-install $(MAKE_TRACE)
106 @find $(STAGING_HOST_DIR) -name \*.la -exec rm {} \;
107 @for a in $(STAGING_HOST_DIR)/usr/bin/*-config; do \
108 [[ -e $$a ]] || continue; \
109 $(SED) "s,^prefix=.*,prefix=$(STAGING_HOST_DIR)/usr," $$a; \
110 chmod u+x $(STAGING_HOST_DIR)/usr/bin/$$(basename $$a); \
111 done
112 touch $@
114 ${_HOST_COOKIE}:
115 exec ${MAKE} hostpackage
117 ifeq ($(HOST_LINUX_ONLY),)
118 hostpackage: ${ALL_HOSTDIRS}
119 @touch ${_HOST_COOKIE}
120 endif
122 hostclean:
123 @printf " ---> cleaning host package build directories and files.. "
124 -rm -rf ${STAGING_PKG_DIR}/stamps/${PKG_NAME}*-host ${WRKDIR}
125 @printf " done\n"