NetBSD/usr.bin/menuc/Makefile

23 lines
386 B
Makefile
Raw Normal View History

2009-10-29 17:35:25 +03:00
# $NetBSD: Makefile,v 1.14 2009/10/29 14:36:14 christos Exp $
WARNS?= 1 # XXX -Wshadow -Wcast-qual issues
.include <bsd.own.mk>
2001-11-12 23:26:55 +03:00
PROG= menuc
SRCS= main.c parse.y scan.l avl.c mdb.c util.c
2009-10-29 17:35:25 +03:00
CPPFLAGS+= -I. -I${.CURDIR}
2001-11-12 23:26:55 +03:00
YHEADER=
.if ${MKSHARE} != "no"
2001-11-12 23:26:55 +03:00
FILES= menu_sys.def
FILESDIR= /usr/share/misc
.endif
.ifndef HOSTPROG
LDADD+= -ll
DPADD+= ${LIBL}
.endif
1997-10-11 15:37:21 +04:00
.include <bsd.prog.mk>