head	1.5;
access;
symbols
	RELENG_2_1_0_BP:1.2
	RELENG_2_0_5_RELEASE:1.2
	RELENG_2_0_5:1.2.0.2
	RELENG_2_0_5_BP:1.2
	RELENG_2_0_5_ALPHA:1.2;
locks; strict;
comment	@# @;


1.5
date	95.12.30.18.30.36;	author peter;	state dead;
branches;
next	1.4;

1.4
date	95.09.07.21.36.55;	author markm;	state Exp;
branches;
next	1.3;

1.3
date	95.08.25.22.50.22;	author markm;	state Exp;
branches;
next	1.2;

1.2
date	95.01.20.22.08.14;	author wollman;	state Exp;
branches;
next	1.1;

1.1
date	95.01.20.02.47.48;	author wollman;	state Exp;
branches;
next	;


desc
@@


1.5
log
@recording cvs-1.6 file death
@
text
@#	$Id: Makefile,v 1.4 1995/09/07 21:36:55 markm Exp peter $

BINDIR=	/usr/bin
PROG=	kadmin
SRCS=	kadmin.c kadmin_cmds.c
CLEANFILES+=	kadmin_cmds.c
CFLAGS+=	-DPOSIX -I${.CURDIR}/../include -I${KRBOBJDIR}
CFLAGS+=	-I${.CURDIR}/../libkadm -Wall
LDADD+=	-L${KADMOBJDIR} -lkadm -L${KRBOBJDIR} -lkrb -ldes
LDADD+=	-lss -lcom_err
MAN8=	kadmin.8

kadmin_cmds.c:	kadmin_cmds.ct
	test -e kadmin_cmds.ct || ln -s ${.CURDIR}/kadmin_cmds.ct .
	mk_cmds kadmin_cmds.ct

.include <bsd.prog.mk>


@


1.4
log
@Major cleanup of eBones code:

- Get all functions prototyped or at least defined before use.
- Make code compile (Mostly) clean with -Wall set
- Start to reduce the degree to which DES aka libdes is built in.
- get all functions to the same uniform standard of definition:
int
foo(a, b)
int a;
int *b;
{
   :
}
- fix numerous bugs exposed by above processes.

Note - this replaces the previous work which used an unpopular function
 definition style.
@
text
@d1 1
a1 1
#	$Id: Makefile,v 1.1 1995/07/18 16:36:53 mark Exp $
@


1.3
log
@Start the eBones cleanup ball rolling.
These are the start of a lot of work to clean up the FreeBSD eBones code.
these changes include, but are not limited to:
- Create prototypes for all the library routines
- Make all the libraries compile clean with -Wall set
- Fix numerous small bugs shown up in the above process
- Prepare the code for libdes's removal to secure/
- add register, registerd and make_keypair to the make
Lots more will follow in days to come.

OK'ed by: rgrimes
@
text
@d8 2
a9 2
CFLAGS+=	-I${.CURDIR}/../libkadm
LDADD+=	-L${KADMOBJDIR} -lkadm -L${KRBOBJDIR} -lkrb -L${DESOBJDIR} -ldes
d11 1
a11 1
NOMAN=		# man page is in ../man
@


1.2
log
@Fix bonehead /usr/lib -> /usr/bin.
@
text
@d1 1
a1 1
#	$Id: Makefile,v 1.1 1995/01/20 02:47:48 wollman Exp $
@


1.1
log
@The user side of the kadmin protocol.  HOW-TO describes how to recreate
this based just on the eBones distribution.
@
text
@d1 1
a1 1
#	$Id$
d3 1
a3 1
BINDIR=	/usr/lib
@
