12f05b8446
lightly used. Find the proper .m file when we depend on *_if.[ch] in the srcs line, with seat-belts for false positive matches. This uses make's path mechanism. A further refinement would be to calculate this once, and then pass the resulting _MPATH to modules submakes. Differential Revision: https://reviews.freebsd.org/D2327
23 lines
387 B
Makefile
23 lines
387 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../kgssapi/krb5
|
|
KMOD= kgssapi_krb5
|
|
|
|
SRCS= krb5_mech.c \
|
|
kcrypto.c \
|
|
kcrypto_des.c \
|
|
kcrypto_des3.c \
|
|
kcrypto_aes.c \
|
|
kcrypto_arcfour.c \
|
|
opt_inet6.h
|
|
|
|
SRCS+= kgss_if.h gssd.h
|
|
CLEANFILES= gssd.h
|
|
|
|
S= ${.CURDIR}/../..
|
|
|
|
gssd.h: $S/kgssapi/gssd.x
|
|
RPCGEN_CPP=${CPP:Q} rpcgen -hM $S/kgssapi/gssd.x | grep -v pthread.h > gssd.h
|
|
|
|
.include <bsd.kmod.mk>
|