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