diff options
author | mjacob <mjacob@FreeBSD.org> | 2000-01-21 23:18:08 +0000 |
---|---|---|
committer | mjacob <mjacob@FreeBSD.org> | 2000-01-21 23:18:08 +0000 |
commit | 0ecff9cf930bbfc1fd156fe08862d435de336a2b (patch) | |
tree | 3e78975eb6d1877cce40fb8d3ca3966b2bb28914 /sbin/camcontrol | |
parent | 0798c26225c9f26b27564a819a10bd67389c1bac (diff) | |
download | FreeBSD-src-0ecff9cf930bbfc1fd156fe08862d435de336a2b.zip FreeBSD-src-0ecff9cf930bbfc1fd156fe08862d435de336a2b.tar.gz |
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
Diffstat (limited to 'sbin/camcontrol')
-rw-r--r-- | sbin/camcontrol/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sbin/camcontrol/Makefile b/sbin/camcontrol/Makefile index 219e59f..e91c205 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 |