Makefile revision 39765
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# $Id: Makefile,v 1.7 1997/02/22 15:42:37 peter Exp $
4
5PROGS=	msg yesno prgbox gauge dselect fselect text menu1 menu2 menu3 \
6	input1 input2 check1 check2 check3 radio1 radio2 radio3 \
7	ftree1 ftree2 tree
8
9CFLAGS+= -Wall -Wstrict-prototypes
10LDFLAGS += -ldialog -lncurses -lmytinfo
11
12all: ${PROGS}
13
14clean:
15	rm -f ${PROGS}
16	
17.include <bsd.prog.mk>
18