diff options
author | Daniil Cherednik <dan.cherednik@gmail.com> | 2020-12-03 00:37:14 +0300 |
---|---|---|
committer | Daniil Cherednik <dan.cherednik@gmail.com> | 2020-12-03 00:37:14 +0300 |
commit | c7b09f57b650d1a22fd537d3f45d85b18d5aa253 (patch) | |
tree | 6264de6a9aeb28f6072819b68ea034868e293d95 /src/Makefile | |
download | ufs_ffinfo-c7b09f57b650d1a22fd537d3f45d85b18d5aa253.tar.gz |
ufs_ffinfo - tool to get free space fragmentation info for
FreeBSD UFS file system. First commit.
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile new file mode 100644 index 0000000..4adfe0e --- /dev/null +++ b/src/Makefile @@ -0,0 +1,11 @@ + +PACKAGE=runtime +PROG= ufs_ffinfo +SRCS= ufs_ffinfo.c +LIBADD= ufs +WARNS?= 6 +CFLAGS+= -I${.CURDIR} + +.PATH: ${SRCTOP}/sys/ufs/ffs + +.include <bsd.prog.mk> |