Makefile 689 B

12345678910111213141516171819202122232425
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. include $(TOPDIR)/rules.mk
  4. PKG_NAME:= m4
  5. PKG_VERSION:= 1.4.17
  6. PKG_RELEASE:= 1
  7. PKG_MD5SUM:= a5e9954b1dae036762f7b13673a2cf76
  8. PKG_SITES:= http://www.gnu.org/software/m4/
  9. include ../rules.mk
  10. install: ${STAGING_HOST_DIR}/usr/bin/m4
  11. $(WRKBUILD)/.compiled: ${WRKDIST}/.prepared
  12. (cd ${WRKBUILD}; ./configure --prefix=$(STAGING_HOST_DIR)/usr)
  13. ${MAKE} -C ${WRKBUILD} CC='${CC_FOR_BUILD}'
  14. touch $@
  15. ${STAGING_HOST_DIR}/usr/bin/m4: $(WRKBUILD)/.compiled
  16. $(INSTALL_BIN) $(WRKBUILD)/src/m4 \
  17. ${STAGING_HOST_DIR}/usr/bin
  18. include $(TOPDIR)/mk/tools.mk