summaryrefslogtreecommitdiff
path: root/kerberosIV/usr.bin/kftp
diff options
context:
space:
mode:
authorHans Insulander <hin@cvs.openbsd.org>2000-02-25 16:35:36 +0000
committerHans Insulander <hin@cvs.openbsd.org>2000-02-25 16:35:36 +0000
commiteaefe7b6d0fcd3b71b44714d3e70781aad9aaeac (patch)
treed9a6cd7c132405c2b7af6f7827073a561810f5a9 /kerberosIV/usr.bin/kftp
parent63cfa1137e0df97cf1498c4022eed8d29d6229ee (diff)
Add build system for KerberosIV
(ok art@)
Diffstat (limited to 'kerberosIV/usr.bin/kftp')
-rw-r--r--kerberosIV/usr.bin/kftp/Makefile19
1 files changed, 19 insertions, 0 deletions
diff --git a/kerberosIV/usr.bin/kftp/Makefile b/kerberosIV/usr.bin/kftp/Makefile
new file mode 100644
index 00000000000..8725a827b12
--- /dev/null
+++ b/kerberosIV/usr.bin/kftp/Makefile
@@ -0,0 +1,19 @@
+# $OpenBSD: Makefile,v 1.1 2000/02/25 16:35:30 hin Exp $
+
+PROG = kftp
+
+KRBDEPTH=../..
+.include <../../Makefile.inc>
+
+.PATH: ${KRBSRC}/appl/ftp/common ${KRBSRC}/appl/ftp/ftp
+
+CFLAGS += -I. -I${KRBSRC}/appl/ftp/common
+LDADD += ${LIBROKEN} -lkrb -lkafs -ldes -lreadline -lcurses
+
+SRCS = sockbuf.c buffer.c common.h cmds.c cmdtab.c extern.h \
+ ftp.c ftp_locl.h ftp_var.h main.c pathnames.h ruserpass.c \
+ domacro.c globals.c security.c security.h krb4.c kauth.c
+
+MAN = ftp.1
+
+.include <bsd.prog.mk>