NetBSD/usr.bin/compile_et/Makefile

39 lines
626 B
Makefile
Raw Normal View History

# $NetBSD: Makefile,v 1.11 2001/12/12 12:24:27 lukem Exp $
NOLINT= # defined
2000-12-30 18:25:19 +03:00
.include <bsd.own.mk>
DIST= ${.CURDIR}/../../crypto/dist
2000-06-17 03:47:14 +04:00
.PATH: ${DIST}/heimdal/lib/com_err
WARNS?= 1
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
2001-11-10 10:50:42 +03:00
MAN= compile_et.1
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