diff options
author | Niels Provos <provos@cvs.openbsd.org> | 2000-06-18 22:07:26 +0000 |
---|---|---|
committer | Niels Provos <provos@cvs.openbsd.org> | 2000-06-18 22:07:26 +0000 |
commit | 48893562fdfa12c4f376d2556da18e817a34484f (patch) | |
tree | 033e9aaa47f5617ba6ffbcf7e071ffb8f8f71b07 /usr.bin/tcfs/tcfsmng | |
parent | 47bc7a26b81967e77c0f021899f1544966df67e2 (diff) |
Initial import of very much rewritten TCFS userland. This code is still
nasty.
Diffstat (limited to 'usr.bin/tcfs/tcfsmng')
-rw-r--r-- | usr.bin/tcfs/tcfsmng/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/usr.bin/tcfs/tcfsmng/Makefile b/usr.bin/tcfs/tcfsmng/Makefile new file mode 100644 index 00000000000..d7b456c037b --- /dev/null +++ b/usr.bin/tcfs/tcfsmng/Makefile @@ -0,0 +1,15 @@ +.PATH: ${.CURDIR}/.. + +PROG= tcfsmng +BINOWN= root + +BINDIR= /usr/bin +NOMAN= +#MAN= tcfsmng.1 + +SRCS= tcfsmng.c tcfsadduser.c tcfsrmuser.c tcfsaddgroup.c tcfsrmgroup.c + +.include <bsd.prog.mk> + +LDADD+= -lutil -ldes +DPADD+= ${LIBUTIL} ${LIBDES} |