kmod.mk (f66116083c527535ef902da5326dca2dcc97ad35) kmod.mk (46877fb22cd965834259127610f214e8b5b8e1d9)
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 +++

--- 243 unchanged lines hidden (view full) ---

252distribute: _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)
259load: ${PROG}
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 +++

--- 243 unchanged lines hidden (view full) ---

252distribute: _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)
259load: ${PROG}
260 ${KMODLOAD} -v ./${KMOD}.ko
260 ${KMODLOAD} -v ${.CURDIR}/${KMOD}.ko
261.endif
262
263.if !target(unload)
264unload:
265 ${KMODUNLOAD} -v ${KMOD}
266.endif
267
268.for _src in ${SRCS:Mopt_*.h}

--- 57 unchanged lines hidden ---
261.endif
262
263.if !target(unload)
264unload:
265 ${KMODUNLOAD} -v ${KMOD}
266.endif
267
268.for _src in ${SRCS:Mopt_*.h}

--- 57 unchanged lines hidden ---