mtools: link statically
[openwrt/openwrt.git] / tools / mtools / Makefile
1 #
2 # Copyright (C) 2012 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:=mtools
10 PKG_VERSION:=4.0.17
11
12 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
13 PKG_SOURCE_URL:=@GNU/$(PKG_NAME)
14 PKG_MD5SUM:=231741ac95802d03aa32f44edb768171
15 PKG_CAT:=zcat
16
17 include $(INCLUDE_DIR)/host-build.mk
18
19 HOST_LDFLAGS += -static
20
21 define Host/Compile
22 $(MAKE) -C $(HOST_BUILD_DIR) mcopy
23 endef
24
25 define Host/Install
26 $(INSTALL_BIN) $(HOST_BUILD_DIR)/mcopy $(STAGING_DIR_HOST)/bin/
27 endef
28
29 define Host/Clean
30 rm -f $(STAGING_DIR_HOST)/bin/mcopy
31 endef
32
33 $(eval $(call HostBuild))