Makefile 638 B

123456789101112131415161718192021222324
  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 ${ADK_TOPDIR}/rules.mk
  4. PKG_NAME:= toolbox
  5. PKG_VERSION:= 1.0
  6. PKG_RELEASE:= 1
  7. PKG_DESCR:= openadk toolbox for very small systems
  8. PKG_SECTION:= base/apps
  9. NO_DISTFILES:= 1
  10. include ${ADK_TOPDIR}/mk/package.mk
  11. $(eval $(call PKG_template,TOOLBOX,toolbox,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  12. CONFIG_STYLE:= manual
  13. toolbox-install:
  14. $(INSTALL_DIR) $(IDIR_TOOLBOX)/bin
  15. $(CP) $(WRKINST)/bin/* $(IDIR_TOOLBOX)/bin
  16. include ${ADK_TOPDIR}/mk/pkg-bottom.mk