Makefile 635 B

12345678910111213141516171819202122232425
  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:= genext2fs
  5. PKG_VERSION:= 1.4.1
  6. PKG_RELEASE:= 1
  7. PKG_MD5SUM:= b7b6361bcce2cedff1ae437fadafe53b
  8. PKG_SITES:= ${MASTER_SITE_SOURCEFORGE:=genext2fs/}
  9. include ../rules.mk
  10. install: ${BIN_DIR}/genext2fs
  11. $(WRKBUILD)/.compiled: ${WRKDIST}/.prepared
  12. (cd ${WRKBUILD}; ./configure)
  13. ${MAKE} -C ${WRKBUILD} CC='${CC_FOR_BUILD}'
  14. touch $@
  15. ${BIN_DIR}/genext2fs: $(WRKBUILD)/.compiled
  16. $(INSTALL_BIN) $(WRKBUILD)/genext2fs \
  17. ${BIN_DIR}
  18. include $(TOPDIR)/mk/tools.mk