Makefile 507 B

12345678910111213141516171819202122
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. include $(TOPDIR)/rules.mk
  4. PKG_NAME:= mkcrypt
  5. PKG_VERSION:= 0.1
  6. PKG_RELEASE:= 1
  7. NO_DISTFILES:= 1
  8. include ../rules.mk
  9. $(WRKBUILD)/.compiled: ${WRKDIST}/.prepared
  10. $(HOSTCC) -o $(WRKBUILD)/mkcrypt mkcrypt.c
  11. touch $@
  12. $(WRKBUILD)/.installed: $(WRKBUILD)/.compiled
  13. $(INSTALL_BIN) $(WRKBUILD)/mkcrypt \
  14. ${STAGING_TOOLS}/bin
  15. touch $@
  16. include $(TOPDIR)/mk/tools.mk