11bf3600e8
- Dropped support for standalone builds, this was only partially supported anyway, and required so much magic in makefiles that made life dangerous (e.g., by using the custom yacc rules). - Got rid of .OBJDIR in makefiles -- makes building of individual files possible again. - Made the .x.c transformations -j safe. - Reprogrammed LDADD to fix static build of some utilities that was broken. - Fixed LDFLAGS and DPADD in the WITH_OPENLDAP case -- positively affects the contents of .depend files. - Removed redundant .h's from SRCS, only kept those that are generated. - libkrb5/ INCS were bogusly installed again with libgssapi/. - Made build-tools real tools with their own makefiles in separate directories. This allows us to properly track their dependencies, etc. - Faster build, 21% less of makefile code! Approved by: nectar Reviewed by: markm Silence on: arch
28 lines
506 B
Makefile
28 lines
506 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= ipropd-master
|
|
|
|
SRCS= \
|
|
ipropd_master.c \
|
|
kadm5_err.h
|
|
|
|
CFLAGS+=-I${KRB5DIR}/lib/roken \
|
|
-I${KRB5DIR}/lib/krb5 \
|
|
-I${KRB5DIR}/lib/asn1 \
|
|
-I. \
|
|
${LDAPCFLAGS}
|
|
|
|
LDADD= -lkadm5srv -lkrb5 -lhdb -lroken ${LIBVERS} \
|
|
-lasn1 -lcrypto -lcrypt -lcom_err ${LDAPLDADD}
|
|
|
|
LDFLAGS=${LDAPLDFLAGS}
|
|
|
|
DPADD= ${LIBKADM5SRV} ${LIBKRB5} ${LIBHDB} ${LIBROKEN} ${LIBVERS} \
|
|
${LIBASN1} ${LIBCRYPTO} ${LIBCRYPT} ${LIBCOM_ERR} ${LDAPDPADD}
|
|
|
|
NOMAN= yes
|
|
|
|
.include <bsd.prog.mk>
|
|
|
|
.PATH: ${KRB5DIR}/lib/kadm5
|