NetBSD/lib/libkadm5srv/Makefile
lukem a93ea220fc Rework how dependency generation is performed:
* DPSRCS contains extra dependencies, but is _NOT_ added to CLEANFILES.
  This is a change of behaviour.  If a Makefile wants the clean semantics
  it must specifically append to CLEANFILES.
  Resolves PR toolchain/5204.

* To recap: .d (depend) files are generated for all files in SRCS and DPSRCS
  that have a suffix of: .c .m .s .S .C .cc .cpp .cxx

* If YHEADER is set, automatically add the .y->.h to DPSRCS & CLEANFILES

* Ensure that ${OBJS} ${POBJS} ${LOBJS} ${SOBJS} *.d  depend upon ${DPSRCS}

* Deprecate the (short lived) DEPENDSRCS


Update the various Makefiles to these new semantics; generally either
adding to CLEANFILES (because DPSRCS doesn't do that anymore), or replacing
specific .o dependencies with DPSRCS entries.

Tested with "make -j 8 distribution" and "make distribution".
2003-08-01 17:03:41 +00:00

93 lines
1.8 KiB
Makefile

# $NetBSD: Makefile,v 1.22 2003/08/01 17:03:58 lukem Exp $
NOLINT= # defined
.include <bsd.own.mk>
DIST= ${NETBSDSRCDIR}/crypto/dist
.PATH: ${DIST}/heimdal/lib/kadm5
WARNS?= 1
.include <bsd.own.mk>
LIB= kadm5srv
.if ${USETOOLS} != "yes"
COMPILEETOBJ!= cd ${NETBSDSRCDIR}/lib/libcom_err/compile_et && ${PRINTOBJDIR}
TOOL_COMPILE_ET= ${COMPILEETOBJ}/compile_et
.endif
kadm5_err.c kadm5_err.h: kadm5_err.et ${TOOL_COMPILE_ET}
${TOOL_COMPILE_ET} ${DIST}/heimdal/lib/kadm5/kadm5_err.et
ERR_FILES= kadm5_err.c
DPSRCS+= kadm5_err.h
CLEANFILES+= kadm5_err.h kadm5_err.c
SRCS = \
acl.c \
bump_pw_expire.c \
chpass_c.c \
chpass_s.c \
common_glue.c \
context_s.c \
create_c.c \
create_s.c \
delete_c.c \
delete_s.c \
destroy_c.c \
destroy_s.c \
ent_setup.c \
error.c \
flush_c.c \
flush_s.c \
free.c \
get_c.c \
get_princs_c.c \
get_princs_s.c \
get_s.c \
init_c.c \
init_s.c \
keys.c \
log.c \
marshall.c \
modify_c.c \
modify_s.c \
password_quality.c \
privs_c.c \
privs_s.c \
randkey_c.c \
randkey_s.c \
rename_c.c \
rename_s.c \
send_recv.c \
server_glue.c \
set_keys.c \
set_modifier.c \
$(ERR_FILES)
ASN1!= cd ${NETBSDSRCDIR}/lib/libasn1 && ${PRINTOBJDIR}
KRB5!= cd ${NETBSDSRCDIR}/lib/libkrb5 && ${PRINTOBJDIR}
HDB!= cd ${NETBSDSRCDIR}/lib/libhdb && ${PRINTOBJDIR}
CPPFLAGS+= -I. \
-I${ASN1} \
-I${KRB5} \
-I${DIST}/heimdal/lib/krb5 \
-I${DIST}/heimdal/lib/asn1 \
-I${HDB} \
-I${DIST}/heimdal/lib/hdb \
-I${DIST}/heimdal/lib/asn1 \
-I${DIST}/heimdal/lib/com_err \
-I${NETBSDSRCDIR}/include/heimdal \
-I${NETBSDSRCDIR}/lib/libroken \
-I${DIST}/heimdal/lib/roken \
-DHAVE_CONFIG_H
.if ${MKPIC} == "no"
CPPFLAGS+= -DNO_DLOPEN
.endif
.include <bsd.lib.mk>