]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/modules/tarfs/Makefile
libevent: Import libevent 2.1.12
[FreeBSD/FreeBSD.git] / sys / modules / tarfs / Makefile
1
2 .PATH: ${.CURDIR:H:H}/fs/tarfs
3
4 KMOD=   tarfs
5 SRCS=   opt_tarfs.h \
6         vnode_if.h \
7         tarfs_io.c \
8         tarfs_subr.c \
9         tarfs_vnops.c \
10         tarfs_vfsops.c
11
12 .if !defined(KERNBUILDDIR)
13 CFLAGS+=        -DZSTDIO
14 .ifdef TARFS_DEBUG
15 CFLAGS+=        -DTARFS_DEBUG
16 .endif
17 .endif
18
19 SRCS+=  opt_zstdio.h
20 CFLAGS+=        -I${SRCTOP}/sys/contrib/zstd/lib/freebsd
21
22 .include <bsd.kmod.mk>