mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-20 11:11:24 +00:00
13 lines
209 B
Makefile
13 lines
209 B
Makefile
# Makefile for dialog
|
|
# $Id$
|
|
|
|
PROG= dialog
|
|
MAN1= dialog.1
|
|
|
|
CFLAGS+= -Wall -Wstrict-prototypes
|
|
|
|
DPADD+= $(LIBDIALOG) $(LIBNCURSES) $(LIBMYTINFO)
|
|
LDADD+= -ldialog -lncurses -lmytinfo
|
|
|
|
.include <bsd.prog.mk>
|