Makefile (cc1a53bc1aea0675d64e9547cdca241612906592) | Makefile (240afd8c1fcc8c5f29dbd4ff0c915795d414405d) |
---|---|
1# $FreeBSD$ 2 3SRCDIR:=${.PARSEDIR:tA} 4 5.include <src.opts.mk> 6 7PROG= makefs 8 --- 5 unchanged lines hidden (view full) --- 14 msdos.c \ 15 mtree.c \ 16 walk.c 17MAN= makefs.8 18 19NO_WCAST_ALIGN= 20CSTD= c11 21 | 1# $FreeBSD$ 2 3SRCDIR:=${.PARSEDIR:tA} 4 5.include <src.opts.mk> 6 7PROG= makefs 8 --- 5 unchanged lines hidden (view full) --- 14 msdos.c \ 15 mtree.c \ 16 walk.c 17MAN= makefs.8 18 19NO_WCAST_ALIGN= 20CSTD= c11 21 |
22.if ${MK_ZFS} != "no" 23SRCS+= zfs.c 24CFLAGS+=-I${SRCDIR}/zfs \ 25 -I${SRCTOP}/stand/libsa \ 26 -I${SRCTOP}/sys/cddl/boot 27 28CFLAGS+= -DHAVE_ZFS 29 30.include "${SRCDIR}/zfs/Makefile.inc" 31.endif 32 |
|
22.include "${SRCDIR}/cd9660/Makefile.inc" 23.include "${SRCDIR}/ffs/Makefile.inc" 24.include "${SRCDIR}/msdos/Makefile.inc" 25 26CFLAGS+=-DHAVE_STRUCT_STAT_ST_FLAGS=1 27 28.PATH: ${SRCTOP}/contrib/mtree 29CFLAGS+=-I${SRCTOP}/contrib/mtree --- 13 unchanged lines hidden --- | 33.include "${SRCDIR}/cd9660/Makefile.inc" 34.include "${SRCDIR}/ffs/Makefile.inc" 35.include "${SRCDIR}/msdos/Makefile.inc" 36 37CFLAGS+=-DHAVE_STRUCT_STAT_ST_FLAGS=1 38 39.PATH: ${SRCTOP}/contrib/mtree 40CFLAGS+=-I${SRCTOP}/contrib/mtree --- 13 unchanged lines hidden --- |