Makefile 680 B

12345678910111213141516171819202122232425262728
  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:= xz
  5. PKG_VERSION:= 5.0.5
  6. PKG_RELEASE:= 1
  7. PKG_MD5SUM:= 1b7a781fb4cf8938842279bd3e8ee852
  8. PKG_SITES:= http://tukaani.org/xz/
  9. include ../rules.mk
  10. install: $(WRKBUILD)/.installed
  11. $(WRKBUILD)/.configured: ${WRKDIST}/.prepared
  12. (cd ${WRKBUILD}; ./configure --prefix=$(STAGING_HOST_DIR)/usr)
  13. @touch $@
  14. $(WRKBUILD)/.compiled: $(WRKBUILD)/.configured
  15. ${MAKE} -C ${WRKBUILD}
  16. @touch $@
  17. $(WRKBUILD)/.installed: $(WRKBUILD)/.compiled
  18. ${MAKE} -C ${WRKBUILD} install
  19. @touch $@
  20. include $(TOPDIR)/mk/tools.mk