mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-11-26 20:12:44 +00:00
e9ac41698b
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
39 lines
914 B
Makefile
39 lines
914 B
Makefile
PACKAGE= ufs
|
|
LIB= ufs
|
|
SHLIBDIR?= /lib
|
|
SHLIB_MAJOR= 8
|
|
|
|
SRCS= block.c cgroup.c gsb_crc32.c inode.c sblock.c type.c ffs_subr.c
|
|
SRCS+= ffs_tables.c
|
|
INCS= libufs.h
|
|
|
|
MAN= bread.3 cgread.3 getinode.3 libufs.3 sbread.3 ufs_disk_close.3
|
|
MLINKS+= bread.3 bwrite.3
|
|
MLINKS+= bread.3 berase.3
|
|
MLINKS+= cgread.3 cgread1.3
|
|
MLINKS+= cgread.3 cgget.3
|
|
MLINKS+= cgread.3 cgwrite.3
|
|
MLINKS+= cgread.3 cgwrite1.3
|
|
MLINKS+= cgread.3 cgput.3
|
|
MLINKS+= getinode.3 putinode.3
|
|
MLINKS+= sbread.3 sbwrite.3
|
|
MLINKS+= sbread.3 sbget.3
|
|
MLINKS+= sbread.3 sbsearch.3
|
|
MLINKS+= sbread.3 sbfind.3
|
|
MLINKS+= sbread.3 sbput.3
|
|
MLINKS+= ufs_disk_close.3 ufs_disk_fillout.3
|
|
MLINKS+= ufs_disk_close.3 ufs_disk_fillout_blank.3
|
|
MLINKS+= ufs_disk_close.3 ufs_disk_write.3
|
|
|
|
.PATH: ${SRCTOP}/sys/libkern ${SRCTOP}/sys/ufs/ffs
|
|
|
|
WARNS?= 2
|
|
|
|
CFLAGS+= -D_LIBUFS
|
|
.if defined(LIBUFS_DEBUG)
|
|
CFLAGS+= -D_LIBUFS_DEBUGGING
|
|
.endif
|
|
CFLAGS+= -I${.CURDIR}
|
|
|
|
.include <bsd.lib.mk>
|