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