egrep is deprecated use grep -E
[openadk.git] / mk / host-bottom.mk
blobf7e635f1575175ba194f39c411df6481412957d9
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=$(STAGING_HOST_DIR)/usr \
60 ${HOST_CMAKE_FLAGS} ${WRKSRC} $(MAKE_TRACE)
61 endif
62 ifeq (${HOST_CONFIG_STYLE},meson)
63 @$(CMD_TRACE) "configuring meson.. "
64 cd ${WRKSRC}; PATH='${HOST_PATH}' \
65 meson --prefix $(STAGING_HOST_DIR)/usr \
66 --pkg-config-path $(STAGING_HOST_DIR)/usr/lib/pkgconfig \
67 --buildtype release $(HOST_MESON_FLAGS) \
68 $(WRKSRC) $(WRKBUILD) $(MAKE_TRACE)
69 endif
70 ifeq (${HOST_CONFIG_STYLE},perl)
71 @$(CMD_TRACE) "configuring perl module.. "
72 cd ${WRKBUILD}; \
73 PATH='${HOST_PATH}' \
74 PERL_MM_USE_DEFAULT=1 \
75 PERL_AUTOINSTALL=--skipdeps \
76 $(HOST_PERL_ENV) \
77 perl-host Makefile.PL ${HOST_CONFIGURE_ARGS}
78 endif
79 ifeq (${HOST_CONFIG_STYLE},manual)
80 @$(CMD_TRACE) "configuring.. "
81 ${MAKE} host-configure $(MAKE_TRACE)
82 endif
83 touch $@
85 host-build:
86 ${_HOST_BUILD_COOKIE}: ${_HOST_CONFIGURE_COOKIE}
87 @$(CMD_TRACE) "compiling.. "
88 ifneq ($(filter meson,${HOST_STYLE}),)
89 PATH='$(HOST_PATH)' ninja -v -C $(WRKBUILD) $(MAKE_TRACE)
90 else ifneq (${HOST_STYLE},manual)
91 cd ${WRKBUILD} && env ${HOST_MAKE_ENV} ${MAKE} -j${ADK_MAKE_JOBS} -f ${MAKE_FILE} \
92 ${HOST_MAKE_FLAGS} ${HOST_ALL_TARGET} $(MAKE_TRACE)
93 endif
94 ${MAKE} host-build $(MAKE_TRACE)
95 touch $@
97 HOST_INSTALL_STYLE?= ${HOST_STYLE}
99 hostpost-install:
100 host-install: ${ALL_HOSTINST}
101 ${_HOST_FAKE_COOKIE}: ${_HOST_BUILD_COOKIE}
102 @$(CMD_TRACE) "installing.. "
103 @mkdir -p ${HOST_WRKINST}
104 ifeq (${HOST_INSTALL_STYLE},)
105 cd ${WRKBUILD} && env ${HOST_MAKE_ENV} ${MAKE} -f ${MAKE_FILE} \
106 DESTDIR='' ${HOST_FAKE_FLAGS} ${HOST_INSTALL_TARGET} $(MAKE_TRACE)
107 endif
108 ifeq (${HOST_INSTALL_STYLE},auto)
109 cd ${WRKBUILD} && env ${HOST_MAKE_ENV} ${MAKE} -f ${MAKE_FILE} \
110 DESTDIR='${STAGING_HOST_DIR}' ${HOST_FAKE_FLAGS} ${HOST_INSTALL_TARGET} $(MAKE_TRACE)
111 endif
112 ifeq (${HOST_INSTALL_STYLE},manual)
113 env ${HOST_MAKE_ENV} ${MAKE} host-install $(MAKE_TRACE)
114 endif
115 env ${HOST_MAKE_ENV} ${MAKE} hostpost-install $(MAKE_TRACE)
116 @find $(STAGING_HOST_DIR) -name \*.la -exec rm {} \;
117 @for a in $(STAGING_HOST_DIR)/usr/bin/*-config; do \
118 [[ -e $$a ]] || continue; \
119 $(SED) "s,^prefix=.*,prefix=$(STAGING_HOST_DIR)/usr," $$a; \
120 chmod u+x $(STAGING_HOST_DIR)/usr/bin/$$(basename $$a); \
121 done
122 touch $@
124 ${_HOST_COOKIE}:
125 exec ${MAKE} hostpackage
127 ifeq ($(HOST_LINUX_ONLY),)
128 hostpackage: ${ALL_HOSTDIRS}
129 @touch ${_HOST_COOKIE}
130 endif
132 hostclean:
133 @printf " ---> cleaning host package build directories and files.. "
134 -rm -rf ${STAGING_PKG_DIR}/stamps/${PKG_NAME}*-host ${WRKDIR}
135 @printf " done\n"