31 lines
543 B
Makefile
31 lines
543 B
Makefile
# $NetBSD: Makefile,v 1.5 2000/10/26 05:57:01 garbled Exp $
|
|
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 && ${MAKE} print-objdir
|
|
|
|
LDADD= -L${VERS} -lvers \
|
|
-lroken \
|
|
-lcrypt
|
|
|
|
NOMAN= noman
|
|
|
|
CLEANFILES+=lex.c parse.c parse.h
|
|
|
|
.include <bsd.prog.mk>
|