freebsd-dev/kerberos5/libexec/hprop/Makefile
Mark Murray 069b88eb3a Big fixup of the makefiles. Sort out the dependancies so that "make"
without "make depend" works, "make -j N" works, and lists of source
files are made vertical to reduce future diffs.
2003-07-18 13:21:58 +00:00

35 lines
613 B
Makefile

# $FreeBSD$
PROG= hprop
SRCS= \
hprop.c \
mit_dump.c \
v4_dump.c \
hprop.h \
kadb.h \
${.OBJDIR}/hdb_err.h
CFLAGS+=-I${KRB5DIR}/include \
-I${KRB5DIR}/kdc \
-I${KRB5DIR}/lib/krb5 \
-I${KRB5DIR}/lib/asn1 \
-I${KRB5DIR}/lib/hdb \
-I${KRB5DIR}/lib/roken \
-I${KRB5DIR}/kuser \
-I${ASN1OBJDIR} \
-I${HDBOBJDIR} \
-I${.OBJDIR}
LDADD= -lkrb5 -lkafs5 -lhdb -lroken ${LIBVERS} \
-lasn1 -lcrypto -lcrypt -lcom_err
DPADD= ${LIBKRB5} ${LIBKAFS5} ${LIBHDB} ${LIBROKEN} ${LIBVERS} \
${LIBASN1} ${LIBCRYPTO} ${LIBCRYPT} ${LIBCOM_ERR}
MAN= hprop.8
.include <bsd.prog.mk>
.PATH: ${KRB5DIR}/kdc