2010-12-21 23:50:41 +00:00
|
|
|
#
|
2015-01-13 07:48:52 +00:00
|
|
|
# Copyright (C) 2010-2015 OpenWrt.org
|
2010-12-21 23:50:41 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=missing-macros
|
2024-04-16 01:08:06 +00:00
|
|
|
PKG_RELEASE:=12
|
2010-12-21 23:50:41 +00:00
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/host-build.mk
|
|
|
|
|
|
|
|
define Host/Configure
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Host/Compile
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Host/Install
|
|
|
|
$(INSTALL_DIR) $(STAGING_DIR_HOST)/share/aclocal
|
2024-05-22 09:53:52 +00:00
|
|
|
$(INSTALL_DATA) $(HOST_BUILD_DIR)/m4/*.m4 $(STAGING_DIR_HOST)/share/aclocal/
|
2015-01-13 07:48:52 +00:00
|
|
|
$(INSTALL_DIR) $(STAGING_DIR_HOST)/bin
|
2024-05-22 09:53:52 +00:00
|
|
|
$(INSTALL_BIN) $(HOST_BUILD_DIR)/bin/* $(STAGING_DIR_HOST)/bin/
|
2024-04-16 01:08:06 +00:00
|
|
|
$(LN) makeinfo $(STAGING_DIR_HOST)/bin/texi2any
|
|
|
|
$(LN) makeinfo $(STAGING_DIR_HOST)/bin/texi2pdf
|
|
|
|
$(LN) makeinfo $(STAGING_DIR_HOST)/bin/texi2dvi
|
|
|
|
$(LN) makeinfo $(STAGING_DIR_HOST)/bin/pdftexi2dvi
|
|
|
|
$(LN) makeinfo $(STAGING_DIR_HOST)/bin/texi2html
|
2010-12-21 23:50:41 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call HostBuild))
|