mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-12-22 08:53:41 +01:00
b1ebdd50cb
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
24 lines
766 B
Makefile
24 lines
766 B
Makefile
# $Id: Makefile,v 1.1 1995/07/18 16:40:20 mark Exp $
|
|
|
|
LIB= kadm
|
|
|
|
SRCS= kadm_err.c kadm_stream.c kadm_supp.c kadm_cli_wrap.c
|
|
CFLAGS+= -I. -I${.CURDIR} -I${.CURDIR}/../include -I${KRBOBJDIR} -DPOSIX -Wall
|
|
CLEANFILES+= kadm_err.c kadm_err.h
|
|
|
|
kadm_err.c kadm_err.h: kadm_err.et
|
|
test -e kadm_err.et || ln -s ${.CURDIR}/kadm_err.et .
|
|
compile_et kadm_err.et
|
|
|
|
beforeinstall:
|
|
-cd ${.CURDIR}; cmp -s kadm.h \
|
|
${DESTDIR}/usr/include/kerberosIV/kadm.h || \
|
|
install -c -o ${BINOWN} -g ${BINGRP} -m 444 kadm.h \
|
|
${DESTDIR}/usr/include/kerberosIV
|
|
-cd ${.OBJDIR}; cmp -s kadm_err.h \
|
|
${DESTDIR}/usr/include/kerberosIV/kadm_err.h || \
|
|
install -c -o ${BINOWN} -g ${BINGRP} -m 444 kadm_err.h \
|
|
${DESTDIR}/usr/include/kerberosIV
|
|
|
|
.include <bsd.lib.mk>
|