diff options
author | Jordan K. Hubbard <jkh@FreeBSD.org> | 1996-01-01 03:45:32 +0000 |
---|---|---|
committer | Jordan K. Hubbard <jkh@FreeBSD.org> | 1996-01-01 03:45:32 +0000 |
commit | cd5e85eb474d524f6dd5c9809b8cfd504960a901 (patch) | |
tree | fc308bcf491e4a33c7b438e945a226b6cbecb29a /gnu/lib/libdialog/TESTS/Makefile | |
parent | 738c371d22563551af2ff0936fed8e09fa5f8c19 (diff) |
Notes
Diffstat (limited to 'gnu/lib/libdialog/TESTS/Makefile')
-rw-r--r-- | gnu/lib/libdialog/TESTS/Makefile | 66 |
1 files changed, 60 insertions, 6 deletions
diff --git a/gnu/lib/libdialog/TESTS/Makefile b/gnu/lib/libdialog/TESTS/Makefile index 990f4970ab635..49ef6db60a750 100644 --- a/gnu/lib/libdialog/TESTS/Makefile +++ b/gnu/lib/libdialog/TESTS/Makefile @@ -1,11 +1,65 @@ -# Makefile for dialog -# $Id: Makefile,v 1.4 1994/10/28 03:12:45 ache Exp $ +# 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. +# $Id$ -PROG= test1 +PROGS= msg yesno prgbox gauge dselect fselect text menu1 menu2 menu3 \ + input1 check1 check2 check3 radio1 radio2 radio3 CFLAGS+= -Wall -Wstrict-prototypes +LDFLAGS += -ldialog -lncurses -lmytinfo -DPADD+= $(LIBDIALOG) $(LIBNCURSES) $(LIBMYTINFO) -LDADD+= -ldialog -lncurses -lmytinfo +all: ${PROGS} -.include <bsd.prog.mk> +clean: + rm -f ${PROGS} + +msg: msg.c + ${CC} msg.c -o msg ${LDFLAGS} + +yesno: yesno.c + ${CC} yesno.c -o yesno ${LDFLAGS} + +prgbox: prgbox.c + ${CC} prgbox.c -o prgbox ${LDFLAGS} + +gauge: gauge.c + ${CC} gauge.c -o gauge ${LDFLAGS} + +dselect: dselect.c + ${CC} dselect.c -o dselect ${LDFLAGS} + +fselect: fselect.c + ${CC} fselect.c -o fselect ${LDFLAGS} + +text: text.c + ${CC} text.c -o text ${LDFLAGS} + +menu1: menu1.c + ${CC} menu1.c -o menu1 ${LDFLAGS} + +menu2: menu2.c + ${CC} menu2.c -o menu2 ${LDFLAGS} + +menu3: menu3.c + ${CC} menu3.c -o menu3 ${LDFLAGS} + +input1: input1.c + ${CC} input1.c -o input1 ${LDFLAGS} + +check1: check1.c + ${CC} check1.c -o check1 ${LDFLAGS} + +check2: check2.c + ${CC} check2.c -o check2 ${LDFLAGS} + +check3: check3.c + ${CC} check3.c -o check3 ${LDFLAGS} + +radio1: radio1.c + ${CC} radio1.c -o radio1 ${LDFLAGS} + +radio2: radio2.c + ${CC} radio2.c -o radio2 ${LDFLAGS} + +radio3: radio3.c + ${CC} radio3.c -o radio3 ${LDFLAGS} |