Makefile 640 B

12345678910111213141516171819202122232425262728
  1. #
  2. # Copyright (C) 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. include $(INCLUDE_DIR)/target.mk
  9. PKG_NAME:=fortify-headers
  10. PKG_VERSION:=1.1
  11. PKG_RELEASE=1
  12. PKG_SOURCE_URL:=http://dl.2f30.org/releases
  13. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
  14. PKG_HASH:=6ba5d860a2d2ba4c3346924b93930c34856eafe148bdbdf271ecab8065201fb6
  15. include $(INCLUDE_DIR)/toolchain-build.mk
  16. define Host/Compile
  17. true
  18. endef
  19. define Host/Install
  20. $(MAKE) -C $(HOST_BUILD_DIR) PREFIX="" DESTDIR="$(TOOLCHAIN_DIR)" install
  21. endef
  22. $(eval $(call HostBuild))