freebsd-dev/kerberos5/libexec/hpropd/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

33 lines
602 B
Makefile

# $FreeBSD$
PROG= hpropd
SRCS= \
hpropd.c \
hprop.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} \
${LDAPCFLAGS}
LDADD= -lkrb5 -lhdb -lroken ${LIBVERS} \
-lasn1 -lcrypto -lcrypt -lcom_err ${LDAPLDADD}
DPADD= ${LIBKRB5} ${LIBHDB} ${LIBROKEN} ${LIBVERS} \
${LIBASN1} ${LIBCRYPTO} ${LIBCRYPT} ${LIBCOM_ERR} ${LDAPLIBS}
MAN= hpropd.8
.include <bsd.prog.mk>
.PATH: ${KRB5DIR}/kdc