freebsd-nq/sys/modules/joy/Makefile

23 lines
413 B
Makefile
Raw Normal View History

1998-11-12 00:37:39 +00:00
# $Id: Makefile,v 1.10 1998/11/11 07:04:10 peter Exp $
1996-09-22 21:56:57 +00:00
.PATH: ${.CURDIR}/../../i386/isa
KMOD = joy
SRCS = joy.c joy.h opt_devfs.h
1996-03-16 01:35:48 +00:00
MAN8 = joy.8
CFLAGS += -DJOY_MODULE
CLEANFILES += joy.h opt_devfs.h
1996-03-16 01:35:48 +00:00
joy.h:
echo "#define NJOY 1" > joy.h
opt_devfs.h:
touch opt_devfs.h
1996-03-16 01:35:48 +00:00
afterinstall:
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
1998-11-12 00:37:39 +00:00
${.CURDIR}/joy.sh ${DESTDIR}/usr/bin/joy
1996-03-16 01:35:48 +00:00
.include <bsd.kmod.mk>