]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/conf/kmod.mk
This commit was generated by cvs2svn to compensate for changes in r81682,
[FreeBSD/FreeBSD.git] / sys / conf / kmod.mk
1 #       From: @(#)bsd.prog.mk   5.26 (Berkeley) 6/25/91
2 # $FreeBSD$
3 #
4 # The include file <bsd.kmod.mk> handles installing Kernel Loadable Device
5 # drivers (KLD's).
6 #
7 #
8 # +++ variables +++
9 #
10 # CLEANFILES    Additional files to remove for the clean and cleandir targets.
11 #
12 # DISTRIBUTION  Name of distribution. [bin]
13 #
14 # KMOD          The name of the kernel module to build.
15 #
16 # KMODDIR       Base path for kernel modules (see kld(4)). [/boot/kernel]
17 #
18 # KMODOWN       KLD owner. [${BINOWN}]
19 #
20 # KMODGRP       KLD group. [${BINGRP}]
21 #
22 # KMODMODE      KLD mode. [${BINMODE}]
23 #
24 # LINKS         The list of KLD links; should be full pathnames, the
25 #               linked-to file coming first, followed by the linked
26 #               file.  The files are hard-linked.  For example, to link
27 #               /modules/master and /modules/meister, use:
28 #
29 #                       LINKS=  /modules/master /modules/meister
30 #
31 # KMODLOAD      Command to load a kernel module [/sbin/kldload]
32 #
33 # KMODUNLOAD    Command to unload a kernel module [/sbin/kldunload]
34 #
35 # NOMAN         KLD does not have a manual page if set.
36 #
37 # PROG          The name of the kernel module to build.
38 #               If not supplied, ${KMOD}.o is used.
39 #
40 # SRCS          List of source files
41 #
42 # SUBDIR        A list of subdirectories that should be built as well.
43 #               Each of the targets will execute the same target in the
44 #               subdirectories.
45 #
46 # SYMLINKS      Same as LINKS, except it creates symlinks and the
47 #               linked-to pathname may be relative.
48 #
49 # DESTDIR, DISTDIR are set by other Makefiles (e.g. bsd.own.mk)
50 #
51 # MFILES        Optionally a list of interfaces used by the module.
52 #               This file contains a default list of interfaces.
53 #
54 # +++ targets +++
55 #
56 #       distribute:
57 #               This is a variant of install, which will
58 #               put the stuff into the right "distribution".
59 #
60 #       install:
61 #               install the program and its manual pages; if the Makefile
62 #               does not itself define the target install, the targets
63 #               beforeinstall and afterinstall may also be used to cause
64 #               actions immediately before and after the install target
65 #               is executed.
66 #
67 #       load:
68 #               Load KLD.
69 #
70 #       unload:
71 #               Unload KLD.
72 #
73 # bsd.obj.mk: clean, cleandir and obj
74 # bsd.dep.mk: cleandepend, depend and tags
75 # bsd.man.mk: maninstall
76 #
77
78 KMODLOAD?=      /sbin/kldload
79 KMODUNLOAD?=    /sbin/kldunload
80 OBJCOPY?=       objcopy
81
82 TARGET_ARCH?=   ${MACHINE_ARCH}
83
84 .if !target(__initialized__)
85 __initialized__:
86 .if exists(${.CURDIR}/../Makefile.inc)
87 .include "${.CURDIR}/../Makefile.inc"
88 .endif
89 .endif
90
91 .SUFFIXES: .out .o .c .cc .cxx .C .y .l .s .S
92
93 CFLAGS+=        ${COPTS} -D_KERNEL ${CWARNFLAGS}
94 CFLAGS+=        -DKLD_MODULE
95
96 # Don't use any standard or source-relative include directories.
97 # Since -nostdinc will annull any previous -I paths, we repeat all
98 # such paths after -nostdinc.  It doesn't seem to be possible to
99 # add to the front of `make' variable.
100 _ICFLAGS:=      ${CFLAGS:M-I*}
101 CFLAGS+=        -nostdinc -I- ${INCLMAGIC} ${_ICFLAGS}
102
103 # Add -I paths for system headers.  Individual KLD makefiles don't
104 # need any -I paths for this.  Similar defaults for .PATH can't be
105 # set because there are no standard paths for non-headers.
106 CFLAGS+=        -I. -I@ -I@/dev
107
108 # Add a -I path to standard headers like <stddef.h>.  Use a relative
109 # path to src/include if possible.  If the @ symlink hasn't been built
110 # yet, then we can't tell if the relative path exists.  Add both the
111 # potential relative path and an absolute path in that case.
112 .if exists(@)
113 .if exists(@/../include)
114 CFLAGS+=        -I@/../include
115 .else
116 CFLAGS+=        -I${DESTDIR}/usr/include
117 .endif
118 .else # !@
119 CFLAGS+=        -I@/../include -I${DESTDIR}/usr/include
120 .endif # @
121
122 CFLAGS+=        ${DEBUG_FLAGS}
123
124 .if ${OBJFORMAT} == elf
125 CLEANFILES+=    setdef0.c setdef1.c setdefs.h
126 CLEANFILES+=    setdef0.o setdef1.o
127 .endif
128
129 OBJS+=  ${SRCS:N*.h:R:S/$/.o/g}
130
131 .if !defined(PROG)
132 PROG=   ${KMOD}.ko
133 .endif
134
135 .if !defined(DEBUG)
136 FULLPROG=       ${PROG}
137 .else
138 FULLPROG=       ${PROG}.debug
139 ${PROG}: ${FULLPROG}
140         ${OBJCOPY} --strip-debug ${FULLPROG} ${PROG}
141 .endif
142
143 ${FULLPROG}: ${KMOD}.kld
144         ${LD} -Bshareable ${LDFLAGS} -o ${.TARGET} ${KMOD}.kld
145
146 ${KMOD}.kld: ${OBJS}
147         ${LD} ${LDFLAGS} -r -o ${.TARGET} ${OBJS}
148
149 .if !defined(NOMAN)
150 .if 0
151 MAN?=   ${KMOD}.4
152 .endif
153 .include <bsd.man.mk>
154 .else
155 .if !target(all-man)
156 all-man: _SUBDIR
157 .endif
158 .if !target(maninstall)
159 maninstall: _SUBDIR
160 .endif
161 .endif
162
163 _ILINKS=@ machine
164
165 .MAIN: all
166 all: objwarn ${PROG} all-man _SUBDIR
167
168 beforedepend: ${_ILINKS}
169         @rm -f .depend
170
171 # Ensure that the links exist without depending on it when it exists which
172 # causes all the modules to be rebuilt when the directory pointed to changes.
173 .for _link in ${_ILINKS}
174 .if !exists(${.OBJDIR}/${_link})
175 ${OBJS}: ${_link}
176 .endif
177 .endfor
178
179 # Search for kernel source tree in standard places.
180 .for _dir in ${.CURDIR}/../.. ${.CURDIR}/../../.. /sys /usr/src/sys
181 .if !defined(SYSDIR) && exists(${_dir}/kern/)
182 SYSDIR= ${_dir}
183 .endif
184 .endfor
185 .if !defined(SYSDIR) || !exists(${SYSDIR}/kern)
186 .error "can't find kernel source tree"
187 .endif
188
189 ${_ILINKS}:
190         @case ${.TARGET} in \
191         machine) \
192                 path=${SYSDIR}/${MACHINE_ARCH}/include ;; \
193         @) \
194                 path=${SYSDIR} ;; \
195         esac ; \
196         path=`(cd $$path && /bin/pwd)` ; \
197         ${ECHO} ${.TARGET} "->" $$path ; \
198         ln -s $$path ${.TARGET}
199
200 CLEANFILES+= ${PROG} ${FULLPROG} ${KMOD}.kld ${OBJS} ${_ILINKS} symb.tmp tmp.o
201
202 .if !target(install)
203 .if !target(beforeinstall)
204 beforeinstall:
205 .endif
206 .if !target(afterinstall)
207 afterinstall:
208 .endif
209
210 _INSTALLFLAGS:= ${INSTALLFLAGS}
211 .for ie in ${INSTALLFLAGS_EDIT}
212 _INSTALLFLAGS:= ${_INSTALLFLAGS${ie}}
213 .endfor
214
215 realinstall: _SUBDIR
216         ${INSTALL} ${COPY} -o ${KMODOWN} -g ${KMODGRP} -m ${KMODMODE} \
217             ${_INSTALLFLAGS} ${PROG} ${DESTDIR}${KMODDIR}/
218 .if defined(LINKS) && !empty(LINKS)
219         @set ${LINKS}; \
220         while test $$# -ge 2; do \
221                 l=${DESTDIR}$$1; \
222                 shift; \
223                 t=${DESTDIR}$$1; \
224                 shift; \
225                 ${ECHO} $$t -\> $$l; \
226                 ln -f $$l $$t; \
227         done; true
228 .endif
229 .if defined(SYMLINKS) && !empty(SYMLINKS)
230         @set ${SYMLINKS}; \
231         while test $$# -ge 2; do \
232                 l=$$1; \
233                 shift; \
234                 t=${DESTDIR}$$1; \
235                 shift; \
236                 ${ECHO} $$t -\> $$l; \
237                 ln -fs $$l $$t; \
238         done; true
239 .endif
240
241 install: afterinstall _SUBDIR
242 .if !defined(NOMAN)
243 afterinstall: realinstall maninstall
244 .else
245 afterinstall: realinstall
246 .endif
247 realinstall: beforeinstall
248 .endif
249
250 DISTRIBUTION?=  bin
251 .if !target(distribute)
252 distribute: _SUBDIR
253 .for dist in ${DISTRIBUTION}
254         cd ${.CURDIR} ; $(MAKE) install DESTDIR=${DISTDIR}/${dist} SHARED=copies
255 .endfor
256 .endif
257
258 .if !target(load)
259 load:   ${PROG}
260         ${KMODLOAD} -v ${.CURDIR}/${KMOD}.ko
261 .endif
262
263 .if !target(unload)
264 unload:
265         ${KMODUNLOAD} -v ${KMOD}
266 .endif
267
268 .for _src in ${SRCS:Mopt_*.h}
269 CLEANFILES+=    ${_src}
270 .if !target(${_src})
271 ${_src}:
272         touch ${.TARGET}
273 .endif
274 .endfor
275
276 MFILES?= kern/bus_if.m kern/device_if.m dev/iicbus/iicbb_if.m \
277     dev/iicbus/iicbus_if.m isa/isa_if.m \
278     libkern/iconv_converter_if.m \
279     dev/mii/miibus_if.m \
280     dev/pccard/card_if.m dev/pccard/power_if.m dev/pci/pci_if.m \
281     dev/pci/pcib_if.m dev/ppbus/ppbus_if.m dev/smbus/smbus_if.m \
282     dev/usb/usb_if.m dev/sound/pcm/ac97_if.m dev/sound/pcm/channel_if.m \
283     dev/sound/pcm/feeder_if.m dev/sound/pcm/mixer_if.m pci/agp_if.m
284
285 .for _srcsrc in ${MFILES}
286 .for _ext in c h
287 .for _src in ${SRCS:M${_srcsrc:T:R}.${_ext}}
288 CLEANFILES+=    ${_src}
289 .if !target(${_src})
290 .if !exists(@)
291 ${_src}: @
292 .endif
293 .if exists(@)
294 ${_src}: @/kern/makeobjops.pl @/${_srcsrc}
295 .endif
296         perl @/kern/makeobjops.pl -${_ext} @/${_srcsrc}
297 .endif
298 .endfor # _src
299 .endfor # _ext
300 .endfor # _srcsrc
301
302 .for _ext in c h
303 .if ${SRCS:Mvnode_if.${_ext}} != ""
304 CLEANFILES+=    vnode_if.${_ext}
305 .if !exists(@)
306 vnode_if.${_ext}: @
307 .endif
308 .if exists(@)
309 vnode_if.${_ext}: @/kern/vnode_if.pl @/kern/vnode_if.src
310 .endif
311         perl @/kern/vnode_if.pl -${_ext} @/kern/vnode_if.src
312 .endif
313 .endfor
314
315 regress:
316
317 .include <bsd.dep.mk>
318
319 .if !exists(${DEPENDFILE})
320 ${OBJS}: ${SRCS:M*.h}
321 .endif
322
323 .include <bsd.obj.mk>
324
325 .include <bsd.kern.mk>