Makefile 769 B

1234567891011121314151617181920212223242526272829303132
  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:= mtd
  5. PKG_VERSION:= 1.0
  6. PKG_RELEASE:= 1
  7. PKG_DESCR:= MTD utility
  8. PKG_SECTION:= fs
  9. PKG_DFLT_MTD:= y if ADK_TARGET_WITH_MTD
  10. NO_DISTFILES:= 1
  11. include ${TOPDIR}/mk/package.mk
  12. $(eval $(call PKG_template,MTD,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  13. CONFIG_STYLE:= manual
  14. BUILD_STYLE:= manual
  15. INSTALL_STYLE:= manual
  16. do-build:
  17. ${TARGET_CC} -Wall ${TCPPFLAGS} ${TCFLAGS} \
  18. -o ${WRKBUILD}/mtd ${WRKBUILD}/mtd.c
  19. do-install:
  20. ${INSTALL_DIR} ${IDIR_MTD}/sbin
  21. ${INSTALL_BIN} ${WRKBUILD}/mtd ${IDIR_MTD}/sbin
  22. include ${TOPDIR}/mk/pkg-bottom.mk