ubox: update to Git HEAD (2024-04-26)
[openwrt/openwrt.git] / tools / bison / Makefile
1 #
2 # Copyright (C) 2008-2015 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
9 PKG_NAME:=bison
10 PKG_VERSION:=3.5.1
11
12 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
13 PKG_SOURCE_URL:=@GNU/$(PKG_NAME)
14 PKG_HASH:=3e7e097bd9709a2d5e40e69446b74b149733b3de864fadb7a9b54eca7b2a4dd0
15
16 HOST_BUILD_PARALLEL:=1
17
18 include $(INCLUDE_DIR)/host-build.mk
19
20 HOST_CONFIGURE_ARGS += --enable-threads=posix --disable-nls
21
22 define Host/Clean
23 -$(MAKE) -C $(HOST_BUILD_DIR) uninstall
24 $(call Host/Clean/Default)
25 endef
26
27 define Host/Install
28 $(call Host/Install/Default)
29 $(INSTALL_BIN) ./scripts/yacc $(STAGING_DIR_HOST)/bin/yacc
30 endef
31
32 $(eval $(call HostBuild))