50a7fdaed8
and libdevstat, since the new way of doing things is to just list maintainership in src/MAINTAINERS. Also, remove duplicate entries in src/MAINTAINERS for those utilities. I already had entries for them.
16 lines
239 B
Makefile
16 lines
239 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= camcontrol
|
|
SRCS= camcontrol.c util.c
|
|
.if !defined(RELEASE_CRUNCH)
|
|
SRCS+= modeedit.c
|
|
.else
|
|
CFLAGS+= -DMINIMALISTIC
|
|
.endif
|
|
WARNS= 1
|
|
DPADD= ${LIBCAM} ${LIBSBUF}
|
|
LDADD= -lcam -lsbuf
|
|
MAN= camcontrol.8
|
|
|
|
.include <bsd.prog.mk>
|