diff options
Diffstat (limited to 'tools')
-rw-r--r-- | tools/Makefile | 2 | ||||
-rw-r--r-- | tools/flex/Makefile | 25 |
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 |