diff options
Diffstat (limited to 'lib/libkrb5/Makefile')
-rw-r--r-- | lib/libkrb5/Makefile | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/lib/libkrb5/Makefile b/lib/libkrb5/Makefile index 0ee365dd102..7452a80470d 100644 --- a/lib/libkrb5/Makefile +++ b/lib/libkrb5/Makefile @@ -1,11 +1,13 @@ -# $OpenBSD: Makefile,v 1.6 2003/05/17 05:20:18 mho Exp $ +# $OpenBSD: Makefile,v 1.7 2003/05/17 20:07:23 mho Exp $ KRB5DIR= ${.CURDIR}/../../kerberosV +GENDIR= ${.CURDIR}/generated .include "Makefile.common.inc" LIB = krb5 .PATH: ${KRB5SRC}/lib +.PATH: ${GENDIR} .include "Makefile.asn1.inc" .include "Makefile.hdb.inc" @@ -13,6 +15,7 @@ LIB = krb5 .include "Makefile.roken.inc" .include "Makefile.krb5.inc" + includes: @test -d ${DESTDIR}/usr/include/kerberosV || \ mkdir ${DESTDIR}/usr/include/kerberosV @@ -32,7 +35,7 @@ includes: -o ${BINOWN} -g $(BINGRP) $$i \ ${DESTDIR}/usr/include/kerberosV; done; \ echo - @echo -n ${DIRKAFS}:; \ + @echo -n ${DIR_KAFS}:; \ cd ${DIR_KAFS}; for i in ${HDR_KAFS}; do \ echo -n " $$i"; \ cmp -s $$i ${DESTDIR}/usr/include/kerberosV/$$i || \ @@ -56,8 +59,8 @@ includes: -o ${BINOWN} -g $(BINGRP) $$i \ ${DESTDIR}/usr/include/kerberosV; done; \ echo - @echo -n ${.OBJDIR}:; \ - cd ${.OBJDIR}; for i in ${HDR_OBJ}; do \ + @echo -n ${GENDIR}:; \ + cd ${GENDIR}; for i in ${HDR_GEN}; do \ echo -n " $$i"; \ cmp -s $$i ${DESTDIR}/usr/include/kerberosV/$$i || \ ${INSTALL} ${INSTALL_COPY} -m 444 \ |