2000-01-10 11:54:55 +00:00
|
|
|
# Really quick and evil Makefile for building all the tests. I wish that
|
|
|
|
# bmake was friendlier to the concept of multiple progs/libs in the same
|
|
|
|
# directory.
|
|
|
|
#
|
1999-08-27 23:37:10 +00:00
|
|
|
# $FreeBSD$
|
1995-12-23 01:10:32 +00:00
|
|
|
|
1996-01-01 03:45:32 +00:00
|
|
|
PROGS= msg yesno prgbox gauge dselect fselect text menu1 menu2 menu3 \
|
1998-09-29 12:22:46 +00:00
|
|
|
input1 input2 check1 check2 check3 radio1 radio2 radio3 \
|
|
|
|
ftree1 ftree2 tree
|
1995-12-23 01:10:32 +00:00
|
|
|
|
|
|
|
CFLAGS+= -Wall -Wstrict-prototypes
|
2000-01-10 11:54:55 +00:00
|
|
|
LDFLAGS+= -ldialog
|
1995-12-23 01:10:32 +00:00
|
|
|
|
1996-01-01 03:45:32 +00:00
|
|
|
all: ${PROGS}
|
1995-12-23 01:10:32 +00:00
|
|
|
|
1996-01-01 03:45:32 +00:00
|
|
|
clean:
|
|
|
|
rm -f ${PROGS}
|
|
|
|
|
1996-04-07 03:34:35 +00:00
|
|
|
.include <bsd.prog.mk>
|