123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- # This file is part of the OpenADK project. OpenADK is copyrighted
- # material, please see the LICENCE file in the top-level directory.
- host-extract: ${_HOST_PATCH_COOKIE}
- HOST_CONFIG_STYLE?= ${HOST_STYLE}
- hostpre-configure:
- host-configure:
- ${_HOST_CONFIGURE_COOKIE}: ${_HOST_PATCH_COOKIE}
- mkdir -p ${WRKBUILD}
- ifneq (,$(filter autogen,${AUTOTOOL_STYLE}))
- @$(CMD_TRACE) "autotooling.. "
- @cd ${WRKSRC}; env ${HOST_AUTOTOOL_ENV} $(BASH) autogen.sh $(MAKE_TRACE)
- endif
- ifneq (,$(filter autoreconf,${AUTOTOOL_STYLE}))
- cd ${WRKSRC}; env ${HOST_AUTOTOOL_ENV} autoreconf -vif $(MAKE_TRACE)
- @rm -rf ${WRKSRC}/autom4te.cache
- @touch ${WRKDIR}/.autoreconf_done
- endif
- @${MAKE} hostpre-configure $(MAKE_TRACE)
- ifeq (${HOST_CONFIG_STYLE},)
- @$(CMD_TRACE) "configuring.. "
- cd ${WRKBUILD}; \
- env ${HOST_CONFIGURE_ENV} \
- ${BASH} ${WRKSRC}/${CONFIGURE_PROG} \
- --prefix=${STAGING_HOST_DIR}/usr \
- --bindir=${STAGING_HOST_DIR}/usr/bin \
- --datadir=${STAGING_HOST_DIR}/usr/share \
- --mandir=${STAGING_HOST_DIR}/usr/share/man \
- --libdir=${STAGING_HOST_DIR}/usr/lib \
- --libexecdir=${STAGING_HOST_DIR}/usr/libexec \
- --sysconfdir=${STAGING_HOST_DIR}/etc \
- ${HOST_CONFIGURE_ARGS} $(MAKE_TRACE)
- endif
- ifeq (${HOST_CONFIG_STYLE},auto)
- @$(CMD_TRACE) "configuring.. "
- cd ${WRKBUILD}; \
- env ${HOST_CONFIGURE_ENV} \
- ${BASH} ${WRKSRC}/${CONFIGURE_PROG} \
- --program-prefix= \
- --program-suffix= \
- --prefix=/usr \
- --bindir=/usr/bin \
- --datadir=/usr/share \
- --mandir=/usr/share/man \
- --libdir=/usr/lib \
- --libexecdir=/usr/libexec \
- --localstatedir=/var \
- --sysconfdir=/etc \
- --disable-dependency-tracking \
- --disable-libtool-lock \
- --disable-nls \
- ${HOST_CONFIGURE_ARGS} $(MAKE_TRACE)
- endif
- ifeq (${HOST_CONFIG_STYLE},cmake)
- @$(CMD_TRACE) "configuring cmake.. "
- cd ${WRKBUILD}; PATH='${HOST_PATH}' \
- cmake -Wno-dev -DCMAKE_INSTALL_PREFIX:PATH=$(STAGING_HOST_DIR)/usr \
- ${HOST_CMAKE_FLAGS} ${WRKSRC} $(MAKE_TRACE)
- endif
- ifeq (${HOST_CONFIG_STYLE},meson)
- @$(CMD_TRACE) "configuring meson.. "
- cd ${WRKSRC}; PATH='${HOST_PATH}' \
- meson --prefix $(STAGING_HOST_DIR)/usr \
- --pkg-config-path $(STAGING_HOST_DIR)/usr/lib/pkgconfig \
- --buildtype release $(HOST_MESON_FLAGS) \
- $(WRKSRC) $(WRKBUILD) $(MAKE_TRACE)
- endif
- ifeq (${HOST_CONFIG_STYLE},perl)
- @$(CMD_TRACE) "configuring perl module.. "
- cd ${WRKBUILD}; \
- PATH='${HOST_PATH}' \
- PERL_MM_USE_DEFAULT=1 \
- PERL_AUTOINSTALL=--skipdeps \
- $(HOST_PERL_ENV) \
- perl-host Makefile.PL ${HOST_CONFIGURE_ARGS}
- endif
- ifeq (${HOST_CONFIG_STYLE},manual)
- @$(CMD_TRACE) "configuring.. "
- ${MAKE} host-configure $(MAKE_TRACE)
- endif
- touch $@
- host-build:
- ${_HOST_BUILD_COOKIE}: ${_HOST_CONFIGURE_COOKIE}
- @$(CMD_TRACE) "compiling.. "
- ifneq ($(filter meson,${HOST_STYLE}),)
- PATH='$(HOST_PATH)' ninja -v -C $(WRKBUILD) $(MAKE_TRACE)
- else ifneq (${HOST_STYLE},manual)
- cd ${WRKBUILD} && env ${HOST_MAKE_ENV} ${MAKE} -j${ADK_MAKE_JOBS} -f ${MAKE_FILE} \
- ${HOST_MAKE_FLAGS} ${HOST_ALL_TARGET} $(MAKE_TRACE)
- endif
- ${MAKE} host-build $(MAKE_TRACE)
- touch $@
- HOST_INSTALL_STYLE?= ${HOST_STYLE}
- hostpost-install:
- host-install: ${ALL_HOSTINST}
- ${_HOST_FAKE_COOKIE}: ${_HOST_BUILD_COOKIE}
- @$(CMD_TRACE) "installing.. "
- @mkdir -p ${HOST_WRKINST}
- ifeq (${HOST_INSTALL_STYLE},)
- cd ${WRKBUILD} && env ${HOST_MAKE_ENV} ${MAKE} -f ${MAKE_FILE} \
- DESTDIR='' ${HOST_FAKE_FLAGS} ${HOST_INSTALL_TARGET} $(MAKE_TRACE)
- endif
- ifeq (${HOST_INSTALL_STYLE},auto)
- cd ${WRKBUILD} && env ${HOST_MAKE_ENV} ${MAKE} -f ${MAKE_FILE} \
- DESTDIR='${STAGING_HOST_DIR}' ${HOST_FAKE_FLAGS} ${HOST_INSTALL_TARGET} $(MAKE_TRACE)
- endif
- ifeq (${HOST_INSTALL_STYLE},manual)
- env ${HOST_MAKE_ENV} ${MAKE} host-install $(MAKE_TRACE)
- endif
- env ${HOST_MAKE_ENV} ${MAKE} hostpost-install $(MAKE_TRACE)
- @find $(STAGING_HOST_DIR) -name \*.la -exec rm {} \;
- @for a in $(STAGING_HOST_DIR)/usr/bin/*-config; do \
- [[ -e $$a ]] || continue; \
- $(SED) "s,^prefix=.*,prefix=$(STAGING_HOST_DIR)/usr," $$a; \
- chmod u+x $(STAGING_HOST_DIR)/usr/bin/$$(basename $$a); \
- done
- touch $@
- ${_HOST_COOKIE}:
- exec ${MAKE} hostpackage
- ifeq ($(HOST_LINUX_ONLY),)
- hostpackage: ${ALL_HOSTDIRS}
- @touch ${_HOST_COOKIE}
- endif
- hostclean:
- @printf " ---> cleaning host package build directories and files.. "
- -rm -rf ${STAGING_PKG_DIR}/stamps/${PKG_NAME}*-host ${WRKDIR}
- @printf " done\n"
|