mirror of
https://github.com/opnsense/src.git
synced 2026-02-11 14:55:36 -05:00
This simplifies pathing in make/displayed output. MFC after: 1 week Sponsored by: Dell EMC Isilon
16 lines
219 B
Makefile
16 lines
219 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
PROG= tzsetup
|
|
MAN= tzsetup.8
|
|
|
|
CFLAGS+= -I.
|
|
|
|
.if ${MK_DIALOG} != no
|
|
WARNS?= 3
|
|
CFLAGS+= -I${SRCTOP}/contrib/dialog -DHAVE_DIALOG
|
|
LIBADD= dialog ncursesw
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|