34 lines
569 B
Makefile
34 lines
569 B
Makefile
# $NetBSD: Makefile,v 1.7 2000/12/30 15:25:19 sommerfeld Exp $
|
|
|
|
NOMAN= noman
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
DIST= ${.CURDIR}/../../crypto/dist
|
|
.PATH: ${DIST}/heimdal/lib/com_err
|
|
|
|
WARNS?= 1
|
|
MKLINT= no
|
|
|
|
PROG= compile_et
|
|
|
|
SRCS= compile_et.c parse.y lex.l
|
|
|
|
YHEADER= 1
|
|
|
|
CPPFLAGS+= -I. \
|
|
-I${DIST}/heimdal/lib/com_err \
|
|
-I${.CURDIR}/../../include/heimdal \
|
|
-I${DESTDIR}/usr/include/krb5 \
|
|
-DHAVE_CONFIG_H
|
|
|
|
VERS!= cd ${.CURDIR}/../../lib/libvers && ${PRINTOBJDIR}
|
|
|
|
LDADD= -L${VERS} -lvers \
|
|
-lroken \
|
|
-lcrypt
|
|
|
|
CLEANFILES+= lex.c parse.c parse.h
|
|
|
|
.include <bsd.prog.mk>
|