1# Makefile for dialog 2# $FreeBSD$ 3 4.if !defined (NO_EXAMPLES) 5SUBDIR= TESTS 6.endif 7 8PROG= dialog 9 10CFLAGS+= -Wall -Wstrict-prototypes 11 12DPADD= $(LIBDIALOG) $(LIBNCURSES) 13LDADD= -ldialog -lncurses 14 15.include <bsd.prog.mk> 16