c164ff4992
At least, the old version is still good for the MFC though (where everything is still going the old way). ;-)
21 lines
352 B
Makefile
21 lines
352 B
Makefile
# $FreeBSD$
|
|
MAINTAINER=ken@FreeBSD.ORG
|
|
|
|
PROG= camcontrol
|
|
SRCS= camcontrol.c util.c
|
|
.if !defined(RELEASE_CRUNCH)
|
|
SRCS+= modeedit.c
|
|
.endif
|
|
MAN= camcontrol.8
|
|
SDIR= ${.CURDIR}/../../sys
|
|
|
|
CFLAGS+= -I${SDIR}
|
|
.if defined(RELEASE_CRUNCH)
|
|
CFLAGS+= -DMINIMALISTIC
|
|
.endif
|
|
WARNS= 0
|
|
DPADD= ${LIBCAM} ${LIBSBUF}
|
|
LDADD+= -lcam -lsbuf
|
|
|
|
.include <bsd.prog.mk>
|