Home | History | Annotate | Line # | Download | only in menuc
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 
      5 PROG=		menuc
      6 SRCS=		main.c parse.y scan.l avl.c mdb.c util.c
      7 CPPFLAGS+=	-I. -I${.CURDIR}
      8 YHEADER=
      9 
     10 .if ${MKSHARE} != "no"
     11 FILES=		menu_sys.def
     12 FILESDIR=	/usr/share/misc
     13 .endif
     14 
     15 .ifndef HOSTPROG
     16 LDADD+=		-ll
     17 DPADD+=		${LIBL}
     18 .endif
     19 
     20 .include <bsd.prog.mk>
     21