49b2a6863b
DEBUG and d_error initialisation into an ERROR macro, which can both trace and set the d_error field. Much a more meaningful thing, I should say.
12 lines
192 B
Makefile
12 lines
192 B
Makefile
# $FreeBSD$
|
|
|
|
LIB= ufs
|
|
SRCS= block.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>
|