freebsd-dev/kerberos5/usr.bin/krb5-config/Makefile
Mark Murray 069b88eb3a Big fixup of the makefiles. Sort out the dependancies so that "make"
without "make depend" works, "make -j N" works, and lists of source
files are made vertical to reduce future diffs.
2003-07-18 13:21:58 +00:00

27 lines
581 B
Makefile

# $FreeBSD$
SCRIPTS=krb5-config
MAN= krb5-config.1
CLEANFILES= krb5-config
krb5-config: krb5-config.in
sed -e "s,@PACKAGE\@,FreeBSD heimdal,g" \
-e "s,@VERSION\@,0.5.1,g" \
-e "s,@prefix\@,/usr,g" \
-e "s,@exec_prefix\@,/usr,g" \
-e "s,@libdir\@,${LIBDIR},g" \
-e "s,@includedir\@,${INCLUDEDIR},g" \
-e "s,@LIB_crypt\@,-lcrypt,g" \
-e "s,@LIB_dbopen\@,,g" \
-e "s,@LIB_des_appl\@,-lcrypto,g" \
-e "s,@LIBS\@,-lcom_err,g" \
-e "s,@INCLUDE_des@,,g" \
${.ALLSRC} > ${.TARGET}
chmod +x ${.TARGET}
.include <bsd.prog.mk>
.PATH: ${KRB5DIR}/tools