diff options
author | Otto Moerbeek <otto@cvs.openbsd.org> | 2010-02-16 08:25:56 +0000 |
---|---|---|
committer | Otto Moerbeek <otto@cvs.openbsd.org> | 2010-02-16 08:25:56 +0000 |
commit | 7643bea1d1aff20ba3de374bf5d95c055a17e38c (patch) | |
tree | f1d79a50678ca8a88910b6d166f0b6f94dd5b8c6 /sbin/newfs_ext2fs/Makefile | |
parent | 15528e21a56b3069df478d4e6a8fb58980f28411 (diff) |
Port of newfs_ext2fs from NetBSD. not hooked to the build yet.
ok miod@
Diffstat (limited to 'sbin/newfs_ext2fs/Makefile')
-rw-r--r-- | sbin/newfs_ext2fs/Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sbin/newfs_ext2fs/Makefile b/sbin/newfs_ext2fs/Makefile new file mode 100644 index 00000000000..72a520179e1 --- /dev/null +++ b/sbin/newfs_ext2fs/Makefile @@ -0,0 +1,11 @@ +# $OpenBSD: Makefile,v 1.1 2010/02/16 08:25:55 otto Exp $ +PROG= newfs_ext2fs +SRCS= newfs_ext2fs.c mke2fs.c ext2fs_bswap.c +MAN= newfs_ext2fs.8 + +DPADD+= ${LIBUTIL} +LDADD+= -lutil + +.PATH: ${.CURDIR}/../../sys/ufs/ext2fs + +.include <bsd.prog.mk> |