summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2014-03-01 10:33:19 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2014-03-01 10:33:19 +0100
commit7c7fd376e6d348658dc3f49ce30fe8478ab7690d (patch)
tree7f6c78177790b5a43ec4a86fa6b7cfc93c8f86e6 /tools
parent3b17b48643cb3f4f2874fe7018a8f30bee64a6e8 (diff)
bc needs flex, update TODO
Diffstat (limited to 'tools')
-rw-r--r--tools/Makefile2
-rw-r--r--tools/flex/Makefile25
2 files changed, 26 insertions, 1 deletions
diff --git a/tools/Makefile b/tools/Makefile
index 2ffa4971c..5331dbd8c 100644
--- a/tools/Makefile
+++ b/tools/Makefile
@@ -3,7 +3,7 @@
include $(TOPDIR)/rules.mk
-TARGETS:=adk mkcrypt cpio bc bzip2 m4 xz
+TARGETS:=adk mkcrypt cpio flex bc bzip2 m4 xz
ifeq ($(ADK_HOST_NEED_GENEXT2FS),y)
TARGETS+=genext2fs
diff --git a/tools/flex/Makefile b/tools/flex/Makefile
new file mode 100644
index 000000000..fc357d250
--- /dev/null
+++ b/tools/flex/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:= flex
+PKG_VERSION:= 2.5.35
+PKG_RELEASE:= 1
+PKG_MD5SUM:= 201d3f38758d95436cbc64903386de0b
+PKG_SITES:= ${MASTER_SITE_SOURCEFORGE:=${PKG_NAME}/}
+
+include ../rules.mk
+
+install: ${STAGING_HOST_DIR}/usr/bin/flex
+
+$(WRKBUILD)/.compiled: ${WRKDIST}/.prepared
+ (cd ${WRKBUILD}; ./configure)
+ ${MAKE} -C ${WRKBUILD} CC='${CC_FOR_BUILD}'
+ touch $@
+
+${STAGING_HOST_DIR}/usr/bin/flex: $(WRKBUILD)/.compiled
+ $(INSTALL_BIN) $(WRKBUILD)/flex \
+ ${STAGING_HOST_DIR}/usr/bin
+
+include $(TOPDIR)/mk/tools.mk