Initial import from FreeBSD RELENG_4:
[dragonfly.git] / gnu / lib / libdialog / TESTS / Makefile
1 # Really quick and evil Makefile for building all the tests.  I wish that
2 # bmake was friendlier to the concept of multiple progs/libs in the same
3 # directory.
4 #
5 # $FreeBSD: src/gnu/lib/libdialog/TESTS/Makefile,v 1.10 2000/01/10 11:54:55 phantom Exp $
6
7 PROGS=  msg yesno prgbox gauge dselect fselect text menu1 menu2 menu3 \
8         input1 input2 check1 check2 check3 radio1 radio2 radio3 \
9         ftree1 ftree2 tree
10
11 CFLAGS+= -Wall -Wstrict-prototypes
12 LDFLAGS+= -ldialog
13
14 all: ${PROGS}
15
16 clean:
17         rm -f ${PROGS}
18         
19 .include <bsd.prog.mk>