diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2014-01-08 12:58:54 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2014-01-08 12:58:54 +0100 |
commit | f3e1c3cf993b0ba54afa0ff9552ffefd39828b23 (patch) | |
tree | 1f5d52b7dff4a5c60e17c8f0fd7f7412c946a0ee /tools/bc | |
parent | d77656116191a166ed0477cf16830480a2406fc5 (diff) | |
parent | d93c019f2cfdf53be59f02600cc25c547ba24edc (diff) |
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'tools/bc')
-rw-r--r-- | tools/bc/Makefile | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/tools/bc/Makefile b/tools/bc/Makefile new file mode 100644 index 000000000..4f48f9fa9 --- /dev/null +++ b/tools/bc/Makefile @@ -0,0 +1,25 @@ +# This file is part of the OpenADK project. OpenADK is copyrighted +# material, please see the LICENCE file in the top-level directory. + +include $(TOPDIR)/rules.mk + +PKG_NAME:= bc +PKG_VERSION:= 1.06 +PKG_RELEASE:= 1 +PKG_MD5SUM:= d44b5dddebd8a7a7309aea6c36fda117 +PKG_SITES:= http://ftp.gnu.org/pub/gnu/bc/ + +include ../rules.mk + +install: ${TOOLS_DIR}/bc + +$(WRKBUILD)/.compiled: ${WRKDIST}/.prepared + (cd ${WRKBUILD}; ./configure) + ${MAKE} -C ${WRKBUILD} CC='${CC_FOR_BUILD}' + touch $@ + +${TOOLS_DIR}/bc: $(WRKBUILD)/.compiled + $(INSTALL_BIN) $(WRKBUILD)/bc/bc \ + ${TOOLS_DIR} + +include $(TOPDIR)/mk/tools.mk |