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
|
|
|
#
|
2000-04-05 10:13:05 +00:00
|
|
|
# MFILES Optionally a list of interfaces used by the module.
|
|
|
|
# This file contains a default list of interfaces.
|
1996-05-25 23:09:49 +00:00
|
|
|
#
|
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
|
|
|
#
|
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
|
|
|
#
|
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
|
2001-08-02 09:22:18 +00:00
|
|
|
OBJCOPY?= objcopy
|
1996-10-06 22:10:35 +00:00
|
|
|
|
2002-05-01 01:32:28 +00:00
|
|
|
.if defined(KMODDEPS)
|
2004-10-12 15:04:10 +00:00
|
|
|
.error "Do not use KMODDEPS on 5.0+; use MODULE_VERSION/MODULE_DEPEND"
|
2002-05-01 01:32:28 +00:00
|
|
|
.endif
|
|
|
|
|
2002-04-22 15:47:11 +00:00
|
|
|
.include <bsd.init.mk>
|
1994-09-14 21:59:28 +00:00
|
|
|
|
|
|
|
.SUFFIXES: .out .o .c .cc .cxx .C .y .l .s .S
|
|
|
|
|
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
|
|
|
.if ${CC} == "icc"
|
2004-03-14 01:29:05 +00:00
|
|
|
CFLAGS:= ${CFLAGS:C/(-x[^M^K^W]+)[MKW]+|-x[MKW]+/\1/}
|
2005-01-26 15:49:23 +00:00
|
|
|
.else
|
2005-02-11 21:04:20 +00:00
|
|
|
. if !empty(CFLAGS:M-O[23s]) && empty(CFLAGS:M-fno-strict-aliasing)
|
|
|
|
CFLAGS+= -fno-strict-aliasing
|
2005-02-09 07:34:22 +00:00
|
|
|
. endif
|
2007-11-19 16:24:10 +00:00
|
|
|
WERROR?= -Werror
|
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
|
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
|
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
|
|
|
.if ${CC} == "icc"
|
|
|
|
NOSTDINC= -X
|
|
|
|
.else
|
2009-01-26 17:00:58 +00:00
|
|
|
CSTD= c99
|
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
|
|
|
|
.endif
|
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.
|
2003-08-22 15:41:44 +00:00
|
|
|
CFLAGS+= -I. -I@
|
1998-01-26 20:36:38 +00:00
|
|
|
|
2004-06-13 17:29:10 +00:00
|
|
|
# Add -I path for altq headers as they are included via net/if_var.h
|
|
|
|
# for example.
|
|
|
|
CFLAGS+= -I@/contrib/altq
|
|
|
|
|
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
|
|
|
.if ${CC} != "icc"
|
2003-07-26 02:27:50 +00:00
|
|
|
CFLAGS+= -finline-limit=${INLINE_LIMIT}
|
2006-02-04 06:22:27 +00:00
|
|
|
CFLAGS+= --param inline-unit-growth=100
|
|
|
|
CFLAGS+= --param large-function-growth=1000
|
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
|
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.
|
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
|
|
|
.if ${CC} != "icc"
|
2002-01-10 03:52:01 +00:00
|
|
|
CFLAGS+= -fno-common
|
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
|
2002-01-10 03:52:01 +00:00
|
|
|
LDFLAGS+= -d -warn-common
|
|
|
|
|
2000-01-28 11:26:46 +00:00
|
|
|
CFLAGS+= ${DEBUG_FLAGS}
|
2004-08-29 02:00:50 +00:00
|
|
|
.if ${MACHINE_ARCH} == amd64
|
|
|
|
CFLAGS+= -fno-omit-frame-pointer
|
|
|
|
.endif
|
2000-01-28 11:26:46 +00:00
|
|
|
|
2005-01-06 06:26:11 +00:00
|
|
|
.if ${MACHINE_ARCH} == "powerpc"
|
2005-02-02 23:44:24 +00:00
|
|
|
CFLAGS+= -mlongcall -fno-omit-frame-pointer
|
2005-01-06 06:26:11 +00:00
|
|
|
.endif
|
|
|
|
|
2006-01-29 02:52:42 +00:00
|
|
|
.if defined(FIRMWS)
|
|
|
|
.if !exists(@)
|
|
|
|
${KMOD:S/$/.c/}: @
|
|
|
|
.else
|
|
|
|
${KMOD:S/$/.c/}: @/tools/fw_stub.awk
|
|
|
|
.endif
|
2007-03-02 11:42:56 +00:00
|
|
|
${AWK} -f @/tools/fw_stub.awk ${FIRMWS} -m${KMOD} -c${KMOD:S/$/.c/g} \
|
|
|
|
${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}
|
|
|
|
${_firmw:C/\:.*$/.fwo/}: ${_firmw:C/\:.*$//}
|
|
|
|
@${ECHO} ${_firmw:C/\:.*$//} ${.ALLSRC:M*${_firmw:C/\:.*$//}}
|
2006-02-20 01:08:33 +00:00
|
|
|
@if [ -e ${_firmw:C/\:.*$//} ]; then \
|
2007-07-11 01:20:37 +00:00
|
|
|
${LD} -b binary --no-warn-mismatch ${LDFLAGS} \
|
|
|
|
-r -d -o ${.TARGET} ${_firmw:C/\:.*$//}; \
|
2006-02-18 01:38:44 +00:00
|
|
|
else \
|
|
|
|
ln -s ${.ALLSRC:M*${_firmw:C/\:.*$//}} ${_firmw:C/\:.*$//}; \
|
2007-07-11 01:20:37 +00:00
|
|
|
${LD} -b binary --no-warn-mismatch ${LDFLAGS} \
|
|
|
|
-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
|
|
|
|
|
|
|
OBJS+= ${_firmw:C/\:.*$/.fwo/}
|
|
|
|
.endfor
|
|
|
|
.endif
|
|
|
|
|
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
|
|
|
|
FULLPROG= ${PROG}.debug
|
2005-10-27 17:39:03 +00:00
|
|
|
${PROG}: ${FULLPROG} ${PROG}.symbols
|
|
|
|
${OBJCOPY} --strip-debug --add-gnu-debuglink=${PROG}.symbols\
|
2005-10-27 14:24:45 +00:00
|
|
|
${FULLPROG} ${.TARGET}
|
2005-10-27 17:39:03 +00:00
|
|
|
${PROG}.symbols: ${FULLPROG}
|
2005-10-27 14:24:45 +00:00
|
|
|
${OBJCOPY} --only-keep-debug ${FULLPROG} ${.TARGET}
|
2001-08-02 09:22:18 +00:00
|
|
|
.endif
|
|
|
|
|
2004-05-16 20:11:38 +00:00
|
|
|
.if ${MACHINE_ARCH} != amd64
|
2001-08-02 09:22:18 +00:00
|
|
|
${FULLPROG}: ${KMOD}.kld
|
2000-05-01 18:06:49 +00:00
|
|
|
${LD} -Bshareable ${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
|
|
|
|
|
2004-05-16 20:11:38 +00:00
|
|
|
.if ${MACHINE_ARCH} != amd64
|
2000-05-01 18:06:49 +00:00
|
|
|
${KMOD}.kld: ${OBJS}
|
2004-05-16 20:11:38 +00:00
|
|
|
.else
|
|
|
|
${FULLPROG}: ${OBJS}
|
|
|
|
.endif
|
2002-01-10 03:52:01 +00:00
|
|
|
${LD} ${LDFLAGS} -r -d -o ${.TARGET} ${OBJS}
|
|
|
|
.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})
|
2004-10-12 15:04:10 +00:00
|
|
|
echo ${EXPORT_SYMS} > 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
|
|
|
|
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
|
2002-01-10 03:52:01 +00:00
|
|
|
.endif
|
2004-05-16 20:11:38 +00:00
|
|
|
.if !defined(DEBUG_FLAGS) && ${MACHINE_ARCH} == amd64
|
|
|
|
${OBJCOPY} --strip-debug ${.TARGET}
|
|
|
|
.endif
|
2002-01-10 03:52:01 +00:00
|
|
|
|
1998-01-26 20:36:38 +00:00
|
|
|
_ILINKS=@ machine
|
2005-04-03 04:56:05 +00:00
|
|
|
.if ${MACHINE} != ${MACHINE_ARCH}
|
|
|
|
_ILINKS+=${MACHINE_ARCH}
|
|
|
|
.endif
|
1994-09-14 21:59:28 +00:00
|
|
|
|
2002-04-23 09:03:56 +00:00
|
|
|
all: objwarn ${PROG}
|
1998-01-26 20:36:38 +00:00
|
|
|
|
2005-04-19 18:29:11 +00:00
|
|
|
beforedepend: ${_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.
|
|
|
|
.for _link in ${_ILINKS}
|
|
|
|
.if !exists(${.OBJDIR}/${_link})
|
|
|
|
${OBJS}: ${_link}
|
|
|
|
.endif
|
|
|
|
.endfor
|
1998-01-26 20:36:38 +00:00
|
|
|
|
2000-04-08 17:20:00 +00:00
|
|
|
# Search for kernel source tree in standard places.
|
|
|
|
.for _dir in ${.CURDIR}/../.. ${.CURDIR}/../../.. /sys /usr/src/sys
|
2004-03-06 21:23:56 +00:00
|
|
|
.if !defined(SYSDIR) && exists(${_dir}/kern/)
|
2000-04-08 17:20:00 +00:00
|
|
|
SYSDIR= ${_dir}
|
|
|
|
.endif
|
|
|
|
.endfor
|
2004-03-06 21:23:56 +00:00
|
|
|
.if !defined(SYSDIR) || !exists(${SYSDIR}/kern/)
|
2000-04-08 17:20:00 +00:00
|
|
|
.error "can't find kernel source tree"
|
|
|
|
.endif
|
|
|
|
|
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_ARCH}) \
|
2000-04-08 17:20:00 +00:00
|
|
|
path=${SYSDIR}/${MACHINE_ARCH}/include ;; \
|
2005-04-03 04:56:05 +00:00
|
|
|
machine) \
|
|
|
|
path=${SYSDIR}/${MACHINE}/include ;; \
|
2000-04-08 17:20:00 +00:00
|
|
|
@) \
|
|
|
|
path=${SYSDIR} ;; \
|
|
|
|
esac ; \
|
1998-10-16 03:32:03 +00:00
|
|
|
path=`(cd $$path && /bin/pwd)` ; \
|
|
|
|
${ECHO} ${.TARGET} "->" $$path ; \
|
2006-02-17 04:59:23 +00:00
|
|
|
ln -sf $$path ${.TARGET}
|
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)
|
2005-10-27 17:39:03 +00:00
|
|
|
CLEANFILES+= ${FULLPROG} ${PROG}.symbols
|
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)
|
|
|
|
realinstall: _kmodinstall
|
|
|
|
.ORDER: beforeinstall _kmodinstall
|
|
|
|
_kmodinstall:
|
2002-07-29 09:40:17 +00:00
|
|
|
${INSTALL} -o ${KMODOWN} -g ${KMODGRP} -m ${KMODMODE} \
|
2002-07-17 08:21:50 +00:00
|
|
|
${_INSTALLFLAGS} ${PROG} ${DESTDIR}${KMODDIR}
|
2005-10-27 14:24:45 +00:00
|
|
|
.if defined(DEBUG_FLAGS) && !defined(INSTALL_NODEBUG)
|
|
|
|
${INSTALL} -o ${KMODOWN} -g ${KMODGRP} -m ${KMODMODE} \
|
2005-10-27 17:39:03 +00:00
|
|
|
${_INSTALLFLAGS} ${PROG}.symbols ${DESTDIR}${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
|
|
|
|
_kldxref:
|
2002-05-14 07:49:12 +00:00
|
|
|
@if type kldxref >/dev/null 2>&1; then \
|
|
|
|
${ECHO} kldxref ${DESTDIR}${KMODDIR}; \
|
|
|
|
kldxref ${DESTDIR}${KMODDIR}; \
|
|
|
|
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)
|
2004-10-12 15:04:10 +00:00
|
|
|
load: ${PROG}
|
|
|
|
${KMODLOAD} -v ${.OBJDIR}/${PROG}
|
1994-09-14 21:59:28 +00:00
|
|
|
.endif
|
|
|
|
|
|
|
|
.if !target(unload)
|
1999-09-06 20:11:59 +00:00
|
|
|
unload:
|
2004-10-12 15:04:10 +00:00
|
|
|
${KMODUNLOAD} -v ${PROG}
|
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
|
|
|
|
2007-11-12 21:51:38 +00:00
|
|
|
MFILES?= dev/acpica/acpi_if.m dev/agp/agp_if.m dev/ata/ata_if.m dev/eisa/eisa_if.m \
|
This is the much rumoured ATA mkIII update that I've been working on.
o ATA is now fully newbus'd and split into modules.
This means that on a modern system you just load "atapci and ata"
to get the base support, and then one or more of the device
subdrivers "atadisk atapicd atapifd atapist ataraid".
All can be loaded/unloaded anytime, but for obvious reasons you
dont want to unload atadisk when you have mounted filesystems.
o The device identify part of the probe has been rewritten to fix
the problems with odd devices the old had, and to try to remove
so of the long delays some HW could provoke. Also probing is done
without the need for interrupts, making earlier probing possible.
o SATA devices can be hot inserted/removed and devices will be created/
removed in /dev accordingly.
NOTE: only supported on controllers that has this feature:
Promise and Silicon Image for now.
On other controllers the usual atacontrol detach/attach dance is
still needed.
o Support for "atomic" composite ATA requests used for RAID.
o ATA RAID support has been rewritten and and now supports these
metadata formats:
"Adaptec HostRAID"
"Highpoint V2 RocketRAID"
"Highpoint V3 RocketRAID"
"Intel MatrixRAID"
"Integrated Technology Express"
"LSILogic V2 MegaRAID"
"LSILogic V3 MegaRAID"
"Promise FastTrak"
"Silicon Image Medley"
"FreeBSD PseudoRAID"
o Update the ioctl API to match new RAID levels etc.
o Update atacontrol to know about the new RAID levels etc
NOTE: you need to recompile atacontrol with the new sys/ata.h,
make world will take care of that.
NOTE2: that rebuild is done differently from the old system as
the rebuild is now done piggybacked on read requests to the
array, so atacontrol simply starts a background "dd" to rebuild
the array.
o The reinit code has been worked over to be much more robust.
o The timeout code has been overhauled for races.
o Support of new chipsets.
o Lots of fixes for bugs found while doing the modulerization and
reviewing the old code.
Missing or changed features from current ATA:
o atapi-cd no longer has support for ATAPI changers. Todays its
much cheaper and alot faster to copy those CD images to disk
and serve them from there. Besides they dont seem to be made
anymore, maybe for that exact reason.
o ATA RAID can only read metadata from all the above metadata formats,
not write all of them (Promise and Highpoint V2 so far). This means
that arrays can be picked up from the BIOS, but they cannot be
created from FreeBSD. There is more to it than just the missing
write metadata support, those formats are not unique to a given
controller like Promise and Highpoint formats, instead they exist
for several types, and even worse, some controllers can have
different formats and its impossible to tell which one.
The outcome is that we cannot reliably create the metadata of those
formats and be sure the controller BIOS will understand it.
However write support is needed to update/fail/rebuild the arrays
properly so it sits fairly high on the TODO list.
o So far atapicam is not supported with these changes. When/if this
will change is up to the maintainer of atapi-cam so go there for
questions.
HW donated by: Webveveriet AS
HW donated by: Frode Nordahl
HW donated by: Yahoo!
HW donated by: Sentex
Patience by: Vife and my boys (and even the cats)
2005-03-30 12:03:40 +00:00
|
|
|
dev/iicbus/iicbb_if.m dev/iicbus/iicbus_if.m \
|
2007-02-03 06:46:11 +00:00
|
|
|
dev/mmc/mmcbr_if.m dev/mmc/mmcbus_if.m \
|
This is the much rumoured ATA mkIII update that I've been working on.
o ATA is now fully newbus'd and split into modules.
This means that on a modern system you just load "atapci and ata"
to get the base support, and then one or more of the device
subdrivers "atadisk atapicd atapifd atapist ataraid".
All can be loaded/unloaded anytime, but for obvious reasons you
dont want to unload atadisk when you have mounted filesystems.
o The device identify part of the probe has been rewritten to fix
the problems with odd devices the old had, and to try to remove
so of the long delays some HW could provoke. Also probing is done
without the need for interrupts, making earlier probing possible.
o SATA devices can be hot inserted/removed and devices will be created/
removed in /dev accordingly.
NOTE: only supported on controllers that has this feature:
Promise and Silicon Image for now.
On other controllers the usual atacontrol detach/attach dance is
still needed.
o Support for "atomic" composite ATA requests used for RAID.
o ATA RAID support has been rewritten and and now supports these
metadata formats:
"Adaptec HostRAID"
"Highpoint V2 RocketRAID"
"Highpoint V3 RocketRAID"
"Intel MatrixRAID"
"Integrated Technology Express"
"LSILogic V2 MegaRAID"
"LSILogic V3 MegaRAID"
"Promise FastTrak"
"Silicon Image Medley"
"FreeBSD PseudoRAID"
o Update the ioctl API to match new RAID levels etc.
o Update atacontrol to know about the new RAID levels etc
NOTE: you need to recompile atacontrol with the new sys/ata.h,
make world will take care of that.
NOTE2: that rebuild is done differently from the old system as
the rebuild is now done piggybacked on read requests to the
array, so atacontrol simply starts a background "dd" to rebuild
the array.
o The reinit code has been worked over to be much more robust.
o The timeout code has been overhauled for races.
o Support of new chipsets.
o Lots of fixes for bugs found while doing the modulerization and
reviewing the old code.
Missing or changed features from current ATA:
o atapi-cd no longer has support for ATAPI changers. Todays its
much cheaper and alot faster to copy those CD images to disk
and serve them from there. Besides they dont seem to be made
anymore, maybe for that exact reason.
o ATA RAID can only read metadata from all the above metadata formats,
not write all of them (Promise and Highpoint V2 so far). This means
that arrays can be picked up from the BIOS, but they cannot be
created from FreeBSD. There is more to it than just the missing
write metadata support, those formats are not unique to a given
controller like Promise and Highpoint formats, instead they exist
for several types, and even worse, some controllers can have
different formats and its impossible to tell which one.
The outcome is that we cannot reliably create the metadata of those
formats and be sure the controller BIOS will understand it.
However write support is needed to update/fail/rebuild the arrays
properly so it sits fairly high on the TODO list.
o So far atapicam is not supported with these changes. When/if this
will change is up to the maintainer of atapi-cam so go there for
questions.
HW donated by: Webveveriet AS
HW donated by: Frode Nordahl
HW donated by: Yahoo!
HW donated by: Sentex
Patience by: Vife and my boys (and even the cats)
2005-03-30 12:03:40 +00:00
|
|
|
dev/mii/miibus_if.m dev/ofw/ofw_bus_if.m \
|
2004-11-20 06:09:11 +00:00
|
|
|
dev/pccard/card_if.m dev/pccard/power_if.m dev/pci/pci_if.m \
|
|
|
|
dev/pci/pcib_if.m dev/ppbus/ppbus_if.m dev/smbus/smbus_if.m \
|
|
|
|
dev/sound/pcm/ac97_if.m dev/sound/pcm/channel_if.m \
|
2006-02-24 01:49:36 +00:00
|
|
|
dev/sound/pcm/feeder_if.m dev/sound/pcm/mixer_if.m \
|
Commit the new (old) midi framework. It's based in parts on the NetBSD code,
but large parts are rewritten by matk and tanimura.
This is old code, it's not maintained since 2003. We also don't have a
maintainer for this! Yuriy Tsibizov took it and uses it in his emu10kx
driver. Since the emu10kx driver will enter the tree "soon" (some bugs
have to be fixed after Yuriy return from his holidays), I add it here
already.
This also contains some changes to emu10k1 and cmi, so if you're lucky,
you can now make some kind of use of midi with those soundcards.
To all those poor souls which don't have such a card: feel free to send
patches, we don't have a maintainer for this.
To those which miss a specific feature in the midi code: feel free to
submit patches, we don't have a maintainer for this.
Oh, did I already told that it would be nice if someone would take care
of it? Maintainer with midi equipment wanted! :-)
If you get LOR's, submit a PR and notify multimedia@ please. If you get
panics, submit a PR with a backtrace (compile the sound system into your
kernel instead of using modules in this case) and notify multimedia@
please.
Written by: matk, tanimura
Submitted by: "Yuriy Tsibizov" <Yuriy.Tsibizov@gfk.ru>
Based upon: code from NetBSD
2006-05-27 16:32:05 +00:00
|
|
|
dev/sound/midi/mpu_if.m dev/sound/midi/mpufoi_if.m \
|
|
|
|
dev/sound/midi/synth_if.m dev/usb/usb_if.m isa/isa_if.m \
|
2008-10-02 14:45:29 +00:00
|
|
|
kern/bus_if.m kern/clock_if.m \
|
|
|
|
kern/cpufreq_if.m kern/device_if.m kern/serdev_if.m \
|
2007-03-21 03:42:51 +00:00
|
|
|
libkern/iconv_converter_if.m opencrypto/cryptodev_if.m \
|
2007-11-12 21:51:38 +00:00
|
|
|
pc98/pc98/canbus_if.m
|
2000-04-05 10:13:05 +00:00
|
|
|
|
|
|
|
.for _srcsrc in ${MFILES}
|
1999-11-28 17:52:40 +00:00
|
|
|
.for _ext in c h
|
|
|
|
.for _src in ${SRCS:M${_srcsrc:T:R}.${_ext}}
|
|
|
|
CLEANFILES+= ${_src}
|
|
|
|
.if !target(${_src})
|
2001-02-23 04:49:31 +00:00
|
|
|
.if !exists(@)
|
1999-11-28 17:52:40 +00:00
|
|
|
${_src}: @
|
2004-12-08 07:23:12 +00:00
|
|
|
.else
|
2002-05-01 03:28:14 +00:00
|
|
|
${_src}: @/tools/makeobjops.awk @/${_srcsrc}
|
1999-11-28 17:52:40 +00:00
|
|
|
.endif
|
2002-05-01 03:28:14 +00:00
|
|
|
${AWK} -f @/tools/makeobjops.awk @/${_srcsrc} -${_ext}
|
1999-11-28 17:52:40 +00:00
|
|
|
.endif
|
|
|
|
.endfor # _src
|
|
|
|
.endfor # _ext
|
|
|
|
.endfor # _srcsrc
|
|
|
|
|
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
|
2001-02-23 04:49:31 +00:00
|
|
|
.if !exists(@)
|
2004-12-08 03:54:32 +00:00
|
|
|
vnode_if.c: @
|
2004-12-08 07:23:12 +00:00
|
|
|
.else
|
2004-12-08 03:54:32 +00:00
|
|
|
vnode_if.c: @/tools/vnode_if.awk @/kern/vnode_if.src
|
1999-11-28 17:52:40 +00:00
|
|
|
.endif
|
2004-12-08 03:54:32 +00:00
|
|
|
${AWK} -f @/tools/vnode_if.awk @/kern/vnode_if.src -c
|
|
|
|
.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
|
2004-12-08 03:54:32 +00:00
|
|
|
.if !exists(@)
|
2004-12-08 07:23:12 +00:00
|
|
|
vnode_if.h vnode_if_newproto.h vnode_if_typedef.h: @
|
|
|
|
.else
|
|
|
|
vnode_if.h vnode_if_newproto.h vnode_if_typedef.h: @/tools/vnode_if.awk \
|
|
|
|
@/kern/vnode_if.src
|
2004-12-08 03:54:32 +00:00
|
|
|
.endif
|
2004-12-08 07:23:12 +00:00
|
|
|
vnode_if.h: vnode_if_newproto.h vnode_if_typedef.h
|
2004-12-08 03:54:32 +00:00
|
|
|
${AWK} -f @/tools/vnode_if.awk @/kern/vnode_if.src -h
|
2004-12-08 07:23:12 +00:00
|
|
|
vnode_if_newproto.h:
|
2004-12-08 03:54:32 +00:00
|
|
|
${AWK} -f @/tools/vnode_if.awk @/kern/vnode_if.src -p
|
2004-12-08 07:23:12 +00:00
|
|
|
vnode_if_typedef.h:
|
2004-12-08 03:54:32 +00:00
|
|
|
${AWK} -f @/tools/vnode_if.awk @/kern/vnode_if.src -q
|
1999-11-28 17:52:40 +00:00
|
|
|
.endif
|
1994-09-21 03:49:59 +00:00
|
|
|
|
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
|
2003-01-19 02:59:34 +00:00
|
|
|
.if !exists(@)
|
2004-05-26 00:53:10 +00:00
|
|
|
${_i}devs.h: @
|
2004-12-08 07:23:12 +00:00
|
|
|
.else
|
2004-05-26 00:53:10 +00:00
|
|
|
${_i}devs.h: @/tools/${_i}devs2h.awk @/dev/${_i}/${_i}devs
|
2003-01-19 02:59:34 +00:00
|
|
|
.endif
|
2004-05-26 00:53:10 +00:00
|
|
|
${AWK} -f @/tools/${_i}devs2h.awk @/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
|
|
|
|
2005-09-07 17:38:46 +00:00
|
|
|
.if !empty(SRCS:Musbdevs.h)
|
2004-12-30 23:22:08 +00:00
|
|
|
CLEANFILES+= usbdevs.h
|
|
|
|
.if !exists(@)
|
|
|
|
usbdevs.h: @
|
|
|
|
.else
|
|
|
|
usbdevs.h: @/tools/usbdevs2h.awk @/dev/usb/usbdevs
|
|
|
|
.endif
|
|
|
|
${AWK} -f @/tools/usbdevs2h.awk @/dev/usb/usbdevs -h
|
|
|
|
.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
|
|
|
|
.if !exists(@)
|
|
|
|
usbdevs_data.h: @
|
|
|
|
.else
|
|
|
|
usbdevs_data.h: @/tools/usbdevs2h.awk @/dev/usb/usbdevs
|
|
|
|
.endif
|
|
|
|
${AWK} -f @/tools/usbdevs2h.awk @/dev/usb/usbdevs -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
|
|
|
|
.if !exists(@)
|
|
|
|
acpi_quirks.h: @
|
2004-12-08 07:23:12 +00:00
|
|
|
.else
|
2004-06-24 06:29:22 +00:00
|
|
|
acpi_quirks.h: @/tools/acpi_quirks2h.awk @/dev/acpica/acpi_quirks
|
|
|
|
.endif
|
|
|
|
${AWK} -f @/tools/acpi_quirks2h.awk @/dev/acpica/acpi_quirks
|
|
|
|
.endif
|
|
|
|
|
2005-09-07 17:38:46 +00:00
|
|
|
.if !empty(SRCS:Massym.s)
|
2005-04-22 09:45:39 +00:00
|
|
|
CLEANFILES+= assym.s genassym.o
|
|
|
|
assym.s: genassym.o
|
2008-03-04 16:54:31 +00:00
|
|
|
.if defined(KERNBUILDDIR)
|
|
|
|
genassym.o: opt_global.h
|
|
|
|
.endif
|
2005-04-22 09:45:39 +00:00
|
|
|
.if !exists(@)
|
|
|
|
assym.s: @
|
|
|
|
.else
|
|
|
|
assym.s: @/kern/genassym.sh
|
|
|
|
.endif
|
|
|
|
sh @/kern/genassym.sh genassym.o > ${.TARGET}
|
2005-09-19 15:13:33 +00:00
|
|
|
.if exists(@)
|
|
|
|
genassym.o: @/${MACHINE_ARCH}/${MACHINE_ARCH}/genassym.c
|
|
|
|
.endif
|
|
|
|
genassym.o: @ machine ${SRCS:Mopt_*.h}
|
2005-04-22 09:45:39 +00:00
|
|
|
${CC} -c ${CFLAGS:N-fno-common} \
|
|
|
|
@/${MACHINE_ARCH}/${MACHINE_ARCH}/genassym.c
|
|
|
|
.endif
|
|
|
|
|
2002-03-17 10:05:57 +00:00
|
|
|
lint: ${SRCS}
|
2002-03-18 09:35:45 +00:00
|
|
|
${LINT} ${LINTKERNFLAGS} ${CFLAGS:M-[DILU]*} ${.ALLSRC:M*.c}
|
2002-03-17 10:05:57 +00:00
|
|
|
|
2008-03-04 16:54:31 +00:00
|
|
|
.if defined(KERNBUILDDIR)
|
|
|
|
${OBJS}: opt_global.h
|
|
|
|
.endif
|
|
|
|
|
1996-06-30 22:16:19 +00:00
|
|
|
.include <bsd.dep.mk>
|
1998-03-06 05:43:46 +00:00
|
|
|
|
2006-10-13 22:28:14 +00:00
|
|
|
cleandepend: cleanilinks
|
|
|
|
# .depend needs include links so we remove them only together.
|
|
|
|
cleanilinks:
|
|
|
|
rm -f ${_ILINKS}
|
|
|
|
|
2003-03-03 22:51:22 +00:00
|
|
|
.if !exists(${.OBJDIR}/${DEPENDFILE})
|
1998-03-06 07:28:01 +00:00
|
|
|
${OBJS}: ${SRCS:M*.h}
|
1998-03-06 05:43:46 +00:00
|
|
|
.endif
|
|
|
|
|
1998-06-09 02:55:40 +00:00
|
|
|
.include <bsd.obj.mk>
|
2003-02-28 22:12:17 +00:00
|
|
|
.include "kern.mk"
|