minix/usr.bin/menuc/Makefile
Thomas Cort 525a267e81 Importing usr.bin/menuc
No Minix-specific changes needed.

Change-Id: Ie663e08a515a393efaaeecacea15ef807aa8ecfb
2013-11-06 10:44:51 -05:00

23 lines
386 B
Makefile

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