Makefile revision 217309
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: head/gnu/lib/libodialog/TESTS/Makefile 114602 2003-05-03 21:30:34Z obrien $
6
7PROGS=	msg yesno prgbox gauge dselect fselect text menu1 menu2 menu3 \
8	input1 input2 check1 check2 check3 radio1 radio2 radio3 \
9	ftree1 ftree2 tree
10
11WARNS?=	2
12CFLAGS+= -Wall -Wstrict-prototypes
13LDFLAGS+= -ldialog
14
15all: ${PROGS}
16
17clean:
18	rm -f ${PROGS}
19	
20.include <bsd.prog.mk>
21