summaryrefslogtreecommitdiffstats
path: root/src/Makefile
diff options
context:
space:
mode:
authorDaniil Cherednik <dan.cherednik@gmail.com>2020-12-03 00:37:14 +0300
committerDaniil Cherednik <dan.cherednik@gmail.com>2020-12-03 00:37:14 +0300
commitc7b09f57b650d1a22fd537d3f45d85b18d5aa253 (patch)
tree6264de6a9aeb28f6072819b68ea034868e293d95 /src/Makefile
downloadufs_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/Makefile11
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>