gpio-nct5104d: fix compilation with kernel 6.6
[openwrt/openwrt.git] / tools / missing-macros / Makefile
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_RELEASE:=12
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 $(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
31 endef
32
33 $(eval $(call HostBuild))