diff options
author | pjd <pjd@FreeBSD.org> | 2005-04-07 15:57:38 +0000 |
---|---|---|
committer | pjd <pjd@FreeBSD.org> | 2005-04-07 15:57:38 +0000 |
commit | ebb3a9b55bc4865ab615fc039c3b9bd3ff2ef685 (patch) | |
tree | f3faea520508d08073b53882fed389f7902b35e6 /sbin/geom | |
parent | fb37f69db4d964b4ce66def17219a9b35b47ac4a (diff) | |
download | FreeBSD-src-ebb3a9b55bc4865ab615fc039c3b9bd3ff2ef685.zip FreeBSD-src-ebb3a9b55bc4865ab615fc039c3b9bd3ff2ef685.tar.gz |
Allow classes to specify local source files.
MFC after: 3 weeks
Diffstat (limited to 'sbin/geom')
-rw-r--r-- | sbin/geom/class/Makefile.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/geom/class/Makefile.inc b/sbin/geom/class/Makefile.inc index 112756d..63109c2 100644 --- a/sbin/geom/class/Makefile.inc +++ b/sbin/geom/class/Makefile.inc @@ -2,9 +2,9 @@ SHLIBDIR?=${CLASS_DIR} SHLIB_NAME?=geom_${CLASS}.so -LINKS= ${BINDIR}/geom ${BINDIR}/g${CLASS} +LINKS= ${BINDIR}/geom ${BINDIR}/g${CLASS} MAN= g${CLASS}.8 -SRCS= geom_${CLASS}.c subr.c +SRCS+= geom_${CLASS}.c subr.c CFLAGS+= -I${.CURDIR}/../.. |