summaryrefslogtreecommitdiff
path: root/tools/bc/Makefile
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2014-01-07 20:47:37 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2014-01-07 20:47:37 +0100
commitf04afc39aa98f84229d4fe0820ddc5349bb18b08 (patch)
tree17ddcfb50485fe02e69fb31b26e6cfe7216a5a30 /tools/bc/Makefile
parent5f3c1c3b4c75409070f8a0f32b27650ef4d39864 (diff)
parentb8a5f39cf7e72bc8e25bfbce24c0820ad43f0721 (diff)
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'tools/bc/Makefile')
-rw-r--r--tools/bc/Makefile25
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