16 lines
220 B
Makefile
16 lines
220 B
Makefile
# Makefile for dialog
|
|
# $FreeBSD$
|
|
|
|
.if !defined (NO_EXAMPLES)
|
|
SUBDIR= TESTS
|
|
.endif
|
|
|
|
PROG= dialog
|
|
|
|
CFLAGS+= -Wall -Wstrict-prototypes
|
|
|
|
DPADD= $(LIBDIALOG) $(LIBNCURSES)
|
|
LDADD= -ldialog -lncurses
|
|
|
|
.include <bsd.prog.mk>
|