1b38e19179
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.
13 lines
265 B
Makefile
13 lines
265 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../isa
|
|
KMOD = joy
|
|
SRCS = bus_if.h device_if.h isa_if.h joy.c
|
|
MAN8 = joy.8
|
|
|
|
afterinstall:
|
|
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
|
|
${.CURDIR}/joy.sh ${DESTDIR}/usr/bin/joy
|
|
|
|
.include "${.CURDIR}/../../conf/kmod.mk"
|