Cosmetic cleanup

This commit is contained in:
Paul Traina 1994-10-09 00:46:16 +00:00
parent da8b3304fb
commit 20e8cfc673
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=3447

View File

@ -1,11 +1,14 @@
# Makefile for dialog
# $Id$
PROG= dialog
MAN1= dialog.1
SRCS= dialog.c rc.c checklist.c inputbox.c menubox.c msgbox.c \
radiolist.c textbox.c yesno.c
CFLAGS+= -Wall -Wstrict-prototypes -DHAVE_NCURSES -DLOCALE
DPADD= $(LIBNCURSES) $(LIBMYTINFO)
LDADD= -lncurses -lmytinfo
SRCS = dialog.c rc.c checklist.c inputbox.c menubox.c msgbox.c \
radiolist.c textbox.c yesno.c
DPADD+= $(LIBNCURSES) $(LIBMYTINFO)
LDADD+= -lncurses -lmytinfo
.include "bsd.prog.mk"
.include <bsd.prog.mk>