NetBSD/usr.bin/compile_et/Makefile

38 lines
669 B
Makefile
Raw Normal View History

2002-10-23 05:25:35 +04:00
# $NetBSD: Makefile,v 1.13 2002/10/23 01:25:35 itojun Exp $
NOLINT= # defined
2000-12-30 18:25:19 +03:00
.include <bsd.own.mk>
DIST= ${NETBSDSRCDIR}/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${NETBSDSRCDIR}/include/heimdal \
2000-06-17 03:47:14 +04:00
-I${DESTDIR}/usr/include/krb5 \
-DHAVE_CONFIG_H
.ifndef HOSTPROG
VERS!= cd ${NETBSDSRCDIR}/lib/libvers && ${PRINTOBJDIR}
2000-08-04 02:47:37 +04:00
2002-10-23 05:25:35 +04:00
LDADD+= -L${VERS} -lvers -lroken -lcrypt
DPADD+= ${VERS}/libvers.a ${LIBROKEN} ${LIBCRYPT}
.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