02c78a9c21
compile 1) remove rubbish no longer needed 2) correct existing Makefiles 3) add new makefiles where needed 4) correct code, header files and man pages where necessary PLEASE NOTE - after this you will need to make install in eBones/include, and mamake obj depend all install in eBones/lib before doing a make obj depend all install in eBones/. (I am going 6to fix src/Makefile next) PS - I hate slow international links - apologies for all the typos
12 lines
356 B
Makefile
12 lines
356 B
Makefile
# $Id: Makefile,v 1.2 1995/09/07 20:50:44 mark Exp $
|
|
|
|
PROG= kadmind
|
|
SRCS= admin_server.c kadm_funcs.c kadm_ser_wrap.c kadm_server.c
|
|
CFLAGS+=-DPOSIX -I${.CURDIR}/../../include -I${.CURDIR}/../../lib/libkadm -Wall
|
|
DPADD= ${LIBKDB} ${LIBKRB} ${LIBDES}
|
|
LDADD+= -lkadm -lkdb -lkrb -ldes -lacl -lcom_err
|
|
MAN8= kadmind.8
|
|
BINDIR= /usr/sbin
|
|
|
|
.include <bsd.prog.mk>
|