Fix build, and make parallel build much more robust.

This commit is contained in:
Mark Murray 2001-02-14 19:47:24 +00:00
parent f6213d478d
commit 5fa0a06cbe
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=72491
7 changed files with 10 additions and 5 deletions

View File

@ -24,6 +24,7 @@ SRCS= \
get_princs_c.c \
init_c.c \
kadm5_err.c \
kadm5_err.h \
kadm5_locl.h \
marshall.c \
modify_c.c \

View File

@ -29,6 +29,7 @@ SRCS= \
get_s.c \
init_s.c \
kadm5_err.c \
kadm5_err.h \
kadm5_locl.h \
keys.c \
log.c \

View File

@ -106,7 +106,8 @@ SRCS= \
warn.c \
write_message.c \
krb5_err.c \
heim_err.c
heim_err.c \
heim_err.h
INCLUDES=${KRB5DIR}/lib/krb5/krb5.h ${.CURDIR}/../../include/krb5-types.h \
${KRB5DIR}/lib/krb5/krb5-protos.h heim_err.h krb5_err.h

View File

@ -53,7 +53,6 @@ SRCS= \
strnlen.c \
strsep_copy.c \
strupr.c \
print_version.h \
roken.h
NOPIC= yes

View File

@ -8,7 +8,8 @@ CFLAGS+= -I${KRB5DIR}/include \
-I${.OBJDIR}
SRCS= \
print_version.c
print_version.c \
print_version.h
install:

View File

@ -16,7 +16,8 @@ CFLAGS+= -I${KRB5DIR}/include \
_krb4libs= -lkrb -lkafs
_krb4deps= ${LIBKRB} ${LIBKAFS}
.endif
LDADD= -L${KRB5OBJDIR} -lkrb5 \
LDADD= -L${HDBOBJDIR} -lhdb \
-L${KRB5OBJDIR} -lkrb5 \
-L${ROKENOBJDIR} -lroken \
-L${VERSOBJDIR} -lvers \
${_krb4libs} \

View File

@ -16,7 +16,8 @@ CFLAGS+= -I${KRB5DIR}/include \
_krb4libs= -lkrb -lkafs
_krb4deps= ${LIBKRB} ${LIBKAFS}
.endif
LDADD= -L${KRB5OBJDIR} -lkrb5 \
LDADD= -L${HDBOBJDIR} -lhdb \
-L${KRB5OBJDIR} -lkrb5 \
-L${ROKENOBJDIR} -lroken \
-L${VERSOBJDIR} -lvers \
${_krb4libs} \