mirror of
https://github.com/opnsense/src.git
synced 2026-02-21 00:40:33 -05:00
11 lines
200 B
Makefile
11 lines
200 B
Makefile
# $FreeBSD$
|
|
|
|
LIB= ufs
|
|
SRCS= block.c error.c inode.c sblock.c type.c
|
|
INCS= libufs.h
|
|
CFLAGS+= -I${.CURDIR} -D_LIBUFS
|
|
.if defined(LIBUFS_DEBUG)
|
|
CFLAGS+= -D_LIBUFS_DEBUGGING
|
|
.endif
|
|
|
|
.include <bsd.lib.mk>
|