Changeset View
Changeset View
Standalone View
Standalone View
sbin/zfsbootcfg/Makefile
- This file was added.
Property | Old Value | New Value |
---|---|---|
svn:eol-style | null | native \ No newline at end of property |
svn:keywords | null | FreeBSD=%H \ No newline at end of property \ No newline at end of property \ No newline at end of property \ No newline at end of property \ No newline at end of property |
svn:mime-type | null | text/plain \ No newline at end of property |
# @(#)Makefile 8.4 (Berkeley) 6/22/95 | |||||
# $FreeBSD$ | |||||
PROG= zfsbootcfg | |||||
WARNS?= 1 | |||||
MAN= zfsbootcfg.8 | |||||
LIBADD+=zfs | |||||
LIBADD+=nvpair | |||||
LIBADD+=umem | |||||
LIBADD+=uutil | |||||
LIBADD+=geom | |||||
CFLAGS+= -I${SRCTOP}/cddl/compat/opensolaris/include | |||||
CFLAGS+= -I${SRCTOP}/cddl/compat/opensolaris/lib/libumem | |||||
rpokala: ISTR seeing something on the lists that ${.CURDIR}/../../ should be avoided, and to use… | |||||
Done Inline ActionsI'm not sure there's been an explicit mention, but ${SRCTOP} is indeed preferred in new Makefiles. emaste: I'm not sure there's been an explicit mention, but `${SRCTOP}` is indeed preferred in new… | |||||
CFLAGS+= -I${SRCTOP}/cddl/contrib/opensolaris/lib/libzfs/common | |||||
CFLAGS+= -I${SRCTOP}/cddl/contrib/opensolaris/lib/libzfs_core/common | |||||
CFLAGS+= -I${SRCTOP}/cddl/contrib/opensolaris/lib/libzpool/common | |||||
CFLAGS+= -I${SRCTOP}/cddl/contrib/opensolaris/lib/libnvpair | |||||
CFLAGS+= -I${SRCTOP}/sys/cddl/compat/opensolaris | |||||
CFLAGS+= -I${SRCTOP}/sys/cddl/contrib/opensolaris/uts/common/fs/zfs | |||||
CFLAGS+= -I${SRCTOP}/sys/cddl/contrib/opensolaris/uts/common | |||||
CFLAGS+= -I${SRCTOP}/cddl/contrib/opensolaris/head | |||||
CFLAGS+= -DNEED_SOLARIS_BOOLEAN | |||||
.include <bsd.prog.mk> |
ISTR seeing something on the lists that ${.CURDIR}/../../ should be avoided, and to use ${SRCTOP} instead?