aboutsummaryrefslogtreecommitdiff
path: root/sbin/rtsol
diff options
context:
space:
mode:
authorYaroslav Tykhiy <ytykhiy@gmail.com>2006-07-27 13:26:29 +0000
committerYaroslav Tykhiy <ytykhiy@gmail.com>2006-07-27 13:26:29 +0000
commit491bafe5c696c5d69dd48d51e45231b948433c23 (patch)
treece37a168ff680044697648a8a215dea40f1c639f /sbin/rtsol
parent74d580d7705d85046641953033dcafd5792d2e59 (diff)
downloadsrc-491bafe5c696c5d69dd48d51e45231b948433c23.tar.gz
src-491bafe5c696c5d69dd48d51e45231b948433c23.zip
Obey MK_INET6_SUPPORT.
This is also a good chance to apply style.Makefile(5) in some cases.
Notes
Notes: svn path=/head/; revision=160747
Diffstat (limited to 'sbin/rtsol')
-rw-r--r--sbin/rtsol/Makefile14
1 files changed, 10 insertions, 4 deletions
diff --git a/sbin/rtsol/Makefile b/sbin/rtsol/Makefile
index d3d40e871e0e..250f804817aa 100644
--- a/sbin/rtsol/Makefile
+++ b/sbin/rtsol/Makefile
@@ -15,14 +15,20 @@
SRCDIR= ${.CURDIR}/../../usr.sbin/rtsold
+.PATH: ${SRCDIR}
+
PROG= rtsol
SRCS= rtsold.c rtsol.c if.c probe.c rtsock.c
-
-CFLAGS+=-DINET6 -DHAVE_ARC4RANDOM -DHAVE_POLL_H -DSMALL
+NO_MAN=
WARNS?= 0
-NO_MAN=
+# after NO_MAN
+.include <bsd.own.mk>
-.PATH: ${SRCDIR}
+CFLAGS+= -DHAVE_ARC4RANDOM -DHAVE_POLL_H -DSMALL
+
+.if ${MK_INET6_SUPPORT} != "no"
+CFLAGS+= -DINET6
+.endif
.include <bsd.prog.mk>