]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - gnu/lib/libodialog/TESTS/Makefile
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / gnu / lib / libodialog / 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$
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 WARNS?= 2
12 CFLAGS+= -Wall -Wstrict-prototypes
13 LDFLAGS+= -ldialog
14
15 all: ${PROGS}
16
17 clean:
18         rm -f ${PROGS}
19         
20 .include <bsd.prog.mk>