NetBSD/usr.bin/msgc/Makefile

24 lines
433 B
Makefile
Raw Normal View History

2009-10-29 17:37:56 +03:00
# $NetBSD: Makefile,v 1.18 2009/10/29 14:37:56 christos Exp $
WARNS?= 1 # XXX -Wshadow -Wcast-qual issues
.include <bsd.own.mk>
2001-11-12 23:26:55 +03:00
PROG= msgc
SRCS= msgmain.c msgparse.y msgscan.l msgdb.c util.c avl.c
2002-09-19 15:31:21 +04:00
.PATH: ${NETBSDSRCDIR}/usr.bin/menuc
2009-10-29 17:37:56 +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= msg_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>