diff options
author | Hans Insulander <hin@cvs.openbsd.org> | 2002-06-07 05:03:00 +0000 |
---|---|---|
committer | Hans Insulander <hin@cvs.openbsd.org> | 2002-06-07 05:03:00 +0000 |
commit | 897452938eeb640001f2551c37d01ca3036867db (patch) | |
tree | aa1acfcd1450dbaba23bfa2cd37a58c514e2d300 /usr.sbin/afs/libexec | |
parent | 266e5cbd0681a43061c848b6685a54472b02e153 (diff) |
Buildsystem for arla-0.35.7
Diffstat (limited to 'usr.sbin/afs/libexec')
-rw-r--r-- | usr.sbin/afs/libexec/Makefile | 5 | ||||
-rw-r--r-- | usr.sbin/afs/libexec/afsd/Makefile | 44 |
2 files changed, 49 insertions, 0 deletions
diff --git a/usr.sbin/afs/libexec/Makefile b/usr.sbin/afs/libexec/Makefile new file mode 100644 index 00000000000..7f29db7cd33 --- /dev/null +++ b/usr.sbin/afs/libexec/Makefile @@ -0,0 +1,5 @@ +# $OpenBSD: Makefile,v 1.1 2002/06/07 05:02:58 hin Exp $ + +SUBDIR= afsd + +.include <bsd.subdir.mk> diff --git a/usr.sbin/afs/libexec/afsd/Makefile b/usr.sbin/afs/libexec/afsd/Makefile new file mode 100644 index 00000000000..4b817410fd3 --- /dev/null +++ b/usr.sbin/afs/libexec/afsd/Makefile @@ -0,0 +1,44 @@ +# $OpenBSD: Makefile,v 1.1 2002/06/07 05:02:58 hin Exp $ + +AFSTOPDIR= ../.. +.include <../../Makefile.inc> + +PROG = afsd +MAN = afsd.8 CellServDB.5 ThisCell.5 SuidCells.5 +BINDIR = /usr/libexec +LDADD += ${LIBARLA} ${LIBROKEN} -lkafs -lkrb +DPADD += ${LIBARLA} ${LIBROKEN} + +CFLAGS += -I${AFSSRC}/util -I${AFSSRC}/arlad \ + -I${AFSSRC} -I${DESTDIR}/usr/include/kerberosIV + +SRCS = adir.c \ + arla.c \ + arlad.c \ + arladeb.c \ + arladebu.c \ + bsd-subr.c \ + cmcb.c \ + conn.c \ + cred.c \ + darla.c \ + discon_log.c \ + dynroot.c \ + fcache.c \ + fprio.c \ + inter.c \ + kernel.c \ + messages.c \ + reconnect.c \ + subr.c \ + volcache.c \ + xfs.c + +.PATH: ${AFSSRC}/arlad + +# XXX This is a kludge but i don't know how to handle this +afsd.8: + ln -s ${AFSSRC}/arlad/arlad.8 afsd.8 +CLEANFILES+=afsd.8 fbuf.h fdir.h afs_dir.h + +.include <bsd.prog.mk> |