kmod.mk revision 25212
1#	From: @(#)bsd.prog.mk	5.26 (Berkeley) 6/25/91
2#	$Id: bsd.kmod.mk,v 1.31 1997/04/13 06:44:21 jkh Exp $
3#
4# The include file <bsd.kmod.mk> handles installing Loadable Kernel Modules.
5# <bsd.kmod.mk> includes the file named "../Makefile.inc" if it exists,
6# as well as the include file <bsd.obj.mk>, <bsd.dep.mk>, and
7# may be <bsd.man.mk>
8#
9#
10# +++ variables +++
11#
12# CLEANFILES	Additional files to remove for the clean and cleandir targets.
13#
14# DISTRIBUTION  Name of distribution. [bin]
15#
16# EXPORT_SYMS	???
17#
18# KERN		Main Kernel source directory. [${.CURDIR}/../../sys/kern]
19#
20# KMOD          The name of the loadable kernel module to build.
21#
22# KMODDIR	Base path for loadable kernel modules
23#		(see lkm(4)). [/lkm]
24#
25# KMODOWN	LKM owner. [${BINOWN}]
26#
27# KMODGRP	LKM group. [${BINGRP}]
28#
29# KMODMODE	LKM mode. [${BINMODE}]
30#
31# LINKS		The list of LKM links; should be full pathnames, the
32#               linked-to file coming first, followed by the linked
33#               file.  The files are hard-linked.  For example, to link
34#               /lkm/master and /lkm/meister, use:
35#
36#			LINKS=  /lkm/master /lkm/meister
37#
38# LN_FLAGS	Flags for ln(1) (see variable LINKS)
39#
40# MODLOAD	Command to load a kernel module [/sbin/modload]
41#
42# MODUNLOAD	Command to unload a kernel module [/sbin/modunload]
43#
44# NOMAN		LKM does not have a manual page if set.
45#
46# PROG          The name of the loadable kernel module to build. 
47#		If not supplied, ${KMOD}.o is used.
48#
49# PSEUDO_LKM	???
50#
51# SRCS          List of source files 
52#
53# SUBDIR        A list of subdirectories that should be built as well.
54#               Each of the targets will execute the same target in the
55#               subdirectories.
56#
57# DESTDIR, DISTDIR are set by other Makefiles (e.g. bsd.own.mk)
58#
59#
60# +++ targets +++
61#
62#       distribute:
63#               This is a variant of install, which will
64#               put the stuff into the right "distribution".
65#
66# 	install:
67#               install the program and its manual pages; if the Makefile
68#               does not itself define the target install, the targets
69#               beforeinstall and afterinstall may also be used to cause
70#               actions immediately before and after the install target
71#		is executed.
72#
73# 	load:	
74#		Load LKM.
75#
76# 	tags:
77#		Create a tags file for the source files.
78#
79# 	unload:
80#		Unload LKM.
81#
82# bsd.obj.mk: clean, cleandir and obj
83# bsd.dep.mk: depend
84# bsd.man.mk: maninstall
85#
86
87MODLOAD?=	/sbin/modload
88MODUNLOAD?=	/sbin/modunload
89
90.if exists(${.CURDIR}/../Makefile.inc)
91.include "${.CURDIR}/../Makefile.inc"
92.endif
93
94.SUFFIXES: .out .o .c .cc .cxx .C .y .l .s .S
95
96#
97# A temporary fix to survive SMP changes.   
98#
99CFLAGS+= -I.
100beforedepend:
101	touch opt_smp.h
102	touch opt_smp_invltlb.h
103
104#
105# Assume that we are in /usr/src/foo/bar, so /sys is
106# ${.CURDIR}/../../sys.  We don't bother adding a .PATH since nothing
107# actually lives in /sys directly.
108#
109CFLAGS+=${COPTS} -DKERNEL -DACTUALLY_LKM_NOT_KERNEL -I${.CURDIR}/../../sys \
110	${CWARNFLAGS}
111
112EXPORT_SYMS?= _${KMOD}
113
114.if defined(VFS_LKM)
115CFLAGS+= -DVFS_LKM -DMODVNOPS=${KMOD}vnops -I.
116SRCS+=	vnode_if.h
117CLEANFILES+=	vnode_if.h vnode_if.c
118.endif
119
120.if defined(PSEUDO_LKM)
121CFLAGS+= -DPSEUDO_LKM
122.endif
123
124DPSRCS+= ${SRCS:M*.h}
125OBJS+=  ${SRCS:N*.h:R:S/$/.o/g}
126
127.if !defined(PROG)
128PROG=	${KMOD}.o
129.endif
130
131${PROG}: ${DPSRCS} ${OBJS} ${DPADD} 
132	${LD} -r ${LDFLAGS} -o tmp.o ${OBJS}
133.if defined(EXPORT_SYMS)
134	@rm -f symb.tmp
135	@for i in ${EXPORT_SYMS} ; do echo $$i >> symb.tmp ; done
136	symorder -c symb.tmp tmp.o
137	@rm -f symb.tmp
138.endif
139	mv tmp.o ${.TARGET}
140
141.if !defined(NOMAN)
142.include <bsd.man.mk>
143.if !defined(_MANPAGES) || empty(_MANPAGES)
144MAN1=	${KMOD}.4
145.endif
146
147.elif !target(maninstall)
148maninstall: _SUBDIR
149all-man:
150.endif
151
152.MAIN: all
153all: objwarn ${PROG} all-man _SUBDIR
154
155CLEANFILES+=${PROG} ${OBJS} 
156
157.if !target(install)
158.if !target(beforeinstall)
159beforeinstall:
160.endif
161.if !target(afterinstall)
162afterinstall:
163.endif
164
165realinstall: _SUBDIR
166	${INSTALL} ${COPY} -o ${KMODOWN} -g ${KMODGRP} -m ${KMODMODE} \
167	    ${INSTALLFLAGS} ${PROG} ${DESTDIR}${KMODDIR}
168.if defined(LINKS) && !empty(LINKS)
169	@set ${LINKS}; \
170	while test $$# -ge 2; do \
171		l=${DESTDIR}$$1; \
172		shift; \
173		t=${DESTDIR}$$1; \
174		shift; \
175		${ECHO} $$t -\> $$l; \
176		rm -f $$t; \
177		ln ${LN_FLAGS} $$l $$t; \
178	done; true
179.endif
180
181install: afterinstall _SUBDIR
182.if !defined(NOMAN)
183afterinstall: realinstall maninstall
184.else
185afterinstall: realinstall
186.endif
187realinstall: beforeinstall
188.endif
189
190DISTRIBUTION?=	bin
191.if !target(distribute)
192distribute: _SUBDIR
193	cd ${.CURDIR} ; $(MAKE) install DESTDIR=${DISTDIR}/${DISTRIBUTION} SHARED=copies
194.endif
195
196.if defined(NOTAGS)
197tags:
198.endif
199
200.if !target(tags)
201tags: ${SRCS} _SUBDIR
202.if defined(PROG)
203	@cd ${.CURDIR} && gtags ${GTAGSFLAGS}
204.if defined(HTML)
205	@cd ${.CURDIR} && htags ${HTAGSFLAGS}
206.endif
207.endif
208.endif
209
210
211.if !target(load)
212load:	${PROG}
213	${MODLOAD} -o ${KMOD} -e${KMOD} ${PROG}
214.endif
215
216.if !target(unload)
217unload:	${PROG}
218	${MODUNLOAD} -n ${KMOD}
219.endif
220
221KERN=	${.CURDIR}/../../sys/kern
222
223vnode_if.h:	${KERN}/vnode_if.sh ${KERN}/vnode_if.src
224	sh ${KERN}/vnode_if.sh ${KERN}/vnode_if.src
225
226./vnode_if.h:	vnode_if.h
227
228.include <bsd.obj.mk>
229.include <bsd.dep.mk>
230.include <bsd.kern.mk>
231