1 # From: @(#)bsd.prog.mk 5.26 (Berkeley) 6/25/91
2 # $FreeBSD: src/sys/conf/kmod.mk,v 1.82.2.15 2003/02/10 13:11:50 nyan Exp $
4 # The include file <bsd.kmod.mk> handles installing Kernel Loadable Device
9 # CLEANFILES Additional files to remove for the clean and cleandir targets.
11 # KMOD The name of the kernel module to build.
13 # KMODDIR Base path for kernel modules (see kld(4)).
16 # KMODOWN KLD owner. [${BINOWN}]
18 # KMODGRP KLD group. [${BINGRP}]
20 # KMODMODE KLD mode. [${BINMODE}]
22 # KMODLOAD Command to load a kernel module [/sbin/kldload]
24 # KMODUNLOAD Command to unload a kernel module [/sbin/kldunload]
26 # PROG The name of the kernel module to build.
27 # If not supplied, ${KMOD}.o is used.
29 # SRCS List of source files
31 # DESTKERNDIR Change the tree where the kernel and the modules get
32 # installed. [/boot] ${DESTDIR} changes the root of the tree
33 # pointed to by ${DESTKERNDIR}.
35 # MFILES Optionally a list of interfaces used by the module.
36 # This file contains a default list of interfaces.
38 # FIRMWS List of firmware images in format filename:shortname:version
41 # Set to the name of the license the user has to agree on in
42 # order to use this firmware. See /usr/share/doc/legal
47 # install the kernel module and its manual pages; if the Makefile
48 # does not itself define the target install, the targets
49 # beforeinstall and afterinstall may also be used to cause
50 # actions immediately before and after the install target
59 # bsd.obj.mk: clean, cleandir and obj
60 # bsd.dep.mk: cleandepend, depend and tags
64 KMODLOAD?
= /sbin
/kldload
65 KMODUNLOAD?
= /sbin
/kldunload
67 # KERNEL is needed when running make install directly from
71 KMODDIR?
= ${DESTKERNDIR}
76 .
include <bsd.init.mk
>
78 .SUFFIXES
: .out .o .c .
cc .
cxx .C .y .l .s .S
80 .if
!defined
(NO_WERROR
) && (${CCVER} == "gcc47" ||
${CCVER} == "gcc50")
84 WORLD_CCOPTLEVEL
= # XXX prevent world opt level affecting kernel modules
85 CFLAGS
+= ${COPTS} -D_KERNEL
${CWARNFLAGS} ${WERROR}
88 # Don't use any standard include directories.
89 # Since -nostdinc will annull any previous -I paths, we repeat all
90 # such paths after -nostdinc. It doesn't seem to be possible to
91 # add to the front of `make' variable.
93 # Don't use -I- anymore, source-relative includes are desireable.
94 _ICFLAGS
:= ${CFLAGS
:M-I
*}
95 CFLAGS
+= -nostdinc
${_ICFLAGS}
97 # Add -I paths for system headers. Individual KLD makefiles don't
98 # need any -I paths for this. Similar defaults for .PATH can't be
99 # set because there are no standard paths for non-headers.
101 # NOTE! Traditional architecture paths such as <i386/i386/blah.h>
102 # must run through the "machine_base" softlink using
103 # <machine_base/i386/blah.h>. An explicit cross-architecture path must
104 # operate relative to /usr/src/sys using e.g. <arch/i386/i386/blah.h>
108 # Add -I paths for headers in the kernel build directory
110 .if defined
(BUILDING_WITH_KERNEL
)
111 CFLAGS
+= -I
${BUILDING_WITH_KERNEL}
112 _MACHINE_FWD
= ${BUILDING_WITH_KERNEL}
114 .if defined
(MAKEOBJDIRPREFIX
)
115 _MACHINE_FWD
= ${MAKEOBJDIRPREFIX}/${SYSDIR}/forwarder_
${MACHINE_ARCH}
117 _MACHINE_FWD
= ${.OBJDIR
}/forwarder_
${MACHINE_ARCH}
118 CLEANDIRS
+= ${_MACHINE_FWD}
121 CFLAGS
+= -I
${_MACHINE_FWD}/include
123 # For <openssl/headerfile>
125 CFLAGS
+=-I@
/..
/crypto
/libressl
/include
127 .
include "kern.fwd.mk"
129 # Add a -I path to standard headers like <stddef.h>. Use a relative
130 # path to src/include if possible. If the @ symlink hasn't been built
131 # yet, then we can't tell if the relative path exists. Add both the
132 # potential relative path and an absolute path in that case.
134 .if exists
(@
/..
/include)
135 CFLAGS
+= -I@
/..
/include
137 CFLAGS
+= -I
${DESTDIR}/usr
/include
140 CFLAGS
+= -I@
/..
/include -I
${DESTDIR}/usr
/include
143 .if defined
(BUILDING_WITH_KERNEL
) && \
144 exists
(${BUILDING_WITH_KERNEL}/opt_global.h
)
145 CFLAGS
+= -DHAVE_KERNEL_OPTION_HEADERS
-include ${BUILDING_WITH_KERNEL}/opt_global.h
148 CFLAGS
+= ${DEBUG_FLAGS}
149 .if
${MACHINE_ARCH} == "x86_64"
150 CFLAGS
+= -fno-omit-frame-pointer
153 .
include <bsd.patch.mk
>
160 ${KMOD
:S
/$/.c
/}: @
/tools
/fw_stub.awk
162 ${AWK} -f @
/tools
/fw_stub.awk
${FIRMWS} -m
${KMOD} -c
${KMOD
:S
/$/.c
/g
} \
163 ${FIRMWARE_LICENSE
:C
/.
+/-l
/}${FIRMWARE_LICENSE}
165 SRCS
+= ${KMOD
:S
/$/.c
/}
166 CLEANFILES
+= ${KMOD
:S
/$/.c
/}
168 .for _firmw in
${FIRMWS}
169 ${_firmw
:C
/\
:.
*$/.fwo
/}: ${_firmw
:C
/\
:.
*$//}
170 @
${ECHO} ${_firmw
:C
/\
:.
*$//} ${.ALLSRC
:M
*${_firmw
:C
/\
:.
*$//}}
171 @if
[ -e
${_firmw
:C
/\
:.
*$//} ]; then \
172 ${LD} -b binary
--no-warn-mismatch
${LDFLAGS} \
173 -r
-d
-o
${.TARGET
} ${_firmw
:C
/\
:.
*$//}; \
175 ln
-s
${.ALLSRC
:M
*${_firmw
:C
/\
:.
*$//}} ${_firmw
:C
/\
:.
*$//}; \
176 ${LD} -b binary
--no-warn-mismatch
${LDFLAGS} \
177 -r
-d
-o
${.TARGET
} ${_firmw
:C
/\
:.
*$//}; \
178 rm ${_firmw
:C
/\
:.
*$//}; \
181 OBJS
+= ${_firmw
:C
/\
:.
*$/.fwo
/}
185 OBJS
+= ${SRCS
:N
*.h
:N
*.patch
:R
:S
/$/.o
/g
}
191 .if
${MACHINE_ARCH} != x86_64
193 ${CC} -nostdlib
-Wl
,--hash-style
=sysv \
194 -Wl
,-Bshareable
${LDFLAGS} -o
${.TARGET
} ${KMOD}.kld
197 .if
${MACHINE_ARCH} != x86_64
199 ${CC} -nostdlib
-Wl
,--hash-style
=sysv \
200 ${LDFLAGS} -r
-o
${.TARGET
} ${OBJS}
203 ${CC} -nostdlib
-Wl
,--hash-style
=sysv \
204 ${LDFLAGS} -r
-Wl
,-d
-o
${.TARGET
} ${OBJS}
207 # links to platform and cpu architecture include files. If we are
208 # building with a kernel these already exist in the kernel build dir.
209 # '@' is a link to the system source.
210 .if defined
(BUILDING_WITH_KERNEL
)
213 _ILINKS
=@ machine_base machine cpu_base cpu
220 all: objwarn fwheaders
${PROG}
222 beforedepend
: fwheaders
223 fwheaders
: ${_ILINKS} ${FORWARD_HEADERS_COOKIE}
224 # Ensure that the links exist without depending on it when it exists which
225 # causes all the modules to be rebuilt when the directory pointed to changes.
226 .for _link in
${_ILINKS}
227 .if
!exists
(${.OBJDIR
}/${_link})
232 # Search for kernel source tree in standard places.
233 .for _dir in
${.CURDIR
}/..
/..
${.CURDIR
}/..
/..
/..
${.CURDIR
}/..
/..
/..
/..
/sys
/usr
/src
/sys
234 .if
!defined
(SYSDIR
) && exists
(${_dir}/kern
/)
238 .if
!defined
(SYSDIR
) ||
!exists
(${SYSDIR}/kern
)
239 .error
"can't find kernel source tree"
243 # path=`(cd $$path && /bin/pwd)` ;
246 @case
${.TARGET
} in \
248 path
=${SYSDIR}/platform
/${MACHINE_PLATFORM}/include ;; \
250 path
=${SYSDIR}/platform
/${MACHINE_PLATFORM} ;; \
252 path
=${SYSDIR}/cpu
/${MACHINE_ARCH}/include ;; \
254 path
=${SYSDIR}/cpu
/${MACHINE_ARCH} ;; \
258 path
=${.CURDIR
}/${MACHINE_ARCH} ;; \
260 ${ECHO} ${.TARGET
} "->" $$path ; \
261 ${LN} -s
$$path ${.TARGET
}
263 CLEANFILES
+= ${PROG} ${KMOD}.kld
${OBJS} ${_ILINKS} symb.tmp tmp.o
267 _INSTALLFLAGS
:= ${INSTALLFLAGS}
268 .for ie in
${INSTALLFLAGS_EDIT}
269 _INSTALLFLAGS
:= ${_INSTALLFLAGS
${ie}}
272 .if
!target
(realinstall
)
273 realinstall
: _kmodinstall
274 .ORDER
: beforeinstall _kmodinstall
276 .if defined
(INSTALLSTRIPPEDMODULES
)
277 ${INSTALL} -o
${KMODOWN} -g
${KMODGRP} -m
${KMODMODE} \
278 ${_INSTALLFLAGS} ${PROG} ${DESTDIR}${KMODDIR}
279 ${OBJCOPY} --strip-debug
${DESTDIR}${KMODDIR}/${PROG}
281 ${INSTALL} -o
${KMODOWN} -g
${KMODGRP} -m
${KMODMODE} \
282 ${_INSTALLFLAGS} ${PROG} ${DESTDIR}${KMODDIR}
284 .
endif # !target(realinstall)
286 .
include <bsd.links.mk
>
288 .
endif # !target(install)
292 ${KMODLOAD} -v .
/${KMOD}.ko
297 ${KMODUNLOAD} -v
${KMOD}
300 .for _src in
${SRCS
:Mopt_
*.h
} ${SRCS
:Muse_
*.h
}
303 .if defined
(BUILDING_WITH_KERNEL
) && exists
(${BUILDING_WITH_KERNEL}/${_src})
304 ${_src}: ${BUILDING_WITH_KERNEL}/${_src}
305 # we do not have to copy these files any more, the kernel build
306 # directory is included in the path now.
307 # cp ${BUILDING_WITH_KERNEL}/${_src} ${.TARGET}
311 .
endif # BUILDING_WITH_KERNEL
315 MFILES?
= kern
/bus_if.m kern
/device_if.m bus
/iicbus
/iicbb_if.m \
316 bus
/iicbus
/iicbus_if.m bus
/isa
/isa_if.m dev
/netif
/mii_layer
/miibus_if.m \
317 bus
/pccard
/card_if.m bus
/pccard
/power_if.m bus
/pci
/pci_if.m \
319 bus
/ppbus
/ppbus_if.m bus
/smbus
/smbus_if.m bus
/u4b
/usb_if.m \
320 dev
/acpica
/acpi_if.m dev
/acpica
/acpi_wmi_if.m dev
/disk
/nata
/ata_if.m \
321 dev
/disk
/sdhci
/sdhci_if.m \
322 dev
/sound
/pci
/hda
/hdac_if.m \
323 dev
/sound
/pcm
/ac97_if.m dev
/sound
/pcm
/channel_if.m \
324 dev
/sound
/pcm
/feeder_if.m dev
/sound
/pcm
/mixer_if.m \
325 dev
/sound
/midi
/mpu_if.m dev
/sound
/midi
/mpufoi_if.m \
326 dev
/sound
/midi
/synth_if.m \
327 libiconv
/iconv_converter_if.m dev
/agp
/agp_if.m opencrypto
/cryptodev_if.m \
328 bus
/mmc
/mmcbus_if.m bus
/mmc
/mmcbr_if.m \
329 dev
/virtual
/virtio
/virtio
/virtio_bus_if.m \
330 dev
/virtual
/virtio
/virtio
/virtio_if.m \
331 dev
/misc
/coremctl
/coremctl_if.m kern
/cpu_if.m \
334 .for _srcsrc in
${MFILES}
336 .for _src in
${SRCS
:M
${_srcsrc
:T
:R
}.
${_ext}}
341 ${_src}: @
/tools
/makeobjops.awk @
/${_srcsrc}
344 .if defined
(BUILDING_WITH_KERNEL
) && \
345 exists
(${BUILDING_WITH_KERNEL}/${_src})
347 awk
-f @
/tools
/makeobjops.awk
-- -${_ext} @
/${_srcsrc}
355 #.if ${SRCS:Mvnode_if.${_ext}} != ""
356 #CLEANFILES+= vnode_if.${_ext}
359 #vnode_if.${_ext}: @/tools/vnode_if.awk @/kern/vnode_if.src
361 # awk -f @/tools/vnode_if.awk -- -${_ext} @/kern/vnode_if.src
365 .if
!empty
(SRCS
:Mmiidevs.h
)
366 CLEANFILES
+= miidevs.h
370 miidevs.h
: @
/tools
/miidevs2h.awk @
/dev
/netif
/mii_layer
/miidevs
372 ${AWK} -f @
/tools
/miidevs2h.awk @
/dev
/netif
/mii_layer
/miidevs
375 .if
!empty
(SRCS
:Mpccarddevs.h
)
376 CLEANFILES
+= pccarddevs.h
380 pccarddevs.h
: @
/tools
/pccarddevs2h.awk @
/bus
/pccard
/pccarddevs
382 ${AWK} -f @
/tools
/pccarddevs2h.awk @
/bus
/pccard
/pccarddevs
385 .if
!empty
(SRCS
:Mpcidevs.h
)
386 CLEANFILES
+= pcidevs.h
390 pcidevs.h
: @
/tools
/pcidevs2h.awk @
/bus
/pci
/pcidevs
392 ${AWK} -f @
/tools
/pcidevs2h.awk @
/bus
/pci
/pcidevs
395 .if
!empty
(SRCS
:Musbdevs.h
)
396 CLEANFILES
+= usbdevs.h
400 usbdevs.h
: @
/tools
/usbdevs2h.awk @
/bus
/u4b
/usbdevs
402 ${AWK} -f @
/tools
/usbdevs2h.awk @
/bus
/u4b
/usbdevs
-h
405 .if
!empty
(SRCS
:Musbdevs_data.h
)
406 CLEANFILES
+= usbdevs_data.h
410 usbdevs_data.h
: @
/tools
/usbdevs2h.awk @
/bus
/u4b
/usbdevs
412 ${AWK} -f @
/tools
/usbdevs2h.awk @
/bus
/u4b
/usbdevs
-d
415 .if
!empty
(SRCS
:Macpi_quirks.h
)
416 CLEANFILES
+= acpi_quirks.h
420 acpi_quirks.h
: @
/tools
/acpi_quirks2h.awk @
/dev
/acpica
/acpi_quirks
422 ${AWK} -f @
/tools
/acpi_quirks2h.awk @
/dev
/acpica
/acpi_quirks
425 .if
!empty
(SRCS
:Massym.s
)
426 CLEANFILES
+= assym.s genassym.o
428 .if defined
(BUILDING_WITH_KERNEL
)
429 genassym.o
: opt_global.h
434 assym.s
: @
/kern
/genassym.sh
436 sh @
/kern
/genassym.sh genassym.o
> ${.TARGET
}
438 genassym.o
: @
/platform
/${MACHINE_PLATFORM}/${MACHINE_ARCH}/genassym.c
440 genassym.o
: @
${SRCS
:Mopt_
*.h
}
441 ${CC} -c
${CFLAGS
:N-fno-common
:N-flto
:N-mcmodel
=small
} ${WERROR} \
442 @
/platform
/${MACHINE_PLATFORM}/${MACHINE_ARCH}/genassym.c
447 .
include <bsd.dep.mk
>
449 .if
!exists
(${DEPENDFILE})
450 ${OBJS}: ${SRCS
:M
*.h
}
453 .
include <bsd.obj.mk
>
454 .
include "bsd.kern.mk"
456 # Behaves like MODULE_OVERRIDE
457 .if defined
(KLD_DEPS
)
460 .for _mdep in
${KLD_DEPS}
461 cd
${SYSDIR}/${_mdep} && make
all
463 depend
: _kdeps_depend
465 .for _mdep in
${KLD_DEPS}
466 cd
${SYSDIR}/${_mdep} && make depend
468 install: _kdeps_install
470 .for _mdep in
${KLD_DEPS}
471 cd
${SYSDIR}/${_mdep} && make
install
475 .for _mdep in
${KLD_DEPS}
476 cd
${SYSDIR}/${_mdep} && make
clean