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