From cfe090e1fa2f8b32d6646260061f5df835e4486e Mon Sep 17 00:00:00 2001 From: Matt Jacob Date: Fri, 21 Jan 2000 23:18:08 +0000 Subject: [PATCH] Specify the system directory for which we put in our include path as a separate line so we can override it on the command line if we need to. Reviewed by: ken@freebsd.org --- sbin/camcontrol/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sbin/camcontrol/Makefile b/sbin/camcontrol/Makefile index 219e59fbe8fc..e91c2056bcfa 100644 --- a/sbin/camcontrol/Makefile +++ b/sbin/camcontrol/Makefile @@ -1,10 +1,12 @@ +# $FreeBSD$ MAINTAINER=ken@FreeBSD.ORG PROG= camcontrol SRCS= camcontrol.c modeedit.c MAN8= camcontrol.8 +SDIR= ${.CURDIR}/../../sys -CFLAGS+= -I${.CURDIR}/../../sys +CFLAGS+= -I${SDIR} DPADD= ${LIBCAM} LDADD+= -lcam