Makefile.boot.pre 398 B

1234567891011
  1. # Various MK_* options need to be set before including bsd.prog.mk/bsd.lib.mk
  2. .if ${.MAKE.OS} != "FreeBSD"
  3. # Most Linux distributions don't ship the .a files for static linking.
  4. # And on macOS it is impossible to create a statically linked binary.
  5. NO_SHARED:= no
  6. MK_PIE:= no
  7. MK_RETPOLINE= no
  8. # There is no objcopy on macOS so we can't do the MK_DEBUG_FILES objcopy magic.
  9. MK_DEBUG_FILES:=no
  10. .endif