nasm.mk 686 B

123456789101112131415161718
  1. ############################################################
  2. #
  3. # nasm
  4. #
  5. # This is special case: nasm is used to build syslinux and
  6. # pxelinux. As these are for the target, we should cross-compile
  7. # nasm. However, as nasm is x86-only, there's no point in
  8. # cross-compiling it. So we just build it for the host. The target
  9. # variant is only provided because of a bug in the package
  10. # infrastructure that prevents having only a host variant.
  11. ############################################################
  12. NASM_VERSION=2.08.01
  13. NASM_SOURCE=nasm-$(NASM_VERSION).tar.bz2
  14. NASM_SITE=http://www.nasm.us/pub/nasm/releasebuilds/2.08.01/
  15. $(eval $(call AUTOTARGETS))
  16. $(eval $(call AUTOTARGETS,host))