Makefile 490 B

1234567891011121314151617181920212223242526
  1. #
  2. # Copyright (C) 2010-2011 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. endef
  19. $(eval $(call HostBuild))