Makefile 583 B

12345678910111213141516171819202122232425262728
  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. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=missing-macros
  9. PKG_VERSION:=10
  10. include $(INCLUDE_DIR)/host-build.mk
  11. define Host/Configure
  12. endef
  13. define Host/Compile
  14. endef
  15. define Host/Install
  16. $(INSTALL_DIR) $(STAGING_DIR_HOST)/share/aclocal
  17. $(INSTALL_DATA) ./src/m4/*.m4 $(STAGING_DIR_HOST)/share/aclocal/
  18. $(INSTALL_DIR) $(STAGING_DIR_HOST)/bin
  19. $(INSTALL_BIN) ./src/bin/* $(STAGING_DIR_HOST)/bin/
  20. endef
  21. $(eval $(call HostBuild))