1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-18 10:35:55 +00:00
freebsd/sbin/camcontrol/Makefile

16 lines
239 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= 1
2002-01-24 16:53:08 +00:00
DPADD= ${LIBCAM} ${LIBSBUF}
LDADD= -lcam -lsbuf
MAN= camcontrol.8
.include <bsd.prog.mk>