mirror of
https://github.com/opnsense/src.git
synced 2026-04-05 01:15:30 -04:00
and empty options files. The rules are now generated automatically in
bsd.kmod.mk. Cleaned up related things ($S and ${CLEANFILES}).
14 lines
259 B
Makefile
14 lines
259 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../i386/isa
|
|
KMOD = joy
|
|
SRCS = joy.c opt_devfs.h
|
|
MAN8 = joy.8
|
|
|
|
CFLAGS += -DJOY_MODULE
|
|
|
|
afterinstall:
|
|
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
|
|
${.CURDIR}/joy.sh ${DESTDIR}/usr/bin/joy
|
|
|
|
.include <bsd.kmod.mk>
|