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:=0.8
  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:=afcd073d6d8d175eede2a28a7dd71b7150cb03290f99102261892c793f6b4cb1
  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))