blob: 15a1cc9b97d4f7a9ac2d32db90eafe2ef58202c2 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001#
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
8include $(TOPDIR)/rules.mk
9
10PKG_NAME:=missing-macros
11PKG_RELEASE:=12
12
13include $(INCLUDE_DIR)/host-build.mk
14
15define Host/Configure
16endef
17
18define Host/Compile
19endef
20
21define Host/Install
22 $(INSTALL_DIR) $(STAGING_DIR_HOST)/share/aclocal
23 $(INSTALL_DATA) $(HOST_BUILD_DIR)/m4/*.m4 $(STAGING_DIR_HOST)/share/aclocal/
24 $(INSTALL_DIR) $(STAGING_DIR_HOST)/bin
25 $(INSTALL_BIN) $(HOST_BUILD_DIR)/bin/* $(STAGING_DIR_HOST)/bin/
26 $(LN) makeinfo $(STAGING_DIR_HOST)/bin/texi2any
27 $(LN) makeinfo $(STAGING_DIR_HOST)/bin/texi2pdf
28 $(LN) makeinfo $(STAGING_DIR_HOST)/bin/texi2dvi
29 $(LN) makeinfo $(STAGING_DIR_HOST)/bin/pdftexi2dvi
30 $(LN) makeinfo $(STAGING_DIR_HOST)/bin/texi2html
31endef
32
33$(eval $(call HostBuild))