34 lines
564 B
Makefile
34 lines
564 B
Makefile
# $NetBSD: Makefile,v 1.7 2000/12/30 15:25:21 sommerfeld Exp $
|
|
|
|
NOMAN= noman
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
DIST= ${.CURDIR}/../../crypto/dist
|
|
.PATH: ${DIST}/heimdal/lib/sl
|
|
|
|
WARNS?= 1
|
|
MKLINT= no
|
|
|
|
PROG= mk_cmds
|
|
|
|
SRCS= make_cmds.c make_cmds.h parse.y lex.l
|
|
|
|
YHEADER= 1
|
|
|
|
CFLAGS+= -I. \
|
|
-I${DIST}/heimdal/lib/sl \
|
|
-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>
|