Merge from vendor branch GCC:
[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 # $DragonFly: src/gnu/lib/libdialog/TESTS/Makefile,v 1.2 2003/06/17 04:25:43 dillon Exp $
7
8 PROGS=  msg yesno prgbox gauge dselect fselect text menu1 menu2 menu3 \
9         input1 input2 check1 check2 check3 radio1 radio2 radio3 \
10         ftree1 ftree2 tree
11
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>