defs.mk (14b841d4a8e6c25d964f5e3bbda379a1541a27ec) | defs.mk (9d45c24cc4078e0c2962ba28e5a726709fef2269) |
---|---|
1# $FreeBSD$ 2 3.include <src.opts.mk> 4 5WARNS?=1 6 7.if !defined(__BOOT_DEFS_MK__) 8__BOOT_DEFS_MK__=${MFILE} --- 132 unchanged lines hidden (view full) --- 141.endif 142 143.if ${MK_LOADER_FORCE_LE} != "no" 144.if ${MACHINE_ARCH} == "powerpc64" 145CFLAGS+= -mlittle-endian 146.endif 147.endif 148 | 1# $FreeBSD$ 2 3.include <src.opts.mk> 4 5WARNS?=1 6 7.if !defined(__BOOT_DEFS_MK__) 8__BOOT_DEFS_MK__=${MFILE} --- 132 unchanged lines hidden (view full) --- 141.endif 142 143.if ${MK_LOADER_FORCE_LE} != "no" 144.if ${MACHINE_ARCH} == "powerpc64" 145CFLAGS+= -mlittle-endian 146.endif 147.endif 148 |
149# 150# Have a sensible default 151# 152.if ${MK_FORTH} == "yes" 153LOADER_DEFAULT_INTERP?=4th 154.elif ${MK_LOADER_LUA} == "yes" 155LOADER_DEFAULT_INTERP?=lua 156.else 157LOADER_DEFAULT_INTERP?=simp 158.endif 159LOADER_INTERP?=${LOADER_DEFAULT_INTERP} 160 |
|
149# Make sure we use the machine link we're about to create 150CFLAGS+=-I. 151 152all: ${PROG} 153 154.if !defined(NO_OBJ) 155_ILINKS=machine 156.if ${MACHINE} != ${MACHINE_CPUARCH} && ${MACHINE} != "arm64" --- 36 unchanged lines hidden --- | 161# Make sure we use the machine link we're about to create 162CFLAGS+=-I. 163 164all: ${PROG} 165 166.if !defined(NO_OBJ) 167_ILINKS=machine 168.if ${MACHINE} != ${MACHINE_CPUARCH} && ${MACHINE} != "arm64" --- 36 unchanged lines hidden --- |