mirror of
https://github.com/opnsense/src.git
synced 2026-06-05 14:54:21 -04:00
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
21 lines
338 B
Makefile
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>
|