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