Makefile revision 20446
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.4 1996/12/14 16:14:19 jkh Exp $
4
5PROGS=	msg yesno prgbox gauge dselect fselect text menu1 menu2 menu3 \
6	input1 input2 check1 check2 check3 radio1 radio2 radio3
7
8CFLAGS+= -Wall -Wstrict-prototypes
9LDFLAGS += -ldialog -lncurses -lmytinfo
10
11all: ${PROGS}
12
13clean:
14	rm -f ${PROGS}
15	
16.include <bsd.prog.mk>
17