1994-09-14 21:59:28 +00:00
|
|
|
# From: @(#)bsd.prog.mk 5.26 (Berkeley) 6/25/91
|
1999-08-28 00:22:10 +00:00
|
|
|
# $FreeBSD$
|
1996-05-25 23:09:49 +00:00
|
|
|
#
|
2004-10-12 15:04:10 +00:00
|
|
|
# The include file <bsd.kmod.mk> handles building and installing loadable
|
|
|
|
# kernel modules.
|
1996-05-25 23:09:49 +00:00
|
|
|
#
|
|
|
|
#
|
|
|
|
# +++ variables +++
|
|
|
|
#
|
|
|
|
# CLEANFILES Additional files to remove for the clean and cleandir targets.
|
|
|
|
#
|
2004-10-12 15:04:10 +00:00
|
|
|
# EXPORT_SYMS A list of symbols that should be exported from the module,
|
|
|
|
# or the name of a file containing a list of symbols, or YES
|
|
|
|
# to export all symbols. If not defined, no symbols are
|
|
|
|
# exported.
|
|
|
|
#
|
|
|
|
# KMOD The name of the kernel module to build.
|
1996-05-25 23:09:49 +00:00
|
|
|
#
|
2000-09-05 22:37:46 +00:00
|
|
|
# KMODDIR Base path for kernel modules (see kld(4)). [/boot/kernel]
|
1996-05-25 23:09:49 +00:00
|
|
|
#
|
2004-10-12 15:04:10 +00:00
|
|
|
# KMODOWN Module file owner. [${BINOWN}]
|
1996-05-25 23:09:49 +00:00
|
|
|
#
|
2004-10-12 15:04:10 +00:00
|
|
|
# KMODGRP Module file group. [${BINGRP}]
|
1996-05-25 23:09:49 +00:00
|
|
|
#
|
2004-10-12 15:04:10 +00:00
|
|
|
# KMODMODE Module file mode. [${BINMODE}]
|
1996-05-25 23:09:49 +00:00
|
|
|
#
|
1999-09-06 20:11:59 +00:00
|
|
|
# KMODLOAD Command to load a kernel module [/sbin/kldload]
|
1996-10-06 22:10:35 +00:00
|
|
|
#
|
1999-09-06 20:11:59 +00:00
|
|
|
# KMODUNLOAD Command to unload a kernel module [/sbin/kldunload]
|
1996-10-06 22:10:35 +00:00
|
|
|
#
|
2016-01-01 03:59:09 +00:00
|
|
|
# KMODISLOADED Command to check whether a kernel module is
|
|
|
|
# loaded [/sbin/kldstat -q -n]
|
|
|
|
#
|
2004-10-12 15:04:10 +00:00
|
|
|
# PROG The name of the kernel module to build.
|
|
|
|
# If not supplied, ${KMOD}.ko is used.
|
|
|
|
#
|
|
|
|
# SRCS List of source files.
|
|
|
|
#
|
2006-01-29 02:52:42 +00:00
|
|
|
# FIRMWS List of firmware images in format filename:shortname:version
|
|
|
|
#
|
2007-03-04 19:35:59 +00:00
|
|
|
# FIRMWARE_LICENSE
|
2007-03-02 11:42:56 +00:00
|
|
|
# Set to the name of the license the user has to agree on in
|
|
|
|
# order to use this firmware. See /usr/share/doc/legal
|
|
|
|
#
|
2004-10-12 15:04:10 +00:00
|
|
|
# DESTDIR The tree where the module gets installed. [not set]
|
2002-01-10 03:52:01 +00:00
|
|
|
#
|
2017-10-05 16:40:50 +00:00
|
|
|
# KERNBUILDDIR
|
|
|
|
# Set to the location of the kernel build directory where
|
|
|
|
# the opt_*.h files, .o's and kernel winds up.
|
|
|
|
#
|
1996-05-25 23:09:49 +00:00
|
|
|
# +++ targets +++
|
|
|
|
#
|
|
|
|
# install:
|
2002-01-11 15:49:02 +00:00
|
|
|
# install the kernel module; if the Makefile
|
1996-05-25 23:09:49 +00:00
|
|
|
# does not itself define the target install, the targets
|
|
|
|
# beforeinstall and afterinstall may also be used to cause
|
|
|
|
# actions immediately before and after the install target
|
|
|
|
# is executed.
|
|
|
|
#
|
2000-12-18 01:36:41 +00:00
|
|
|
# load:
|
2004-10-12 15:04:10 +00:00
|
|
|
# Load a module.
|
1996-05-25 23:09:49 +00:00
|
|
|
#
|
|
|
|
# unload:
|
2004-10-12 15:04:10 +00:00
|
|
|
# Unload a module.
|
1996-05-25 23:09:49 +00:00
|
|
|
#
|
2016-01-01 03:59:09 +00:00
|
|
|
# reload:
|
|
|
|
# Unload if loaded, then load.
|
|
|
|
#
|
1994-09-14 21:59:28 +00:00
|
|
|
|
2002-03-01 01:21:29 +00:00
|
|
|
AWK?= awk
|
1999-09-06 20:11:59 +00:00
|
|
|
KMODLOAD?= /sbin/kldload
|
|
|
|
KMODUNLOAD?= /sbin/kldunload
|
2016-01-01 03:59:09 +00:00
|
|
|
KMODISLOADED?= /sbin/kldstat -q -n
|
2001-08-02 09:22:18 +00:00
|
|
|
OBJCOPY?= objcopy
|
1996-10-06 22:10:35 +00:00
|
|
|
|
2002-04-22 15:47:11 +00:00
|
|
|
.include <bsd.init.mk>
|
2014-08-04 22:34:56 +00:00
|
|
|
# Grab all the options for a kernel build. For backwards compat, we need to
|
|
|
|
# do this after bsd.own.mk.
|
|
|
|
.include "kern.opts.mk"
|
2012-09-13 16:00:46 +00:00
|
|
|
.include <bsd.compiler.mk>
|
2015-02-18 15:25:19 +00:00
|
|
|
.include "config.mk"
|
1994-09-14 21:59:28 +00:00
|
|
|
|
2016-05-31 23:14:15 +00:00
|
|
|
# Search for kernel source tree in standard places.
|
2018-03-28 16:28:20 +00:00
|
|
|
.if empty(KERNBUILDDIR)
|
2018-03-28 16:28:24 +00:00
|
|
|
.if !defined(SYSDIR)
|
2018-04-12 20:48:17 +00:00
|
|
|
.for _dir in ${SRCTOP:D${SRCTOP}/sys} \
|
|
|
|
${.CURDIR}/../.. ${.CURDIR}/../../.. /sys /usr/src/sys
|
2018-04-12 20:27:57 +00:00
|
|
|
.if !defined(SYSDIR) && exists(${_dir}/kern/)
|
2016-05-31 23:14:15 +00:00
|
|
|
SYSDIR= ${_dir:tA}
|
|
|
|
.endif
|
|
|
|
.endfor
|
2018-03-28 16:28:24 +00:00
|
|
|
.endif
|
2016-05-31 23:14:15 +00:00
|
|
|
.if !defined(SYSDIR) || !exists(${SYSDIR}/kern/)
|
|
|
|
.error "can't find kernel source tree"
|
|
|
|
.endif
|
2018-03-28 16:28:20 +00:00
|
|
|
.endif
|
2016-05-31 23:14:15 +00:00
|
|
|
|
2015-07-03 01:50:26 +00:00
|
|
|
.SUFFIXES: .out .o .c .cc .cxx .C .y .l .s .S .m
|
1994-09-14 21:59:28 +00:00
|
|
|
|
2010-09-13 07:16:48 +00:00
|
|
|
# amd64 and mips use direct linking for kmod, all others use shared binaries
|
|
|
|
.if ${MACHINE_CPUARCH} != amd64 && ${MACHINE_CPUARCH} != mips
|
|
|
|
__KLD_SHARED=yes
|
|
|
|
.else
|
|
|
|
__KLD_SHARED=no
|
|
|
|
.endif
|
|
|
|
|
2011-04-19 18:09:21 +00:00
|
|
|
.if !empty(CFLAGS:M-O[23s]) && empty(CFLAGS:M-fno-strict-aliasing)
|
2005-02-11 21:04:20 +00:00
|
|
|
CFLAGS+= -fno-strict-aliasing
|
This are the build infrastructure changes to allow to use the
Intel C/C++ compiler (lang/icc) to build the kernel.
The icc CPUTYPE CFLAGS use icc v7 syntax, icc v8 moans about them, but
doesn't abort. They also produce CPU specific code (new instructions
of the CPU, not only CPU specific scheduling), so if you get coredumps
with signal 4 (SIGILL, illegal instruction) you've used the wrong
CPUTYPE.
Incarnations of this patch survive gcc compiles and my make universe.
I use it on my desktop.
To use it update share/mk, add
/usr/local/intel/compiler70/ia32/bin (icc v7, works)
or
/usr/local/intel_cc_80/bin (icc v8, doesn't work)
to your PATH, make sure you have a new kernel compile directory
(e.g. MYKERNEL_icc) and run
CFLAGS="-O2 -ip" CC=icc make depend
CFLAGS="-O2 -ip" CC=icc make
in it.
Don't compile with -ipo, the build infrastructure uses ld directly to
link the kernel and the modules, but -ipo needs the link step to be
performed with Intel's linker.
Problems with icc v8:
- panic: npx0 cannot be emulated on an SMP system
- UP: first start of /bin/sh results in a FP exception
Parts of this commit contains suggestions or submissions from
Marius Strobl <marius@alchemy.franken.de>.
Reviewed by: silence on -arch
Submitted by: netchild
2004-03-12 21:36:12 +00:00
|
|
|
.endif
|
2011-04-19 18:09:21 +00:00
|
|
|
WERROR?= -Werror
|
2005-01-26 15:49:23 +00:00
|
|
|
CFLAGS+= ${WERROR}
|
2004-08-13 14:30:26 +00:00
|
|
|
CFLAGS+= -D_KERNEL
|
1998-10-02 05:08:09 +00:00
|
|
|
CFLAGS+= -DKLD_MODULE
|
2018-07-02 19:48:38 +00:00
|
|
|
.if defined(MODULE_TIED)
|
|
|
|
CFLAGS+= -DKLD_TIED
|
|
|
|
.endif
|
1998-01-26 20:36:38 +00:00
|
|
|
|
1998-02-01 17:19:54 +00:00
|
|
|
# Don't use any standard or source-relative include directories.
|
This are the build infrastructure changes to allow to use the
Intel C/C++ compiler (lang/icc) to build the kernel.
The icc CPUTYPE CFLAGS use icc v7 syntax, icc v8 moans about them, but
doesn't abort. They also produce CPU specific code (new instructions
of the CPU, not only CPU specific scheduling), so if you get coredumps
with signal 4 (SIGILL, illegal instruction) you've used the wrong
CPUTYPE.
Incarnations of this patch survive gcc compiles and my make universe.
I use it on my desktop.
To use it update share/mk, add
/usr/local/intel/compiler70/ia32/bin (icc v7, works)
or
/usr/local/intel_cc_80/bin (icc v8, doesn't work)
to your PATH, make sure you have a new kernel compile directory
(e.g. MYKERNEL_icc) and run
CFLAGS="-O2 -ip" CC=icc make depend
CFLAGS="-O2 -ip" CC=icc make
in it.
Don't compile with -ipo, the build infrastructure uses ld directly to
link the kernel and the modules, but -ipo needs the link step to be
performed with Intel's linker.
Problems with icc v8:
- panic: npx0 cannot be emulated on an SMP system
- UP: first start of /bin/sh results in a FP exception
Parts of this commit contains suggestions or submissions from
Marius Strobl <marius@alchemy.franken.de>.
Reviewed by: silence on -arch
Submitted by: netchild
2004-03-12 21:36:12 +00:00
|
|
|
NOSTDINC= -nostdinc
|
2007-05-19 04:48:08 +00:00
|
|
|
CFLAGS:= ${CFLAGS:N-I*} ${NOSTDINC} ${INCLMAGIC} ${CFLAGS:M-I*}
|
2003-11-14 16:04:11 +00:00
|
|
|
.if defined(KERNBUILDDIR)
|
2005-10-05 10:05:55 +00:00
|
|
|
CFLAGS+= -DHAVE_KERNEL_OPTION_HEADERS -include ${KERNBUILDDIR}/opt_global.h
|
2003-11-14 16:04:11 +00:00
|
|
|
.endif
|
1998-02-01 17:19:54 +00:00
|
|
|
|
2004-10-12 15:04:10 +00:00
|
|
|
# Add -I paths for system headers. Individual module makefiles don't
|
1998-02-01 17:19:54 +00:00
|
|
|
# need any -I paths for this. Similar defaults for .PATH can't be
|
|
|
|
# set because there are no standard paths for non-headers.
|
2018-05-10 19:13:00 +00:00
|
|
|
CFLAGS+= -I. -I${SYSDIR} -I${SYSDIR}/contrib/ck/include
|
1998-01-26 20:36:38 +00:00
|
|
|
|
2014-05-10 16:38:09 +00:00
|
|
|
CFLAGS.gcc+= -finline-limit=${INLINE_LIMIT}
|
2015-02-17 19:27:14 +00:00
|
|
|
CFLAGS.gcc+= -fms-extensions
|
2014-05-10 16:38:09 +00:00
|
|
|
CFLAGS.gcc+= --param inline-unit-growth=100
|
|
|
|
CFLAGS.gcc+= --param large-function-growth=1000
|
2003-07-23 20:03:42 +00:00
|
|
|
|
2002-01-10 03:52:01 +00:00
|
|
|
# Disallow common variables, and if we end up with commons from
|
|
|
|
# somewhere unexpected, allocate storage for them in the module itself.
|
|
|
|
CFLAGS+= -fno-common
|
|
|
|
LDFLAGS+= -d -warn-common
|
|
|
|
|
2017-07-05 19:43:16 +00:00
|
|
|
.if defined(LINKER_FEATURES) && ${LINKER_FEATURES:Mbuild-id}
|
2019-05-14 18:10:32 +00:00
|
|
|
LDFLAGS+= --build-id=sha1
|
2017-06-23 15:57:58 +00:00
|
|
|
.endif
|
|
|
|
|
2000-01-28 11:26:46 +00:00
|
|
|
CFLAGS+= ${DEBUG_FLAGS}
|
2010-09-13 07:16:48 +00:00
|
|
|
.if ${MACHINE_CPUARCH} == amd64
|
2013-07-09 08:42:02 +00:00
|
|
|
CFLAGS+= -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer
|
2004-08-29 02:00:50 +00:00
|
|
|
.endif
|
2000-01-28 11:26:46 +00:00
|
|
|
|
2016-06-01 14:05:32 +00:00
|
|
|
.if ${MACHINE_CPUARCH} == "aarch64" || ${MACHINE_CPUARCH} == "riscv"
|
2015-10-08 17:42:08 +00:00
|
|
|
CFLAGS+= -fPIC
|
|
|
|
.endif
|
|
|
|
|
2015-01-02 03:20:13 +00:00
|
|
|
# Temporary workaround for PR 196407, which contains the fascinating details.
|
2015-01-04 00:12:30 +00:00
|
|
|
# Don't allow clang to use fpu instructions or registers in kernel modules.
|
2015-01-02 03:20:13 +00:00
|
|
|
.if ${MACHINE_CPUARCH} == arm
|
2016-01-07 22:44:58 +00:00
|
|
|
.if ${COMPILER_VERSION} < 30800
|
2015-01-02 03:20:13 +00:00
|
|
|
CFLAGS.clang+= -mllvm -arm-use-movt=0
|
2016-01-07 22:44:58 +00:00
|
|
|
.else
|
|
|
|
CFLAGS.clang+= -mno-movt
|
|
|
|
.endif
|
2015-01-04 00:12:30 +00:00
|
|
|
CFLAGS.clang+= -mfpu=none
|
2015-02-19 12:06:57 +00:00
|
|
|
CFLAGS+= -funwind-tables
|
2015-01-02 03:20:13 +00:00
|
|
|
.endif
|
|
|
|
|
2010-09-13 07:16:48 +00:00
|
|
|
.if ${MACHINE_CPUARCH} == powerpc
|
2005-02-02 23:44:24 +00:00
|
|
|
CFLAGS+= -mlongcall -fno-omit-frame-pointer
|
2005-01-06 06:26:11 +00:00
|
|
|
.endif
|
|
|
|
|
2010-09-13 07:16:48 +00:00
|
|
|
.if ${MACHINE_CPUARCH} == mips
|
2010-02-18 05:49:52 +00:00
|
|
|
CFLAGS+= -G0 -fno-pic -mno-abicalls -mlong-calls
|
|
|
|
.endif
|
|
|
|
|
2010-04-22 09:24:01 +00:00
|
|
|
.if defined(DEBUG) || defined(DEBUG_FLAGS)
|
|
|
|
CTFFLAGS+= -g
|
|
|
|
.endif
|
|
|
|
|
2006-01-29 02:52:42 +00:00
|
|
|
.if defined(FIRMWS)
|
2016-06-03 19:25:36 +00:00
|
|
|
${KMOD:S/$/.c/}: ${SYSDIR}/tools/fw_stub.awk
|
2014-11-06 16:48:37 +00:00
|
|
|
${AWK} -f ${SYSDIR}/tools/fw_stub.awk ${FIRMWS} -m${KMOD} -c${KMOD:S/$/.c/g} \
|
2007-03-02 11:42:56 +00:00
|
|
|
${FIRMWARE_LICENSE:C/.+/-l/}${FIRMWARE_LICENSE}
|
2006-01-29 02:52:42 +00:00
|
|
|
|
|
|
|
SRCS+= ${KMOD:S/$/.c/}
|
|
|
|
CLEANFILES+= ${KMOD:S/$/.c/}
|
|
|
|
|
|
|
|
.for _firmw in ${FIRMWS}
|
2016-06-03 19:25:36 +00:00
|
|
|
${_firmw:C/\:.*$/.fwo/:T}: ${_firmw:C/\:.*$//}
|
2006-01-29 02:52:42 +00:00
|
|
|
@${ECHO} ${_firmw:C/\:.*$//} ${.ALLSRC:M*${_firmw:C/\:.*$//}}
|
2006-02-20 01:08:33 +00:00
|
|
|
@if [ -e ${_firmw:C/\:.*$//} ]; then \
|
2014-07-26 04:38:09 +00:00
|
|
|
${LD} -b binary --no-warn-mismatch ${_LDFLAGS} \
|
2016-09-20 17:07:14 +00:00
|
|
|
-m ${LD_EMULATION} -r -d \
|
|
|
|
-o ${.TARGET} ${_firmw:C/\:.*$//}; \
|
2006-02-18 01:38:44 +00:00
|
|
|
else \
|
|
|
|
ln -s ${.ALLSRC:M*${_firmw:C/\:.*$//}} ${_firmw:C/\:.*$//}; \
|
2014-07-26 04:38:09 +00:00
|
|
|
${LD} -b binary --no-warn-mismatch ${_LDFLAGS} \
|
2016-09-20 17:07:14 +00:00
|
|
|
-m ${LD_EMULATION} -r -d \
|
|
|
|
-o ${.TARGET} ${_firmw:C/\:.*$//}; \
|
2006-02-18 01:38:44 +00:00
|
|
|
rm ${_firmw:C/\:.*$//}; \
|
|
|
|
fi
|
2006-01-29 02:52:42 +00:00
|
|
|
|
2016-05-10 03:34:20 +00:00
|
|
|
OBJS+= ${_firmw:C/\:.*$/.fwo/:T}
|
2006-01-29 02:52:42 +00:00
|
|
|
.endfor
|
|
|
|
.endif
|
|
|
|
|
2015-02-18 15:25:19 +00:00
|
|
|
# Conditionally include SRCS based on kernel config options.
|
|
|
|
.for _o in ${KERN_OPTS}
|
|
|
|
SRCS+=${SRCS.${_o}}
|
|
|
|
.endfor
|
|
|
|
|
2004-10-12 15:04:10 +00:00
|
|
|
OBJS+= ${SRCS:N*.h:R:S/$/.o/g}
|
1994-09-14 21:59:28 +00:00
|
|
|
|
|
|
|
.if !defined(PROG)
|
1998-10-02 04:51:10 +00:00
|
|
|
PROG= ${KMOD}.ko
|
|
|
|
.endif
|
1994-09-14 21:59:28 +00:00
|
|
|
|
2004-02-13 10:40:54 +00:00
|
|
|
.if !defined(DEBUG_FLAGS)
|
2001-08-02 09:22:18 +00:00
|
|
|
FULLPROG= ${PROG}
|
|
|
|
.else
|
2015-09-24 16:55:22 +00:00
|
|
|
FULLPROG= ${PROG}.full
|
2016-06-03 19:25:36 +00:00
|
|
|
${PROG}: ${FULLPROG} ${PROG}.debug
|
2015-09-24 16:55:22 +00:00
|
|
|
${OBJCOPY} --strip-debug --add-gnu-debuglink=${PROG}.debug \
|
2005-10-27 14:24:45 +00:00
|
|
|
${FULLPROG} ${.TARGET}
|
2016-06-03 19:25:36 +00:00
|
|
|
${PROG}.debug: ${FULLPROG}
|
2005-10-27 14:24:45 +00:00
|
|
|
${OBJCOPY} --only-keep-debug ${FULLPROG} ${.TARGET}
|
2001-08-02 09:22:18 +00:00
|
|
|
.endif
|
|
|
|
|
2010-09-13 07:16:48 +00:00
|
|
|
.if ${__KLD_SHARED} == yes
|
2016-06-03 19:25:36 +00:00
|
|
|
${FULLPROG}: ${KMOD}.kld
|
2017-06-21 00:33:16 +00:00
|
|
|
${LD} -m ${LD_EMULATION} -Bshareable -znotext ${_LDFLAGS} \
|
|
|
|
-o ${.TARGET} ${KMOD}.kld
|
2004-02-13 10:40:54 +00:00
|
|
|
.if !defined(DEBUG_FLAGS)
|
|
|
|
${OBJCOPY} --strip-debug ${.TARGET}
|
2004-02-13 09:39:45 +00:00
|
|
|
.endif
|
2004-05-16 20:11:38 +00:00
|
|
|
.endif
|
1994-09-14 21:59:28 +00:00
|
|
|
|
2002-01-11 01:11:44 +00:00
|
|
|
EXPORT_SYMS?= NO
|
|
|
|
.if ${EXPORT_SYMS} != YES
|
2004-10-12 15:04:10 +00:00
|
|
|
CLEANFILES+= export_syms
|
2002-01-10 03:52:01 +00:00
|
|
|
.endif
|
|
|
|
|
2010-09-13 07:16:48 +00:00
|
|
|
.if ${__KLD_SHARED} == yes
|
2016-06-03 19:25:36 +00:00
|
|
|
${KMOD}.kld: ${OBJS}
|
2004-05-16 20:11:38 +00:00
|
|
|
.else
|
2016-06-03 19:25:36 +00:00
|
|
|
${FULLPROG}: ${OBJS}
|
2004-05-16 20:11:38 +00:00
|
|
|
.endif
|
Fix dpcpu and vnet panics with complex types at the end of the section.
Apply a linker script when linking i386 kernel modules to apply padding
to a set_pcpu or set_vnet section. The padding value is kind-of random
and is used to catch modules not compiled with the linker-script, so
possibly still having problems leading to kernel panics.
This is needed as the code generated on certain architectures for
non-simple-types, e.g., an array can generate an absolute relocation
on the edge (just outside) the section and thus will not be properly
relocated. Adding the padding to the end of the section will ensure
that even absolute relocations of complex types will be inside the
section, if they are the last object in there and hence relocation will
work properly and avoid panics such as observed with carp.ko or ipsec.ko.
There is a rather lengthy discussion of various options to apply in
the mentioned PRs and their depends/blocks, and the review.
There seems no best solution working across multiple toolchains and
multiple version of them, so I took the liberty of taking one,
as currently our users (and our CI system) are hitting this on
just i386 and we need some solution. I wish we would have a proper
fix rather than another "hack".
Also backout r340009 which manually, temporarily fixed CARP before 12.0-R
"by chance" after a lead-up of various other link-elf.c and related fixes.
PR: 230857,238012
With suggestions from: arichardson (originally last year)
Tested by: lwhsu
Event: Waterloo Hackathon 2019
Reported by: lwhsu, olivier
MFC after: 6 weeks
Differential Revision: https://reviews.freebsd.org/D17512
2019-06-08 17:44:42 +00:00
|
|
|
.if !defined(FIRMWS) && (${MACHINE_CPUARCH} == "i386")
|
|
|
|
${LD} -m ${LD_EMULATION} ${_LDFLAGS} -r \
|
|
|
|
-T ${SYSDIR}/conf/ldscript.set_padding \
|
|
|
|
-d -o ${.TARGET} ${OBJS}
|
|
|
|
.else
|
2017-04-05 03:05:04 +00:00
|
|
|
${LD} -m ${LD_EMULATION} ${_LDFLAGS} -r -d -o ${.TARGET} ${OBJS}
|
Fix dpcpu and vnet panics with complex types at the end of the section.
Apply a linker script when linking i386 kernel modules to apply padding
to a set_pcpu or set_vnet section. The padding value is kind-of random
and is used to catch modules not compiled with the linker-script, so
possibly still having problems leading to kernel panics.
This is needed as the code generated on certain architectures for
non-simple-types, e.g., an array can generate an absolute relocation
on the edge (just outside) the section and thus will not be properly
relocated. Adding the padding to the end of the section will ensure
that even absolute relocations of complex types will be inside the
section, if they are the last object in there and hence relocation will
work properly and avoid panics such as observed with carp.ko or ipsec.ko.
There is a rather lengthy discussion of various options to apply in
the mentioned PRs and their depends/blocks, and the review.
There seems no best solution working across multiple toolchains and
multiple version of them, so I took the liberty of taking one,
as currently our users (and our CI system) are hitting this on
just i386 and we need some solution. I wish we would have a proper
fix rather than another "hack".
Also backout r340009 which manually, temporarily fixed CARP before 12.0-R
"by chance" after a lead-up of various other link-elf.c and related fixes.
PR: 230857,238012
With suggestions from: arichardson (originally last year)
Tested by: lwhsu
Event: Waterloo Hackathon 2019
Reported by: lwhsu, olivier
MFC after: 6 weeks
Differential Revision: https://reviews.freebsd.org/D17512
2019-06-08 17:44:42 +00:00
|
|
|
.endif
|
2014-05-10 16:39:15 +00:00
|
|
|
.if ${MK_CTF} != "no"
|
2011-11-29 08:38:47 +00:00
|
|
|
${CTFMERGE} ${CTFFLAGS} -o ${.TARGET} ${OBJS}
|
|
|
|
.endif
|
2002-01-10 03:52:01 +00:00
|
|
|
.if defined(EXPORT_SYMS)
|
2002-01-11 01:11:44 +00:00
|
|
|
.if ${EXPORT_SYMS} != YES
|
2002-01-10 03:52:01 +00:00
|
|
|
.if ${EXPORT_SYMS} == NO
|
2006-08-14 13:28:53 +00:00
|
|
|
:> export_syms
|
2002-01-10 03:52:01 +00:00
|
|
|
.elif !exists(${.CURDIR}/${EXPORT_SYMS})
|
2018-02-16 15:38:02 +00:00
|
|
|
echo -n "${EXPORT_SYMS:@s@$s${.newline}@}" > export_syms
|
2002-01-10 03:52:01 +00:00
|
|
|
.else
|
2004-10-12 15:04:10 +00:00
|
|
|
grep -v '^#' < ${EXPORT_SYMS} > export_syms
|
2002-01-10 03:52:01 +00:00
|
|
|
.endif
|
2015-12-17 00:02:53 +00:00
|
|
|
${AWK} -f ${SYSDIR}/conf/kmod_syms.awk ${.TARGET} \
|
2004-10-12 15:04:10 +00:00
|
|
|
export_syms | xargs -J% ${OBJCOPY} % ${.TARGET}
|
2002-01-11 01:11:44 +00:00
|
|
|
.endif
|
2018-02-16 15:38:02 +00:00
|
|
|
.endif # defined(EXPORT_SYMS)
|
2017-06-08 20:41:28 +00:00
|
|
|
.if defined(PREFIX_SYMS)
|
|
|
|
${AWK} -v prefix=${PREFIX_SYMS} -f ${SYSDIR}/conf/kmod_syms_prefix.awk \
|
|
|
|
${.TARGET} /dev/null | xargs -J% ${OBJCOPY} % ${.TARGET}
|
|
|
|
.endif
|
2010-09-13 07:16:48 +00:00
|
|
|
.if !defined(DEBUG_FLAGS) && ${__KLD_SHARED} == no
|
2004-05-16 20:11:38 +00:00
|
|
|
${OBJCOPY} --strip-debug ${.TARGET}
|
|
|
|
.endif
|
2002-01-10 03:52:01 +00:00
|
|
|
|
2019-03-20 20:42:44 +00:00
|
|
|
.if ${COMPILER_TYPE} == "clang" || \
|
|
|
|
(${COMPILER_TYPE} == "gcc" && ${COMPILER_VERSION} >= 60000)
|
|
|
|
_MAP_DEBUG_PREFIX= yes
|
|
|
|
.endif
|
|
|
|
|
2014-11-06 16:48:37 +00:00
|
|
|
_ILINKS=machine
|
2015-10-08 17:42:08 +00:00
|
|
|
.if ${MACHINE} != ${MACHINE_CPUARCH} && ${MACHINE} != "arm64"
|
2010-07-13 13:11:18 +00:00
|
|
|
_ILINKS+=${MACHINE_CPUARCH}
|
2005-04-03 04:56:05 +00:00
|
|
|
.endif
|
2010-11-01 17:34:04 +00:00
|
|
|
.if ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64"
|
|
|
|
_ILINKS+=x86
|
|
|
|
.endif
|
2014-07-24 00:25:25 +00:00
|
|
|
CLEANFILES+=${_ILINKS}
|
1994-09-14 21:59:28 +00:00
|
|
|
|
2016-02-16 02:09:48 +00:00
|
|
|
all: ${PROG}
|
1998-01-26 20:36:38 +00:00
|
|
|
|
2005-04-19 18:29:11 +00:00
|
|
|
beforedepend: ${_ILINKS}
|
2016-02-08 20:58:52 +00:00
|
|
|
beforebuild: ${_ILINKS}
|
2001-03-05 06:19:29 +00:00
|
|
|
|
2001-02-23 04:49:31 +00:00
|
|
|
# Ensure that the links exist without depending on it when it exists which
|
|
|
|
# causes all the modules to be rebuilt when the directory pointed to changes.
|
2019-03-20 20:42:44 +00:00
|
|
|
# Ensure that debug info references the path in the source tree.
|
2001-02-23 04:49:31 +00:00
|
|
|
.for _link in ${_ILINKS}
|
|
|
|
.if !exists(${.OBJDIR}/${_link})
|
2017-03-17 18:08:00 +00:00
|
|
|
OBJS_DEPEND_GUESS+= ${_link}
|
2001-02-23 04:49:31 +00:00
|
|
|
.endif
|
2019-03-20 20:42:44 +00:00
|
|
|
.if defined(_MAP_DEBUG_PREFIX)
|
|
|
|
.if ${_link} == "machine"
|
|
|
|
CFLAGS+= -fdebug-prefix-map=./machine=${SYSDIR}/${MACHINE}/include
|
|
|
|
.else
|
|
|
|
CFLAGS+= -fdebug-prefix-map=./${_link}=${SYSDIR}/${_link}/include
|
|
|
|
.endif
|
|
|
|
.endif
|
2001-02-23 04:49:31 +00:00
|
|
|
.endfor
|
1998-01-26 20:36:38 +00:00
|
|
|
|
2012-08-22 19:25:57 +00:00
|
|
|
.NOPATH: ${_ILINKS}
|
2014-03-04 14:00:49 +00:00
|
|
|
|
1998-10-16 03:32:03 +00:00
|
|
|
${_ILINKS}:
|
2000-04-08 17:20:00 +00:00
|
|
|
@case ${.TARGET} in \
|
2005-04-03 04:56:05 +00:00
|
|
|
machine) \
|
|
|
|
path=${SYSDIR}/${MACHINE}/include ;; \
|
2010-11-01 17:34:04 +00:00
|
|
|
*) \
|
2014-03-04 14:00:49 +00:00
|
|
|
path=${SYSDIR}/${.TARGET:T}/include ;; \
|
2000-04-08 17:20:00 +00:00
|
|
|
esac ; \
|
1998-10-16 03:32:03 +00:00
|
|
|
path=`(cd $$path && /bin/pwd)` ; \
|
2014-03-04 14:00:49 +00:00
|
|
|
${ECHO} ${.TARGET:T} "->" $$path ; \
|
2018-01-16 21:43:57 +00:00
|
|
|
ln -fns $$path ${.TARGET:T}
|
1998-01-26 20:36:38 +00:00
|
|
|
|
2006-10-13 22:28:14 +00:00
|
|
|
CLEANFILES+= ${PROG} ${KMOD}.kld ${OBJS}
|
2002-11-06 17:40:13 +00:00
|
|
|
|
2004-02-13 10:40:54 +00:00
|
|
|
.if defined(DEBUG_FLAGS)
|
2015-09-24 16:55:22 +00:00
|
|
|
CLEANFILES+= ${FULLPROG} ${PROG}.debug
|
2002-11-06 17:40:13 +00:00
|
|
|
.endif
|
1994-09-14 21:59:28 +00:00
|
|
|
|
|
|
|
.if !target(install)
|
|
|
|
|
2001-04-25 20:56:15 +00:00
|
|
|
_INSTALLFLAGS:= ${INSTALLFLAGS}
|
1999-07-31 20:27:33 +00:00
|
|
|
.for ie in ${INSTALLFLAGS_EDIT}
|
|
|
|
_INSTALLFLAGS:= ${_INSTALLFLAGS${ie}}
|
|
|
|
.endfor
|
|
|
|
|
2002-07-17 08:21:50 +00:00
|
|
|
.if !target(realinstall)
|
2015-09-24 16:55:22 +00:00
|
|
|
KERN_DEBUGDIR?= ${DEBUGDIR}
|
2002-07-17 08:21:50 +00:00
|
|
|
realinstall: _kmodinstall
|
|
|
|
.ORDER: beforeinstall _kmodinstall
|
2016-05-26 23:20:14 +00:00
|
|
|
_kmodinstall: .PHONY
|
2015-02-08 16:30:44 +00:00
|
|
|
${INSTALL} -T release -o ${KMODOWN} -g ${KMODGRP} -m ${KMODMODE} \
|
2015-10-17 05:49:07 +00:00
|
|
|
${_INSTALLFLAGS} ${PROG} ${DESTDIR}${KMODDIR}/
|
2012-07-03 05:01:00 +00:00
|
|
|
.if defined(DEBUG_FLAGS) && !defined(INSTALL_NODEBUG) && ${MK_KERNEL_SYMBOLS} != "no"
|
2015-02-08 16:30:44 +00:00
|
|
|
${INSTALL} -T debug -o ${KMODOWN} -g ${KMODGRP} -m ${KMODMODE} \
|
2015-10-17 05:49:07 +00:00
|
|
|
${_INSTALLFLAGS} ${PROG}.debug ${DESTDIR}${KERN_DEBUGDIR}${KMODDIR}/
|
2005-10-25 09:05:07 +00:00
|
|
|
.endif
|
2002-07-17 08:21:50 +00:00
|
|
|
|
|
|
|
.include <bsd.links.mk>
|
|
|
|
|
2003-01-21 05:52:48 +00:00
|
|
|
.if !defined(NO_XREF)
|
2002-07-17 08:21:50 +00:00
|
|
|
afterinstall: _kldxref
|
|
|
|
.ORDER: realinstall _kldxref
|
|
|
|
.ORDER: _installlinks _kldxref
|
2016-05-26 23:20:14 +00:00
|
|
|
_kldxref: .PHONY
|
2002-05-14 07:49:12 +00:00
|
|
|
@if type kldxref >/dev/null 2>&1; then \
|
2019-06-02 23:38:19 +00:00
|
|
|
${ECHO} ${KLDXREF_CMD} ${DESTDIR}${KMODDIR}; \
|
|
|
|
${KLDXREF_CMD} ${DESTDIR}${KMODDIR}; \
|
2002-05-14 07:49:12 +00:00
|
|
|
fi
|
2001-09-11 01:09:24 +00:00
|
|
|
.endif
|
2005-04-11 12:54:03 +00:00
|
|
|
.endif # !target(realinstall)
|
1994-09-14 21:59:28 +00:00
|
|
|
|
2005-04-11 12:54:03 +00:00
|
|
|
.endif # !target(install)
|
1994-09-14 21:59:28 +00:00
|
|
|
|
|
|
|
.if !target(load)
|
2016-05-26 23:20:14 +00:00
|
|
|
load: ${PROG} .PHONY
|
2004-10-12 15:04:10 +00:00
|
|
|
${KMODLOAD} -v ${.OBJDIR}/${PROG}
|
1994-09-14 21:59:28 +00:00
|
|
|
.endif
|
|
|
|
|
|
|
|
.if !target(unload)
|
2016-05-26 23:20:14 +00:00
|
|
|
unload: .PHONY
|
2016-01-01 03:59:09 +00:00
|
|
|
if ${KMODISLOADED} ${PROG} ; then ${KMODUNLOAD} -v ${PROG} ; fi
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.if !target(reload)
|
2016-05-26 23:20:14 +00:00
|
|
|
reload: unload load .PHONY
|
1998-10-16 03:32:03 +00:00
|
|
|
.endif
|
1994-09-21 03:49:59 +00:00
|
|
|
|
2003-11-16 01:41:38 +00:00
|
|
|
.if defined(KERNBUILDDIR)
|
|
|
|
.PATH: ${KERNBUILDDIR}
|
2004-10-12 15:04:10 +00:00
|
|
|
CFLAGS+= -I${KERNBUILDDIR}
|
2003-11-16 01:41:38 +00:00
|
|
|
.for _src in ${SRCS:Mopt_*.h}
|
|
|
|
CLEANFILES+= ${_src}
|
|
|
|
.if !target(${_src})
|
|
|
|
${_src}:
|
2006-02-17 04:59:23 +00:00
|
|
|
ln -sf ${KERNBUILDDIR}/${_src} ${.TARGET}
|
2003-11-16 01:41:38 +00:00
|
|
|
.endif
|
|
|
|
.endfor
|
|
|
|
.else
|
1999-11-28 17:52:40 +00:00
|
|
|
.for _src in ${SRCS:Mopt_*.h}
|
|
|
|
CLEANFILES+= ${_src}
|
|
|
|
.if !target(${_src})
|
|
|
|
${_src}:
|
2006-08-14 13:28:53 +00:00
|
|
|
:> ${.TARGET}
|
1999-11-28 17:52:40 +00:00
|
|
|
.endif
|
|
|
|
.endfor
|
2003-11-16 01:41:38 +00:00
|
|
|
.endif
|
1999-11-28 17:52:40 +00:00
|
|
|
|
2018-11-06 17:32:07 +00:00
|
|
|
# Add the sanitizer C flags
|
|
|
|
CFLAGS+= ${SAN_CFLAGS}
|
|
|
|
|
2019-02-23 21:14:00 +00:00
|
|
|
# Add the gcov flags
|
|
|
|
CFLAGS+= ${GCOV_CFLAGS}
|
|
|
|
|
2010-03-26 08:47:07 +00:00
|
|
|
# Respect configuration-specific C flags.
|
2017-07-19 22:06:35 +00:00
|
|
|
CFLAGS+= ${ARCH_FLAGS} ${CONF_CFLAGS}
|
2010-03-25 13:47:21 +00:00
|
|
|
|
2005-09-07 17:38:46 +00:00
|
|
|
.if !empty(SRCS:Mvnode_if.c)
|
2004-12-08 03:54:32 +00:00
|
|
|
CLEANFILES+= vnode_if.c
|
2014-11-06 16:48:37 +00:00
|
|
|
vnode_if.c: ${SYSDIR}/tools/vnode_if.awk ${SYSDIR}/kern/vnode_if.src
|
|
|
|
${AWK} -f ${SYSDIR}/tools/vnode_if.awk ${SYSDIR}/kern/vnode_if.src -c
|
2004-12-08 03:54:32 +00:00
|
|
|
.endif
|
|
|
|
|
2005-09-07 17:38:46 +00:00
|
|
|
.if !empty(SRCS:Mvnode_if.h)
|
2004-12-08 07:23:12 +00:00
|
|
|
CLEANFILES+= vnode_if.h vnode_if_newproto.h vnode_if_typedef.h
|
2014-11-06 16:48:37 +00:00
|
|
|
vnode_if.h vnode_if_newproto.h vnode_if_typedef.h: ${SYSDIR}/tools/vnode_if.awk \
|
|
|
|
${SYSDIR}/kern/vnode_if.src
|
2004-12-08 07:23:12 +00:00
|
|
|
vnode_if.h: vnode_if_newproto.h vnode_if_typedef.h
|
2014-11-06 16:48:37 +00:00
|
|
|
${AWK} -f ${SYSDIR}/tools/vnode_if.awk ${SYSDIR}/kern/vnode_if.src -h
|
2004-12-08 07:23:12 +00:00
|
|
|
vnode_if_newproto.h:
|
2014-11-06 16:48:37 +00:00
|
|
|
${AWK} -f ${SYSDIR}/tools/vnode_if.awk ${SYSDIR}/kern/vnode_if.src -p
|
2004-12-08 07:23:12 +00:00
|
|
|
vnode_if_typedef.h:
|
2014-11-06 16:48:37 +00:00
|
|
|
${AWK} -f ${SYSDIR}/tools/vnode_if.awk ${SYSDIR}/kern/vnode_if.src -q
|
1999-11-28 17:52:40 +00:00
|
|
|
.endif
|
1994-09-21 03:49:59 +00:00
|
|
|
|
2015-07-03 01:50:26 +00:00
|
|
|
# Build _if.[ch] from _if.m, and clean them when we're done.
|
2016-03-12 22:21:14 +00:00
|
|
|
# __MPATH defined in config.mk
|
2015-12-01 21:19:16 +00:00
|
|
|
_MFILES=${__MPATH:T:O}
|
|
|
|
_MPATH=${__MPATH:H:O:u}
|
2015-07-03 01:50:26 +00:00
|
|
|
.PATH.m: ${_MPATH}
|
2015-08-28 13:57:30 +00:00
|
|
|
.for _i in ${SRCS:M*_if.[ch]}
|
2015-12-01 21:19:16 +00:00
|
|
|
_MATCH=M${_i:R:S/$/.m/}
|
|
|
|
_MATCHES=${_MFILES:${_MATCH}}
|
|
|
|
.if !empty(_MATCHES)
|
|
|
|
CLEANFILES+= ${_i}
|
|
|
|
.endif
|
2015-08-28 13:57:30 +00:00
|
|
|
.endfor # _i
|
2016-06-03 19:25:36 +00:00
|
|
|
.m.c: ${SYSDIR}/tools/makeobjops.awk
|
2015-07-03 01:50:26 +00:00
|
|
|
${AWK} -f ${SYSDIR}/tools/makeobjops.awk ${.IMPSRC} -c
|
|
|
|
|
2016-06-03 19:25:36 +00:00
|
|
|
.m.h: ${SYSDIR}/tools/makeobjops.awk
|
2015-07-03 01:50:26 +00:00
|
|
|
${AWK} -f ${SYSDIR}/tools/makeobjops.awk ${.IMPSRC} -h
|
|
|
|
|
2004-12-30 23:22:08 +00:00
|
|
|
.for _i in mii pccard
|
2005-09-07 17:38:46 +00:00
|
|
|
.if !empty(SRCS:M${_i}devs.h)
|
2004-05-26 00:53:10 +00:00
|
|
|
CLEANFILES+= ${_i}devs.h
|
2016-06-03 19:25:36 +00:00
|
|
|
${_i}devs.h: ${SYSDIR}/tools/${_i}devs2h.awk ${SYSDIR}/dev/${_i}/${_i}devs
|
2014-11-06 16:48:37 +00:00
|
|
|
${AWK} -f ${SYSDIR}/tools/${_i}devs2h.awk ${SYSDIR}/dev/${_i}/${_i}devs
|
2003-01-19 02:59:34 +00:00
|
|
|
.endif
|
2004-05-26 00:53:10 +00:00
|
|
|
.endfor # _i
|
2003-01-19 02:59:34 +00:00
|
|
|
|
2016-05-08 19:14:05 +00:00
|
|
|
.if !empty(SRCS:Mbhnd_nvram_map.h)
|
|
|
|
CLEANFILES+= bhnd_nvram_map.h
|
|
|
|
bhnd_nvram_map.h: ${SYSDIR}/dev/bhnd/tools/nvram_map_gen.awk \
|
|
|
|
${SYSDIR}/dev/bhnd/tools/nvram_map_gen.sh \
|
2016-06-03 19:25:36 +00:00
|
|
|
${SYSDIR}/dev/bhnd/nvram/nvram_map
|
|
|
|
bhnd_nvram_map.h:
|
2016-05-13 16:35:37 +00:00
|
|
|
sh ${SYSDIR}/dev/bhnd/tools/nvram_map_gen.sh \
|
2016-05-08 19:14:05 +00:00
|
|
|
${SYSDIR}/dev/bhnd/nvram/nvram_map -h
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.if !empty(SRCS:Mbhnd_nvram_map_data.h)
|
|
|
|
CLEANFILES+= bhnd_nvram_map_data.h
|
|
|
|
bhnd_nvram_map_data.h: ${SYSDIR}/dev/bhnd/tools/nvram_map_gen.awk \
|
|
|
|
${SYSDIR}/dev/bhnd/tools/nvram_map_gen.sh \
|
2016-06-03 19:25:36 +00:00
|
|
|
${SYSDIR}/dev/bhnd/nvram/nvram_map
|
|
|
|
bhnd_nvram_map_data.h:
|
2016-05-13 16:35:37 +00:00
|
|
|
sh ${SYSDIR}/dev/bhnd/tools/nvram_map_gen.sh \
|
2016-05-08 19:14:05 +00:00
|
|
|
${SYSDIR}/dev/bhnd/nvram/nvram_map -d
|
|
|
|
.endif
|
|
|
|
|
2005-09-07 17:38:46 +00:00
|
|
|
.if !empty(SRCS:Musbdevs.h)
|
2004-12-30 23:22:08 +00:00
|
|
|
CLEANFILES+= usbdevs.h
|
2016-06-03 19:25:36 +00:00
|
|
|
usbdevs.h: ${SYSDIR}/tools/usbdevs2h.awk ${SYSDIR}/dev/usb/usbdevs
|
2014-11-06 16:48:37 +00:00
|
|
|
${AWK} -f ${SYSDIR}/tools/usbdevs2h.awk ${SYSDIR}/dev/usb/usbdevs -h
|
2004-12-30 23:22:08 +00:00
|
|
|
.endif
|
|
|
|
|
2005-09-07 17:38:46 +00:00
|
|
|
.if !empty(SRCS:Musbdevs_data.h)
|
2004-12-30 23:22:08 +00:00
|
|
|
CLEANFILES+= usbdevs_data.h
|
2016-06-03 19:25:36 +00:00
|
|
|
usbdevs_data.h: ${SYSDIR}/tools/usbdevs2h.awk ${SYSDIR}/dev/usb/usbdevs
|
2014-11-06 16:48:37 +00:00
|
|
|
${AWK} -f ${SYSDIR}/tools/usbdevs2h.awk ${SYSDIR}/dev/usb/usbdevs -d
|
2004-12-30 23:22:08 +00:00
|
|
|
.endif
|
|
|
|
|
2019-06-08 16:26:56 +00:00
|
|
|
.if !empty(SRCS:Msdiodevs.h)
|
|
|
|
CLEANFILES+= sdiodevs.h
|
|
|
|
sdiodevs.h: ${SYSDIR}/tools/sdiodevs2h.awk ${SYSDIR}/dev/sdio/sdiodevs
|
|
|
|
${AWK} -f ${SYSDIR}/tools/sdiodevs2h.awk ${SYSDIR}/dev/sdio/sdiodevs -h
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.if !empty(SRCS:Msdiodevs_data.h)
|
|
|
|
CLEANFILES+= sdiodevs_data.h
|
|
|
|
sdiodevs_data.h: ${SYSDIR}/tools/sdiodevs2h.awk ${SYSDIR}/dev/sdio/sdiodevs
|
|
|
|
${AWK} -f ${SYSDIR}/tools/sdiodevs2h.awk ${SYSDIR}/dev/sdio/sdiodevs -d
|
|
|
|
.endif
|
|
|
|
|
2005-09-07 17:38:46 +00:00
|
|
|
.if !empty(SRCS:Macpi_quirks.h)
|
2004-06-24 06:29:22 +00:00
|
|
|
CLEANFILES+= acpi_quirks.h
|
2016-06-03 19:25:36 +00:00
|
|
|
acpi_quirks.h: ${SYSDIR}/tools/acpi_quirks2h.awk ${SYSDIR}/dev/acpica/acpi_quirks
|
2014-11-06 16:48:37 +00:00
|
|
|
${AWK} -f ${SYSDIR}/tools/acpi_quirks2h.awk ${SYSDIR}/dev/acpica/acpi_quirks
|
2004-06-24 06:29:22 +00:00
|
|
|
.endif
|
|
|
|
|
2018-03-20 17:58:51 +00:00
|
|
|
.if !empty(SRCS:Massym.inc) || !empty(DPSRCS:Massym.inc)
|
2019-06-11 23:35:34 +00:00
|
|
|
CLEANFILES+= assym.inc genassym.o
|
2018-07-03 21:02:25 +00:00
|
|
|
DEPENDOBJS+= genassym.o
|
|
|
|
DPSRCS+= offset.inc
|
|
|
|
.endif
|
2018-07-03 21:15:47 +00:00
|
|
|
.if defined(MODULE_TIED)
|
|
|
|
DPSRCS+= offset.inc
|
|
|
|
.endif
|
2018-07-03 21:02:25 +00:00
|
|
|
.if !empty(SRCS:Moffset.inc) || !empty(DPSRCS:Moffset.inc)
|
|
|
|
CLEANFILES+= offset.inc genoffset.o
|
|
|
|
DEPENDOBJS+= genoffset.o
|
|
|
|
.endif
|
2018-03-20 17:58:51 +00:00
|
|
|
assym.inc: genassym.o
|
2018-07-03 02:50:07 +00:00
|
|
|
offset.inc: genoffset.o
|
2018-03-20 17:58:51 +00:00
|
|
|
assym.inc: ${SYSDIR}/kern/genassym.sh
|
2014-11-06 16:48:37 +00:00
|
|
|
sh ${SYSDIR}/kern/genassym.sh genassym.o > ${.TARGET}
|
2018-07-03 18:45:04 +00:00
|
|
|
genassym.o: ${SYSDIR}/${MACHINE}/${MACHINE}/genassym.c offset.inc
|
2016-06-03 19:25:36 +00:00
|
|
|
genassym.o: ${SRCS:Mopt_*.h}
|
2017-02-21 18:59:17 +00:00
|
|
|
${CC} -c ${CFLAGS:N-flto:N-fno-common} \
|
2015-04-16 22:34:10 +00:00
|
|
|
${SYSDIR}/${MACHINE}/${MACHINE}/genassym.c
|
2018-07-03 02:50:07 +00:00
|
|
|
offset.inc: ${SYSDIR}/kern/genoffset.sh genoffset.o
|
|
|
|
sh ${SYSDIR}/kern/genoffset.sh genoffset.o > ${.TARGET}
|
2018-07-03 18:45:04 +00:00
|
|
|
genoffset.o: ${SYSDIR}/kern/genoffset.c
|
2018-07-03 02:50:07 +00:00
|
|
|
genoffset.o: ${SRCS:Mopt_*.h}
|
|
|
|
${CC} -c ${CFLAGS:N-flto:N-fno-common} \
|
2018-07-03 18:45:04 +00:00
|
|
|
${SYSDIR}/kern/genoffset.c
|
2005-04-22 09:45:39 +00:00
|
|
|
|
2016-02-24 17:18:58 +00:00
|
|
|
CLEANDEPENDFILES+= ${_ILINKS}
|
2006-10-13 22:28:14 +00:00
|
|
|
# .depend needs include links so we remove them only together.
|
|
|
|
cleanilinks:
|
|
|
|
rm -f ${_ILINKS}
|
|
|
|
|
2016-02-24 17:19:05 +00:00
|
|
|
OBJS_DEPEND_GUESS+= ${SRCS:M*.h}
|
2018-07-04 00:18:36 +00:00
|
|
|
.if defined(KERNBUILDDIR)
|
|
|
|
OBJS_DEPEND_GUESS+= opt_global.h
|
|
|
|
.endif
|
2016-03-02 21:03:42 +00:00
|
|
|
|
|
|
|
.include <bsd.dep.mk>
|
2016-02-26 22:14:00 +00:00
|
|
|
.include <bsd.clang-analyze.mk>
|
1998-06-09 02:55:40 +00:00
|
|
|
.include <bsd.obj.mk>
|
2003-02-28 22:12:17 +00:00
|
|
|
.include "kern.mk"
|