freebsd-dev/lkm/qcam/Makefile
Bruce Evans 5c496ee31e Don't (re)define or use ACTUALLY_LKM_NOT_KERNEL - use the existing
definition of QCAM_MODULE for everything involving LKM'ness.

Makefile:
Don't add -I/sys to CFLAGS.  bsd.kmod.mk adds the correct (relative)
path.
1996-06-23 14:41:55 +00:00

17 lines
322 B
Makefile

.PATH: ${.CURDIR}/../../sys/i386/isa
KMOD = qcam_mod
SRCS = qcam.c qcamio.c qcam.h
MAN8 = qcam.8
CFLAGS += -I. -DQCAM_MODULE
CLEANFILES += qcam.h
qcam.h:
echo "#define NQCAM 1" > qcam.h
afterinstall:
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
${.CURDIR}/qcam ${DESTDIR}/usr/bin
.include <bsd.kmod.mk>