1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-25 11:37:56 +00:00
freebsd/sbin/camcontrol/Makefile

16 lines
240 B
Makefile
Raw Normal View History

# $FreeBSD$
2002-01-24 16:53:08 +00:00
PROG= camcontrol
SRCS= camcontrol.c util.c
.if !defined(RELEASE_CRUNCH)
SRCS+= modeedit.c
2002-01-24 16:53:08 +00:00
.else
CFLAGS+= -DMINIMALISTIC
.endif
WARNS?= 6
2002-01-24 16:53:08 +00:00
DPADD= ${LIBCAM} ${LIBSBUF}
LDADD= -lcam -lsbuf
MAN= camcontrol.8
.include <bsd.prog.mk>