diff options
Diffstat (limited to 'sbin/geom/class')
-rw-r--r-- | sbin/geom/class/Makefile.inc | 14 | ||||
-rw-r--r-- | sbin/geom/class/concat/Makefile | 3 | ||||
-rw-r--r-- | sbin/geom/class/nop/Makefile | 3 | ||||
-rw-r--r-- | sbin/geom/class/stripe/Makefile | 3 |
4 files changed, 10 insertions, 13 deletions
diff --git a/sbin/geom/class/Makefile.inc b/sbin/geom/class/Makefile.inc index 5fbe1f5..711c087 100644 --- a/sbin/geom/class/Makefile.inc +++ b/sbin/geom/class/Makefile.inc @@ -1,13 +1,13 @@ # $FreeBSD$ -.include "../Makefile.inc" - -LIBDIR?=${CLASSDIR} -SHLIB_MAJOR=1 +LIBDIR?= ${CLASSDIR} -SRCS= geom_${CLASS}.c subr.c -SHLIB_NAME?=geom_${CLASS}.so.${SHLIB_MAJOR} +SHLIB_MAJOR= 1 +SHLIB_NAME?= geom_${CLASS}.so.${SHLIB_MAJOR} LINKS= ${BINDIR}/geom ${BINDIR}/g${CLASS} MAN= g${CLASS}.8 +SRCS= geom_${CLASS}.c subr.c + +CFLAGS+= -I${.CURDIR}/../.. -CFLAGS+=-I${.CURDIR}/../.. +.include "../Makefile.inc" diff --git a/sbin/geom/class/concat/Makefile b/sbin/geom/class/concat/Makefile index c2b9100..16f81a5 100644 --- a/sbin/geom/class/concat/Makefile +++ b/sbin/geom/class/concat/Makefile @@ -1,9 +1,8 @@ # $FreeBSD$ -.PATH: ${.CURDIR}/../../misc +.PATH: ${.CURDIR}/../../misc CLASS= concat - NOMAN= notyet .include <bsd.lib.mk> diff --git a/sbin/geom/class/nop/Makefile b/sbin/geom/class/nop/Makefile index 0c62d32..dc668aa 100644 --- a/sbin/geom/class/nop/Makefile +++ b/sbin/geom/class/nop/Makefile @@ -1,9 +1,8 @@ # $FreeBSD$ -.PATH: ${.CURDIR}/../../misc +.PATH: ${.CURDIR}/../../misc CLASS= nop - NOMAN= notyet .include <bsd.lib.mk> diff --git a/sbin/geom/class/stripe/Makefile b/sbin/geom/class/stripe/Makefile index 7db131f..35e9f13 100644 --- a/sbin/geom/class/stripe/Makefile +++ b/sbin/geom/class/stripe/Makefile @@ -1,9 +1,8 @@ # $FreeBSD$ -.PATH: ${.CURDIR}/../../misc +.PATH: ${.CURDIR}/../../misc CLASS= stripe - NOMAN= notyet .include <bsd.lib.mk> |