Makefile revision 1.11
1#	$NetBSD: Makefile,v 1.11 2003/05/18 07:57:35 lukem Exp $
2
3.include <bsd.own.mk>
4
5PROG=		menuc
6SRCS=		main.c parse.y scan.l avl.c mdb.c util.c
7CPPFLAGS+=	-I. -I${.CURDIR}
8YHEADER=
9
10.if ${MKSHARE} != "no"
11FILES=		menu_sys.def
12FILESDIR=	/usr/share/misc
13.endif
14
15.ifndef HOSTPROG
16LDADD+=		-ll
17DPADD+=		${LIBL}
18.endif
19
20.include <bsd.prog.mk>
21