opnsense-src/sys/modules/tarfs/Makefile
Warner Losh e9ac41698b Remove residual blank line at start of Makefile
This is a residual of the $FreeBSD$ removal.

MFC After: 3 days (though I'll just run the command on the branches)
Sponsored by: Netflix
2024-07-15 16:43:39 -06:00

21 lines
338 B
Makefile

.PATH: ${.CURDIR:H:H}/fs/tarfs
KMOD= tarfs
SRCS= opt_tarfs.h \
vnode_if.h \
tarfs_io.c \
tarfs_subr.c \
tarfs_vnops.c \
tarfs_vfsops.c
.if !defined(KERNBUILDDIR)
CFLAGS+= -DZSTDIO
.ifdef TARFS_DEBUG
CFLAGS+= -DTARFS_DEBUG
.endif
.endif
SRCS+= opt_zstdio.h
CFLAGS+= -I${SRCTOP}/sys/contrib/zstd/lib/freebsd
.include <bsd.kmod.mk>