OpenWrt – Blame information for rev 2
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
1 | office | 1 | # |
2 | # Copyright (C) 2010-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 | |||
8 | include $(TOPDIR)/rules.mk |
||
9 | |||
10 | PKG_NAME:=missing-macros |
||
11 | PKG_VERSION:=10 |
||
12 | |||
13 | include $(INCLUDE_DIR)/host-build.mk |
||
14 | |||
15 | define Host/Configure |
||
16 | endef |
||
17 | |||
18 | define Host/Compile |
||
19 | endef |
||
20 | |||
21 | define Host/Install |
||
22 | $(INSTALL_DIR) $(STAGING_DIR_HOST)/share/aclocal |
||
23 | $(INSTALL_DATA) ./src/m4/*.m4 $(STAGING_DIR_HOST)/share/aclocal/ |
||
24 | $(INSTALL_DIR) $(STAGING_DIR_HOST)/bin |
||
25 | $(INSTALL_BIN) ./src/bin/* $(STAGING_DIR_HOST)/bin/ |
||
26 | endef |
||
27 | |||
28 | $(eval $(call HostBuild)) |