3c457ef28ed96e5a6fb8df61cfe6e2a8d8908a72
[openwrt/staging/yousong.git] / tools / mm-macros / Makefile
1 #
2 # Copyright (C) 2010-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
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=mm-macros
11 PKG_VERSION:=0.9.10
12
13 PKG_SOURCE_URL:=@GNOME/mm-common/0.9
14 PKG_SOURCE:=mm-common-$(PKG_VERSION).tar.xz
15 PKG_MD5SUM:=49dc47af8c89ce5b3c768306b9a0f922
16
17 HOST_BUILD_DIR:=$(BUILD_DIR_HOST)/mm-common-$(PKG_VERSION)
18
19 include $(INCLUDE_DIR)/host-build.mk
20
21 define Host/Install
22 $(INSTALL_DIR) $(STAGING_DIR_HOST)/share/aclocal
23 $(INSTALL_DATA) $(HOST_BUILD_DIR)/macros/*.m4 $(STAGING_DIR_HOST)/share/aclocal/
24 endef
25
26 define Host/Clean
27 -$(MAKE) -C $(HOST_BUILD_DIR) uninstall
28 $(call Host/Clean/Default)
29 endef
30
31 $(eval $(call HostBuild))