NetBSD/usr.bin/compile_et/Makefile

38 lines
609 B
Makefile
Raw Normal View History

# $NetBSD: Makefile,v 1.8 2001/09/21 22:47:37 tv Exp $
2000-12-30 18:25:19 +03:00
NOMAN= noman
.include <bsd.own.mk>
DIST= ${.CURDIR}/../../crypto/dist
2000-06-17 03:47:14 +04:00
.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
.ifndef HOSTPROG
VERS!= cd ${.CURDIR}/../../lib/libvers && ${PRINTOBJDIR}
2000-08-04 02:47:37 +04:00
LDADD= -L${VERS} -lvers \
-lroken \
2000-06-17 03:47:14 +04:00
-lcrypt
.endif
2000-06-17 03:47:14 +04:00
CLEANFILES+= lex.c parse.c parse.h
.ifndef HOSTPROG
2000-06-17 03:47:14 +04:00
.include <bsd.prog.mk>
.endif