mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 15:57:05 -05:00
dialog is distributed from GPLv2 to LGPLv2 and introduces a number of new features and a new and better libdialog API. The existing libdialog will be kept temporarily as libodialog for compatibility purposes until sade, sysinstall and tzsetup have been either updated or replaced. __FreeBSD_version is now 900030. Discussed on: -current Approved by: core Obtained from: http://invisible-island.net/dialog
20 lines
454 B
Makefile
20 lines
454 B
Makefile
# 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.
|
|
#
|
|
# $FreeBSD$
|
|
|
|
PROGS= msg yesno prgbox gauge dselect fselect text menu1 menu2 menu3 \
|
|
input1 input2 check1 check2 check3 radio1 radio2 radio3 \
|
|
ftree1 ftree2 tree
|
|
|
|
WARNS?= 2
|
|
CFLAGS+= -Wall -Wstrict-prototypes
|
|
LDFLAGS+= -ldialog
|
|
|
|
all: ${PROGS}
|
|
|
|
clean:
|
|
rm -f ${PROGS}
|
|
|
|
.include <bsd.prog.mk>
|