Makefile 803 B

1234567891011121314151617181920212223242526272829303132333435
  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. include Makefile.inc
  5. include ../rules.mk
  6. include ${TOPDIR}/mk/buildhlp.mk
  7. ifeq (${ADK_MAKE_PARALLEL},y)
  8. GMP_MAKEOPTS+= -j${ADK_MAKE_JOBS}
  9. endif
  10. $(WRKBUILD)/.headers:
  11. $(WRKBUILD)/.configured:
  12. ifneq ($(OStype),Darwin)
  13. (cd $(WRKBUILD); cp configfsf.guess config.guess)
  14. endif
  15. (cd $(WRKBUILD); \
  16. ./configure \
  17. --prefix=$(STAGING_HOST_DIR) \
  18. --with-pic \
  19. --disable-shared \
  20. --enable-static \
  21. )
  22. touch $@
  23. $(WRKBUILD)/.compiled: $(WRKBUILD)/.configured
  24. $(MAKE) ${GMP_MAKEOPTS} -C $(WRKBUILD) all
  25. touch $@
  26. $(WRKBUILD)/.installed: $(WRKBUILD)/.compiled
  27. $(MAKE) -C $(WRKBUILD) install
  28. touch $@
  29. include ${TOPDIR}/mk/toolchain.mk