diff options
author | pst <pst@FreeBSD.org> | 1994-10-09 00:46:16 +0000 |
---|---|---|
committer | pst <pst@FreeBSD.org> | 1994-10-09 00:46:16 +0000 |
commit | e028f1db3db5831bc51032325b10da7de29ebb4b (patch) | |
tree | 0ed63a1bcca48c2f99d09bbd9d554686961d2c8c /gnu | |
parent | 877f7da834b8dc2b5d15f649f98794ce889f5ae4 (diff) | |
download | FreeBSD-src-e028f1db3db5831bc51032325b10da7de29ebb4b.zip FreeBSD-src-e028f1db3db5831bc51032325b10da7de29ebb4b.tar.gz |
Cosmetic cleanup
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/usr.bin/dialog/Makefile | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/gnu/usr.bin/dialog/Makefile b/gnu/usr.bin/dialog/Makefile index 47e7a38..e0b6740 100644 --- a/gnu/usr.bin/dialog/Makefile +++ b/gnu/usr.bin/dialog/Makefile @@ -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> |