mirror of
https://github.com/opnsense/src.git
synced 2026-02-14 00:04:14 -05:00
a seperate directory hierarchy used to build tools). This boils
down to replacing the use of ${.CURDIR} with either ${SRCDIR}
or ${SRCTOP}. SRCDIR is defined as the directory in which the
Makefile lives that bmake(1) is currently reading. Use SRCTOP
when reaching outside of makefs's directory.
9 lines
179 B
Makefile
9 lines
179 B
Makefile
# $FreeBSD$
|
|
#
|
|
|
|
.PATH: ${SRCDIR}/ffs ${SRCTOP}/sys/ufs/ffs
|
|
|
|
CFLAGS+= -I${SRCTOP}/sys/ufs/ffs
|
|
|
|
SRCS+= ffs_alloc.c ffs_balloc.c ffs_bswap.c ffs_subr.c ufs_bmap.c
|
|
SRCS+= buf.c mkfs.c
|