Makefile 647 B

123456789101112131415161718192021222324252627
  1. #
  2. # Copyright (C) 2008-2016 OpenWrt.org
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=flex
  9. PKG_VERSION:=2.6.1
  10. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
  11. PKG_SOURCE_URL:=https://github.com/westes/flex/releases/download/v$(PKG_VERSION)/
  12. PKG_HASH:=2c7a412c1640e094cb058d9b2fe39d450186e09574bebb7aa28f783e3799103f
  13. HOST_BUILD_PARALLEL:=1
  14. include $(INCLUDE_DIR)/host-build.mk
  15. HOST_CONFIGURE_ARGS += --disable-shared
  16. define Host/Clean
  17. -$(MAKE) -C $(HOST_BUILD_DIR) uninstall
  18. $(call Host/Clean/Default)
  19. endef
  20. $(eval $(call HostBuild))