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 $
3 # $DragonFly: src/sys/conf/kmod.mk,v 1.35 2008/08/27 16:35:19 hasso Exp $
5 # The include file <bsd.kmod.mk> handles installing Kernel Loadable Device
11 # CLEANFILES Additional files to remove for the clean and cleandir targets.
13 # KMOD The name of the kernel module to build.
15 # KMODDIR Base path for kernel modules (see kld(4)).
16 # [${DESTKERNDIR}/${DESTMODULESNAME}]
18 # KMODOWN KLD owner. [${BINOWN}]
20 # KMODGRP KLD group. [${BINGRP}]
22 # KMODMODE KLD mode. [${BINMODE}]
24 # KMODLOAD Command to load a kernel module [/sbin/kldload]
26 # KMODUNLOAD Command to unload a kernel module [/sbin/kldunload]
28 # PROG The name of the kernel module to build.
29 # If not supplied, ${KMOD}.o is used.
31 # SRCS List of source files
33 # DESTKERNDIR Change the tree where the kernel and the modules get
34 # installed. [/boot] ${DESTDIR} changes the root of the tree
35 # pointed to by ${DESTKERNDIR}.
37 # MFILES Optionally a list of interfaces used by the module.
38 # This file contains a default list of interfaces.
43 # install the kernel module and its manual pages; if the Makefile
44 # does not itself define the target install, the targets
45 # beforeinstall and afterinstall may also be used to cause
46 # actions immediately before and after the install target
55 # bsd.obj.mk: clean, cleandir and obj
56 # bsd.dep.mk: cleandepend, depend and tags
60 KMODLOAD?
= /sbin
/kldload
61 KMODUNLOAD?
= /sbin
/kldunload
63 KMODDIR?
= ${DESTKERNDIR}/${DESTMODULESNAME}
68 .
include <bsd.init.mk
>
70 .SUFFIXES
: .out .o .c .
cc .
cxx .C .y .l .s .S
72 CFLAGS
+= ${COPTS} -D_KERNEL
${CWARNFLAGS}
75 # Don't use any standard include directories.
76 # Since -nostdinc will annull any previous -I paths, we repeat all
77 # such paths after -nostdinc. It doesn't seem to be possible to
78 # add to the front of `make' variable.
80 # Don't use -I- anymore, source-relative includes are desireable.
81 _ICFLAGS
:= ${CFLAGS
:M-I
*}
82 CFLAGS
+= -nostdinc
${_ICFLAGS}
84 # Add -I paths for system headers. Individual KLD makefiles don't
85 # need any -I paths for this. Similar defaults for .PATH can't be
86 # set because there are no standard paths for non-headers.
88 # NOTE! Traditional architecture paths such as <i386/i386/blah.h>
89 # must run through the "machine_base" softlink using
90 # <machine_base/i386/blah.h>. An explicit cross-architecture path must
91 # operate relative to /usr/src/sys using e.g. <arch/i386/i386/blah.h>
95 # Add -I paths for headers in the kernel build directory
97 .if defined
(BUILDING_WITH_KERNEL
)
98 CFLAGS
+= -I
${BUILDING_WITH_KERNEL}
99 _MACHINE_FWD
= ${BUILDING_WITH_KERNEL}
101 .if defined
(MAKEOBJDIRPREFIX
)
102 _MACHINE_FWD
= ${MAKEOBJDIRPREFIX}/${SYSDIR}/forwarder_
${MACHINE_ARCH}
104 _MACHINE_FWD
= ${.OBJDIR
}/forwarder_
${MACHINE_ARCH}
105 CLEANDIRS
+= ${_MACHINE_FWD}
108 CFLAGS
+= -I
${_MACHINE_FWD}/include
109 .
include "kern.fwd.mk"
111 # Add a -I path to standard headers like <stddef.h>. Use a relative
112 # path to src/include if possible. If the @ symlink hasn't been built
113 # yet, then we can't tell if the relative path exists. Add both the
114 # potential relative path and an absolute path in that case.
116 .if exists
(@
/..
/include)
117 CFLAGS
+= -I@
/..
/include
119 CFLAGS
+= -I
${DESTDIR}/usr
/include
122 CFLAGS
+= -I@
/..
/include -I
${DESTDIR}/usr
/include
125 .if defined
(BUILDING_WITH_KERNEL
) && \
126 exists
(${BUILDING_WITH_KERNEL}/opt_global.h
)
127 CFLAGS
+= -include ${BUILDING_WITH_KERNEL}/opt_global.h
130 CFLAGS
+= ${DEBUG_FLAGS}
131 .if
${MACHINE_ARCH} == x86_64
132 CFLAGS
+= -fno-omit-frame-pointer
135 .
include <bsd.patch.mk
>
137 OBJS
+= ${SRCS
:N
*.h
:N
*.patch
:R
:S
/$/.o
/g
}
143 .if
${MACHINE_ARCH} != x86_64
145 ${LD} -Bshareable
${LDFLAGS} -o
${.TARGET
} ${KMOD}.kld
148 .if
${MACHINE_ARCH} != x86_64
150 ${LD} ${LDFLAGS} -r
-o
${.TARGET
} ${OBJS}
153 ${LD} ${LDFLAGS} -r
-d
-o
${.TARGET
} ${OBJS}
156 # links to platform and cpu architecture include files. If we are
157 # building with a kernel these already exist in the kernel build dir.
158 # '@' is a link to the system source.
159 .if defined
(BUILDING_WITH_KERNEL
)
162 _ILINKS
=@ machine_base machine cpu_base cpu
169 all: objwarn fwheaders
${PROG}
171 beforedepend
: fwheaders
172 fwheaders
: ${_ILINKS} ${FORWARD_HEADERS_COOKIE}
173 # Ensure that the links exist without depending on it when it exists which
174 # causes all the modules to be rebuilt when the directory pointed to changes.
175 .for _link in
${_ILINKS}
176 .if
!exists
(${.OBJDIR
}/${_link})
181 # Search for kernel source tree in standard places.
182 .for _dir in
${.CURDIR
}/..
/..
${.CURDIR
}/..
/..
/..
${.CURDIR
}/..
/..
/..
/..
/sys
/usr
/src
/sys
183 .if
!defined
(SYSDIR
) && exists
(${_dir}/kern
/)
187 .if
!defined
(SYSDIR
) ||
!exists
(${SYSDIR}/kern
)
188 .error
"can't find kernel source tree"
192 # path=`(cd $$path && /bin/pwd)` ;
195 @case
${.TARGET
} in \
197 path
=${SYSDIR}/platform
/${MACHINE_PLATFORM}/include ;; \
199 path
=${SYSDIR}/platform
/${MACHINE_PLATFORM} ;; \
201 path
=${SYSDIR}/cpu
/${MACHINE_ARCH}/include ;; \
203 path
=${SYSDIR}/cpu
/${MACHINE_ARCH} ;; \
207 path
=${.CURDIR
}/${MACHINE_ARCH} ;; \
209 ${ECHO} ${.TARGET
} "->" $$path ; \
210 ${LN} -s
$$path ${.TARGET
}
212 CLEANFILES
+= ${PROG} ${KMOD}.kld
${OBJS} ${_ILINKS} symb.tmp tmp.o
216 _INSTALLFLAGS
:= ${INSTALLFLAGS}
217 .for ie in
${INSTALLFLAGS_EDIT}
218 _INSTALLFLAGS
:= ${_INSTALLFLAGS
${ie}}
221 .if
!target
(realinstall
)
222 realinstall
: _kmodinstall
223 .ORDER
: beforeinstall _kmodinstall
225 .if defined
(INSTALLSTRIPPEDMODULES
)
226 ${INSTALL} -o
${KMODOWN} -g
${KMODGRP} -m
${KMODMODE} \
227 ${_INSTALLFLAGS} ${PROG} ${DESTDIR}${KMODDIR}
228 ${OBJCOPY} --strip-debug
${DESTDIR}${KMODDIR}/${PROG}
230 ${INSTALL} -o
${KMODOWN} -g
${KMODGRP} -m
${KMODMODE} \
231 ${_INSTALLFLAGS} ${PROG} ${DESTDIR}${KMODDIR}
233 .
endif # !target(realinstall)
235 .
include <bsd.links.mk
>
237 .
endif # !target(install)
241 ${KMODLOAD} -v .
/${KMOD}.ko
246 ${KMODUNLOAD} -v
${KMOD}
249 .for _src in
${SRCS
:Mopt_
*.h
} ${SRCS
:Muse_
*.h
}
252 .if defined
(BUILDING_WITH_KERNEL
) && exists
(${BUILDING_WITH_KERNEL}/${_src})
253 ${_src}: ${BUILDING_WITH_KERNEL}/${_src}
254 # we do not have to copy these files any more, the kernel build
255 # directory is included in the path now.
256 # cp ${BUILDING_WITH_KERNEL}/${_src} ${.TARGET}
260 .
endif # BUILDING_WITH_KERNEL
264 MFILES?
= kern
/bus_if.m kern
/device_if.m bus
/iicbus
/iicbb_if.m \
265 bus
/iicbus
/iicbus_if.m bus
/isa
/isa_if.m dev
/netif
/mii_layer
/miibus_if.m \
266 bus
/pccard
/card_if.m bus
/pccard
/power_if.m bus
/pci
/pci_if.m \
268 bus
/ppbus
/ppbus_if.m bus
/smbus
/smbus_if.m bus
/usb
/usb_if.m \
269 dev
/acpica5
/acpi_if.m dev
/disk
/nata
/ata_if.m \
270 dev
/sound
/pcm
/ac97_if.m dev
/sound
/pcm
/channel_if.m \
271 dev
/sound
/pcm
/feeder_if.m dev
/sound
/pcm
/mixer_if.m \
272 libiconv
/iconv_converter_if.m dev
/agp
/agp_if.m opencrypto
/cryptodev_if.m
274 .for _srcsrc in
${MFILES}
276 .for _src in
${SRCS
:M
${_srcsrc
:T
:R
}.
${_ext}}
281 ${_src}: @
/tools
/makeobjops.awk @
/${_srcsrc}
284 .if defined
(BUILDING_WITH_KERNEL
) && \
285 exists
(${BUILDING_WITH_KERNEL}/${_src})
287 awk
-f @
/tools
/makeobjops.awk
-- -${_ext} @
/${_srcsrc}
295 #.if ${SRCS:Mvnode_if.${_ext}} != ""
296 #CLEANFILES+= vnode_if.${_ext}
299 #vnode_if.${_ext}: @/tools/vnode_if.awk @/kern/vnode_if.src
301 # awk -f @/tools/vnode_if.awk -- -${_ext} @/kern/vnode_if.src
307 .
include <bsd.dep.mk
>
309 .if
!exists
(${DEPENDFILE})
310 ${OBJS}: ${SRCS
:M
*.h
}
313 .
include <bsd.obj.mk
>
314 .
include "bsd.kern.mk"
316 # Behaves like MODULE_OVERRIDE
317 .if defined
(KLD_DEPS
)
320 .for _mdep in
${KLD_DEPS}
321 cd
${SYSDIR}/${_mdep} && make
all
323 depend
: _kdeps_depend
325 .for _mdep in
${KLD_DEPS}
326 cd
${SYSDIR}/${_mdep} && make depend
328 install: _kdeps_install
330 .for _mdep in
${KLD_DEPS}
331 cd
${SYSDIR}/${_mdep} && make
install
335 .for _mdep in
${KLD_DEPS}
336 cd
${SYSDIR}/${_mdep} && make
clean