opnsense-src/gnu/lib/libdialog/TESTS/Makefile

21 lines
454 B
Makefile
Raw Normal View History

# 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 19:37:10 -04:00
# $FreeBSD$
1995-12-22 20:10:32 -05:00
PROGS= msg yesno prgbox gauge dselect fselect text menu1 menu2 menu3 \
input1 input2 check1 check2 check3 radio1 radio2 radio3 \
ftree1 ftree2 tree
1995-12-22 20:10:32 -05:00
2003-05-03 17:30:34 -04:00
WARNS?= 2
1995-12-22 20:10:32 -05:00
CFLAGS+= -Wall -Wstrict-prototypes
LDFLAGS+= -ldialog
1995-12-22 20:10:32 -05:00
all: ${PROGS}
1995-12-22 20:10:32 -05:00
clean:
rm -f ${PROGS}
1996-04-06 22:34:35 -05:00
.include <bsd.prog.mk>