blob: 32c7b54609a55c7259beebd6e42d29a2a9a1cef1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# $NetBSD: Makefile,v 1.2 2000/06/16 23:57:19 thorpej 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
LDADD= -lroken \
-lcrypt
NOMAN= noman
CLEANFILES+=lex.c parse.c parse.h
.include <bsd.prog.mk>
|