Pull in sys/conf/kmod.mk, rather than /usr/share/mk/bsd.kmod.mk.
This means that the kernel can be totally self contained now and is not dependent on the last buildworld to update /usr/share/mk. This might also make it easier to build 5.x kernels on 4.0 boxes etc, assuming gensetdefs and config(8) are updated.
This commit is contained in:
parent
e0f9195db2
commit
56ca39961b
@ -12,4 +12,4 @@ aha.h:
|
||||
opt_scsi.h:
|
||||
echo "#define SCSI_DELAY 15000" > opt_scsi.h
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../conf/kmod.mk"
|
||||
|
@ -4,4 +4,4 @@
|
||||
KMOD = amr
|
||||
SRCS = amr.c amr_pci.c amr_disk.c device_if.h bus_if.h pci_if.h
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../conf/kmod.mk"
|
||||
|
@ -8,4 +8,4 @@ SRCS += opt_inet.h device_if.h bus_if.h pci_if.h isa_if.h
|
||||
opt_inet.h:
|
||||
echo "#define INET 1" > opt_inet.h
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../conf/kmod.mk"
|
||||
|
@ -6,4 +6,4 @@ KMOD = if_aue
|
||||
SRCS = if_aue.c opt_bdg.h opt_usb.h device_if.h bus_if.h
|
||||
SRCS += miibus_if.h
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../conf/kmod.mk"
|
||||
|
@ -26,4 +26,4 @@ bktr.h:
|
||||
smbus.h:
|
||||
echo "#define NSMBUS 0" > smbus.h
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../conf/kmod.mk"
|
||||
|
@ -6,4 +6,4 @@ SRCS= cardbus.c \
|
||||
device_if.h bus_if.h
|
||||
NOMAN=
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../conf/kmod.mk"
|
||||
|
@ -6,4 +6,4 @@ SRCS= pccbb.c \
|
||||
device_if.h bus_if.h
|
||||
NOMAN=
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../conf/kmod.mk"
|
||||
|
@ -11,4 +11,4 @@ CLEANFILES= ccd.h
|
||||
ccd.h:
|
||||
echo "#define NCCD ${NCCD}" > ccd.h
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../conf/kmod.mk"
|
||||
|
@ -7,4 +7,4 @@ SRCS= vnode_if.h \
|
||||
cd9660_util.c cd9660_vfsops.c cd9660_vnops.c
|
||||
NOMAN=
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../conf/kmod.mk"
|
||||
|
@ -12,4 +12,4 @@ CLEANFILES= vcoda.h
|
||||
vcoda.h:
|
||||
echo "#define NVCODA 4" > vcoda.h
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../conf/kmod.mk"
|
||||
|
@ -6,4 +6,4 @@ SRCS= imgact_coff.c vnode_if.h
|
||||
NOMAN=
|
||||
CFLAGS+= -DCOMPAT_IBCS2
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../conf/kmod.mk"
|
||||
|
@ -6,4 +6,4 @@ KMOD = if_cue
|
||||
SRCS = if_cue.c opt_bdg.h opt_usb.h device_if.h bus_if.h
|
||||
SRCS += miibus_if.h
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../conf/kmod.mk"
|
||||
|
@ -5,4 +5,4 @@ KMOD = if_dc
|
||||
SRCS = if_dc.c opt_bdg.h device_if.h bus_if.h pci_if.h
|
||||
SRCS += miibus_if.h
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../conf/kmod.mk"
|
||||
|
@ -7,4 +7,4 @@ SRCS= vnode_if.h \
|
||||
NOMAN=
|
||||
CFLAGS+= -DFDESC
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../conf/kmod.mk"
|
||||
|
@ -7,4 +7,4 @@ SRCS= vnode_if.h \
|
||||
NOMAN=
|
||||
CFLAGS+= -DFDESC
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../conf/kmod.mk"
|
||||
|
@ -5,4 +5,4 @@ KMOD= fpu
|
||||
SRCS= math_emulate.c
|
||||
NOMAN=
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../conf/kmod.mk"
|
||||
|
@ -4,4 +4,4 @@
|
||||
KMOD = if_fxp
|
||||
SRCS = if_fxp.c opt_bdg.h device_if.h bus_if.h pci_if.h
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../conf/kmod.mk"
|
||||
|
@ -13,4 +13,4 @@ NOMAN=
|
||||
${CC} -x assembler-with-cpp -DLOCORE ${CFLAGS} -c \
|
||||
${.IMPSRC} -o ${.TARGET}
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../conf/kmod.mk"
|
||||
|
@ -7,4 +7,4 @@ SRCS= vnode_if.h \
|
||||
hpfs_alsubr.c
|
||||
NOMAN=
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../conf/kmod.mk"
|
||||
|
@ -17,4 +17,4 @@ afterinstall:
|
||||
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
|
||||
${.CURDIR}/ibcs2.sh ${DESTDIR}/usr/sbin/ibcs2
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../conf/kmod.mk"
|
||||
|
@ -15,4 +15,4 @@ opt_inet.h:
|
||||
#opt_inet6.h:
|
||||
# echo "#define INET6 1" > opt_inet6.h
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../conf/kmod.mk"
|
||||
|
@ -38,4 +38,4 @@ load: all
|
||||
unload:
|
||||
/sbin/kldunload ${PROG}
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../conf/kmod.mk"
|
||||
|
@ -51,4 +51,4 @@ opt_ppp.h:
|
||||
echo "#define PPP_FILTER ${PPP_FILTER}" >> opt_ppp.h
|
||||
.endif
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../conf/kmod.mk"
|
||||
|
@ -17,4 +17,4 @@ opt_inet.h:
|
||||
sl.h:
|
||||
echo "#define NSL ${NSL}" > sl.h
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../conf/kmod.mk"
|
||||
|
@ -13,4 +13,4 @@ CFLAGS+= ${PROTOS}
|
||||
opt_inet.h:
|
||||
echo "#define INET 1" > opt_inet.h
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../conf/kmod.mk"
|
||||
|
@ -6,4 +6,4 @@ SRCS= ip_mroute.c
|
||||
NOMAN=
|
||||
CFLAGS+= -DMROUTE_LKM -DMROUTING
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../conf/kmod.mk"
|
||||
|
@ -10,4 +10,4 @@ CFLAGS+= -DIPFILTER_LKM -DIPFILTER_LOG
|
||||
# If you don't want long functionality remove -DIPFILTER_LOG
|
||||
#
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../conf/kmod.mk"
|
||||
|
@ -14,4 +14,4 @@ CFLAGS+= -DIPFIREWALL
|
||||
#CFLAGS+= -DIPFIREWALL_DEFAULT_TO_ACCEPT
|
||||
#
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../conf/kmod.mk"
|
||||
|
@ -9,4 +9,4 @@ afterinstall:
|
||||
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
|
||||
${.CURDIR}/joy.sh ${DESTDIR}/usr/bin/joy
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../conf/kmod.mk"
|
||||
|
@ -6,4 +6,4 @@ SRCS= vnode_if.h \
|
||||
kernfs_vfsops.c kernfs_vnops.c
|
||||
NOMAN=
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../conf/kmod.mk"
|
||||
|
@ -6,4 +6,4 @@ KMOD = if_kue
|
||||
SRCS = if_kue.c opt_bdg.h opt_usb.h device_if.h bus_if.h
|
||||
SRCS += miibus_if.h
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../conf/kmod.mk"
|
||||
|
@ -8,4 +8,4 @@ NOMAN=
|
||||
VFS_KLD=
|
||||
CFLAGS+= -DLINPROCFS
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../conf/kmod.mk"
|
||||
|
@ -33,4 +33,4 @@ afterinstall:
|
||||
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
|
||||
${.CURDIR}/linux.sh ${DESTDIR}/usr/sbin/linux
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../conf/kmod.mk"
|
||||
|
@ -5,4 +5,4 @@ KMOD= md
|
||||
SRCS= md.c opt_mfs.h opt_md.h
|
||||
NOMAN=
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../conf/kmod.mk"
|
||||
|
@ -6,4 +6,4 @@ SRCS= vnode_if.h \
|
||||
mfs_vfsops.c mfs_vnops.c opt_mfs.h
|
||||
NOMAN=
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../conf/kmod.mk"
|
||||
|
@ -7,4 +7,4 @@ SRCS += miibus_if.h device_if.h miibus_if.c exphy.c nsphy.c
|
||||
SRCS += mlphy.c tlphy.c rlphy.c amphy.c dcphy.c pnphy.c
|
||||
SRCS += brgphy.c xmphy.c
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../conf/kmod.mk"
|
||||
|
@ -4,4 +4,4 @@
|
||||
KMOD = mlx
|
||||
SRCS = mlx.c mlx_pci.c mlx_disk.c device_if.h bus_if.h pci_if.h
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../conf/kmod.mk"
|
||||
|
@ -11,4 +11,4 @@ NOMAN=
|
||||
CFLAGS+= -DPC98
|
||||
.endif
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../conf/kmod.mk"
|
||||
|
@ -11,4 +11,4 @@ NOMAN=
|
||||
CFLAGS+= -DPC98
|
||||
.endif
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../conf/kmod.mk"
|
||||
|
@ -41,4 +41,4 @@ unload:
|
||||
deinstall:
|
||||
rm -f /modules/ncp.ko
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../conf/kmod.mk"
|
||||
|
@ -5,4 +5,4 @@ KMOD= ng_UI
|
||||
SRCS= ng_UI.c
|
||||
MAN8= ng_UI.8
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../../conf/kmod.mk"
|
||||
|
@ -5,4 +5,4 @@ KMOD= ng_async
|
||||
SRCS= ng_async.c
|
||||
MAN8= ng_async.8
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../../conf/kmod.mk"
|
||||
|
@ -7,4 +7,4 @@ MAN8= ng_bpf.8
|
||||
|
||||
.PATH: ${.CURDIR}/../../../net
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../../conf/kmod.mk"
|
||||
|
@ -29,4 +29,4 @@ opt_ipx.h:
|
||||
echo "#define IPX ${IFACE_IPX}" > opt_ipx.h
|
||||
.endif
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../../conf/kmod.mk"
|
||||
|
@ -5,4 +5,4 @@ KMOD= ng_echo
|
||||
SRCS= ng_echo.c
|
||||
MAN8= ng_echo.8
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../../conf/kmod.mk"
|
||||
|
@ -5,4 +5,4 @@ KMOD= ng_frame_relay
|
||||
SRCS= ng_frame_relay.c
|
||||
MAN8= ng_frame_relay.8
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../../conf/kmod.mk"
|
||||
|
@ -5,4 +5,4 @@ KMOD= ng_hole
|
||||
SRCS= ng_hole.c
|
||||
MAN8= ng_hole.8
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../../conf/kmod.mk"
|
||||
|
@ -5,4 +5,4 @@ KMOD= ng_iface
|
||||
SRCS= ng_iface.c
|
||||
MAN8= ng_iface.8
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../../conf/kmod.mk"
|
||||
|
@ -4,4 +4,4 @@ KMOD= ng_ksocket
|
||||
SRCS= ng_ksocket.c
|
||||
MAN8= ng_ksocket.8
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../../conf/kmod.mk"
|
||||
|
@ -5,4 +5,4 @@ KMOD= ng_lmi
|
||||
SRCS= ng_lmi.c
|
||||
MAN8= ng_lmi.8
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../../conf/kmod.mk"
|
||||
|
@ -29,4 +29,4 @@ opt_netgraph.h:
|
||||
echo "#define NETGRAPH_MPPC_ENCRYPTION 1" >> ${.TARGET}
|
||||
.endif
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../../conf/kmod.mk"
|
||||
|
@ -5,4 +5,4 @@ KMOD= netgraph
|
||||
SRCS= ng_base.c ng_parse.c
|
||||
MAN4= netgraph.4
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../../conf/kmod.mk"
|
||||
|
@ -5,4 +5,4 @@ KMOD= ng_ppp
|
||||
SRCS= ng_ppp.c
|
||||
MAN8= ng_ppp.8
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../../conf/kmod.mk"
|
||||
|
@ -5,4 +5,4 @@ KMOD= ng_pppoe
|
||||
SRCS= ng_pppoe.c
|
||||
MAN8= ng_pppoe.8
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../../conf/kmod.mk"
|
||||
|
@ -5,4 +5,4 @@ KMOD= ng_pptpgre
|
||||
SRCS= ng_pptpgre.c
|
||||
MAN8= ng_pptpgre.8
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../../conf/kmod.mk"
|
||||
|
@ -5,4 +5,4 @@ KMOD= ng_rfc1490
|
||||
SRCS= ng_rfc1490.c
|
||||
MAN8= ng_rfc1490.8
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../../conf/kmod.mk"
|
||||
|
@ -5,4 +5,4 @@ KMOD= ng_socket
|
||||
SRCS= ng_socket.c
|
||||
MAN8= ng_socket.8
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../../conf/kmod.mk"
|
||||
|
@ -5,4 +5,4 @@ KMOD= ng_tee
|
||||
SRCS= ng_tee.c
|
||||
MAN8= ng_tee.8
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../../conf/kmod.mk"
|
||||
|
@ -5,4 +5,4 @@ KMOD= ng_tty
|
||||
SRCS= ng_tty.c
|
||||
MAN8= ng_tty.8
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../../conf/kmod.mk"
|
||||
|
@ -7,4 +7,4 @@ MAN8= ng_vjc.8
|
||||
|
||||
.PATH: ${.CURDIR}/../../../net
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../../conf/kmod.mk"
|
||||
|
@ -15,4 +15,4 @@ opt_inet.h:
|
||||
echo "#define INET 1" > ${.TARGET}
|
||||
.endif
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../conf/kmod.mk"
|
||||
|
@ -15,4 +15,4 @@ opt_inet.h:
|
||||
echo "#define INET 1" > ${.TARGET}
|
||||
.endif
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../conf/kmod.mk"
|
||||
|
@ -15,4 +15,4 @@ opt_inet.h:
|
||||
echo "#define INET 1" > ${.TARGET}
|
||||
.endif
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../conf/kmod.mk"
|
||||
|
@ -7,4 +7,4 @@ SRCS= vnode_if.h \
|
||||
ntfs_compr.c
|
||||
NOMAN=
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../conf/kmod.mk"
|
||||
|
@ -6,4 +6,4 @@ SRCS= vnode_if.h \
|
||||
null_subr.c null_vfsops.c null_vnops.c
|
||||
NOMAN=
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../conf/kmod.mk"
|
||||
|
@ -26,4 +26,4 @@ unload:
|
||||
deinstall:
|
||||
rm -f /modules/nwfs.ko
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../conf/kmod.mk"
|
||||
|
@ -23,4 +23,4 @@ afterinstall:
|
||||
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
|
||||
${.CURDIR}/osf1.sh ${DESTDIR}/usr/bin/osf1
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../conf/kmod.mk"
|
||||
|
@ -6,4 +6,4 @@ SRCS= pccard.c pccard_cis.c pccard_cis_quirks.c \
|
||||
device_if.h bus_if.h card_if.h card_if.c power_if.h power_if.c
|
||||
NOMAN=
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../conf/kmod.mk"
|
||||
|
@ -5,4 +5,4 @@ KMOD= pcfclock
|
||||
SRCS= pcfclock.c opt_pcfclock.h
|
||||
SRCS+= bus_if.h device_if.h ppbus_if.h
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../conf/kmod.mk"
|
||||
|
@ -7,4 +7,4 @@ SRCS= i82365.c i82365_isa.c \
|
||||
device_if.h bus_if.h isa_if.h power_if.h card_if.h
|
||||
NOMAN=
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../conf/kmod.mk"
|
||||
|
@ -6,4 +6,4 @@ SRCS= vnode_if.h \
|
||||
portal_vfsops.c portal_vnops.c
|
||||
NOMAN=
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../conf/kmod.mk"
|
||||
|
@ -6,4 +6,4 @@ SRCS= vnode_if.h \
|
||||
portal_vfsops.c portal_vnops.c
|
||||
NOMAN=
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../conf/kmod.mk"
|
||||
|
@ -8,4 +8,4 @@ SRCS= vnode_if.h \
|
||||
procfs_vnops.c
|
||||
NOMAN=
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../conf/kmod.mk"
|
||||
|
@ -5,4 +5,4 @@ KMOD = if_rl
|
||||
SRCS = if_rl.c opt_bdg.h device_if.h bus_if.h pci_if.h
|
||||
SRCS += miibus_if.h
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../conf/kmod.mk"
|
||||
|
@ -5,4 +5,4 @@ KMOD = if_sf
|
||||
SRCS = if_sf.c opt_bdg.h device_if.h bus_if.h pci_if.h
|
||||
SRCS += miibus_if.h
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../conf/kmod.mk"
|
||||
|
@ -5,4 +5,4 @@ KMOD = if_sis
|
||||
SRCS = if_sis.c opt_bdg.h device_if.h bus_if.h pci_if.h
|
||||
SRCS += miibus_if.h
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../conf/kmod.mk"
|
||||
|
@ -5,4 +5,4 @@ KMOD = if_sk
|
||||
SRCS = if_sk.c opt_bdg.h device_if.h bus_if.h pci_if.h
|
||||
SRCS += miibus_if.h
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../conf/kmod.mk"
|
||||
|
@ -9,4 +9,4 @@ NOMAN=
|
||||
CFLAGS+= -DPC98
|
||||
.endif
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../../conf/kmod.mk"
|
||||
|
@ -4,4 +4,4 @@ KMOD= splash_pcx
|
||||
SRCS= splash_pcx.c
|
||||
NOMAN=
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../../conf/kmod.mk"
|
||||
|
@ -5,4 +5,4 @@ KMOD = if_ste
|
||||
SRCS = if_ste.c opt_bdg.h device_if.h bus_if.h pci_if.h
|
||||
SRCS += miibus_if.h
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../conf/kmod.mk"
|
||||
|
@ -13,4 +13,4 @@ NOMAN=
|
||||
|
||||
CFLAGS+= -O
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../conf/kmod.mk"
|
||||
|
@ -38,4 +38,4 @@ afterinstall:
|
||||
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
|
||||
${.CURDIR}/svr4.sh ${DESTDIR}/usr/sbin/svr4
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../conf/kmod.mk"
|
||||
|
@ -6,4 +6,4 @@ SRCS= apm_saver.c
|
||||
NOMAN=
|
||||
CFLAGS+= -I${.CURDIR}/..
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../../conf/kmod.mk"
|
||||
|
@ -6,4 +6,4 @@ SRCS= blank_saver.c
|
||||
NOMAN=
|
||||
CFLAGS+= -I${.CURDIR}/..
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../../conf/kmod.mk"
|
||||
|
@ -6,4 +6,4 @@ SRCS= daemon_saver.c
|
||||
NOMAN=
|
||||
CFLAGS+= -I${.CURDIR}/..
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../../conf/kmod.mk"
|
||||
|
@ -6,4 +6,4 @@ SRCS= fade_saver.c
|
||||
NOMAN=
|
||||
CFLAGS+= -I${.CURDIR}/..
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../../conf/kmod.mk"
|
||||
|
@ -7,4 +7,4 @@ NOMAN=
|
||||
CFLAGS+= -I${.CURDIR}/..
|
||||
CWARNFLAGS= -Wall -pedantic
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../../conf/kmod.mk"
|
||||
|
@ -6,4 +6,4 @@ SRCS= green_saver.c
|
||||
NOMAN=
|
||||
CFLAGS+= -I${.CURDIR}/..
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../../conf/kmod.mk"
|
||||
|
@ -6,4 +6,4 @@ SRCS= logo_saver.c
|
||||
NOMAN=
|
||||
CFLAGS+= -I${.CURDIR}/.. -I${.CURDIR}
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../../conf/kmod.mk"
|
||||
|
@ -7,4 +7,4 @@ NOMAN=
|
||||
CFLAGS+= -I${.CURDIR}/..
|
||||
CWARNFLAGS= -Wall -pedantic
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../../conf/kmod.mk"
|
||||
|
@ -6,4 +6,4 @@ SRCS= snake_saver.c
|
||||
NOMAN=
|
||||
CFLAGS+= -I${.CURDIR}/..
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../../conf/kmod.mk"
|
||||
|
@ -6,4 +6,4 @@ SRCS= star_saver.c
|
||||
NOMAN=
|
||||
CFLAGS+= -I${.CURDIR}/..
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../../conf/kmod.mk"
|
||||
|
@ -7,4 +7,4 @@ NOMAN=
|
||||
CFLAGS+= -I${.CURDIR}/..
|
||||
CWARNFLAGS= -Wall -pedantic
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../../conf/kmod.mk"
|
||||
|
@ -8,4 +8,4 @@ CLEANFILES = vlan.h
|
||||
vlan.h:
|
||||
touch vlan.h
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../conf/kmod.mk"
|
||||
|
@ -5,4 +5,4 @@ KMOD = if_tl
|
||||
SRCS = if_tl.c opt_bdg.h device_if.h bus_if.h pci_if.h
|
||||
SRCS += miibus_if.h
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../conf/kmod.mk"
|
||||
|
@ -5,4 +5,4 @@ KMOD = if_tx
|
||||
SRCS = if_tx.c opt_bdg.h device_if.h bus_if.h pci_if.h
|
||||
SRCS += miibus_if.h
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../conf/kmod.mk"
|
||||
|
@ -11,4 +11,4 @@ NOMAN =
|
||||
|
||||
CFLAGS += -DUDBP_DEBUG
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../conf/kmod.mk"
|
||||
|
@ -7,4 +7,4 @@ KMOD = ugen
|
||||
SRCS = bus_if.h device_if.h vnode_if.h opt_usb.h ugen.c
|
||||
NOMAN =
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../conf/kmod.mk"
|
||||
|
@ -7,4 +7,4 @@ KMOD = uhid
|
||||
SRCS = bus_if.h device_if.h vnode_if.h opt_usb.h uhid.c
|
||||
NOMAN =
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../conf/kmod.mk"
|
||||
|
@ -12,4 +12,4 @@ NOMAN =
|
||||
opt_kbd.h:
|
||||
echo '#define KBD_INSTALL_CDEV 1' > opt_kbd.h
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
.include "${.CURDIR}/../../conf/kmod.mk"
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user