Makefile 607 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:= bc
  5. PKG_VERSION:= 1.06
  6. PKG_RELEASE:= 1
  7. PKG_MD5SUM:= d44b5dddebd8a7a7309aea6c36fda117
  8. PKG_SITES:= http://ftp.gnu.org/pub/gnu/bc/
  9. include ../rules.mk
  10. install: ${TOOLS_DIR}/bc
  11. $(WRKBUILD)/.compiled: ${WRKDIST}/.prepared
  12. (cd ${WRKBUILD}; ./configure)
  13. ${MAKE} -C ${WRKBUILD} CC='${CC_FOR_BUILD}'
  14. touch $@
  15. ${TOOLS_DIR}/bc: $(WRKBUILD)/.compiled
  16. $(INSTALL_BIN) $(WRKBUILD)/bc/bc \
  17. ${TOOLS_DIR}
  18. include $(TOPDIR)/mk/tools.mk