614304eccc
(and are in /usr/src/crypto/heimdal/). * Avoid race conditions with 'make -j<N>'.
17 lines
380 B
Makefile
17 lines
380 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= string2key
|
|
MAN= string2key.8
|
|
CFLAGS+= -I${KRB5DIR}/kdc \
|
|
-I${KRB5DIR}/lib/asn1 \
|
|
-I${KRB5DIR}/lib/krb5 \
|
|
-I${KRB5DIR}/lib/roken \
|
|
-I${KRB5DIR}/lib/windc
|
|
DPADD= ${LIBHDB} ${LIBKRB5} ${LIBROKEN} ${LIBASN1} ${LIBCRYPTO} \
|
|
${LIBCRYPT} ${LIBVERS}
|
|
LDADD= -lhdb -lkrb5 -lroken -lasn1 -lcrypto -lcrypt ${LIBVERS}
|
|
|
|
.include <bsd.prog.mk>
|
|
|
|
.PATH: ${KRB5DIR}/kdc
|