Makefile 658 B

12345678910111213141516171819202122232425262728293031323334
  1. #
  2. # Copyright (C) 2008 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:=ocf-crypto-headers
  9. PKG_VERSION:=20080917
  10. PKG_RELEASE:=1
  11. PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)
  12. include $(INCLUDE_DIR)/package.mk
  13. define Package/ocf-crypto-headers
  14. SECTION:=utils
  15. CATEGORY:=Utilities
  16. TITLE:=OCF-Linux cryptodev header
  17. endef
  18. define Build/Configure
  19. endef
  20. define Build/Compile
  21. endef
  22. define Build/InstallDev
  23. mkdir -p $(1)/usr/include/crypto
  24. $(CP) ./src/cryptodev.h $(1)/usr/include/crypto
  25. endef
  26. $(eval $(call BuildPackage,ocf-crypto-headers))