Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src s/CFLAGS/CPPFLAGS/ for -D and -I.
details: https://anonhg.NetBSD.org/src/rev/f47734602310
branches: trunk
changeset: 474303:f47734602310
user: itojun <itojun%NetBSD.org@localhost>
date: Sat Jul 03 06:26:25 1999 +0000
description:
s/CFLAGS/CPPFLAGS/ for -D and -I.
diffstat:
sbin/ifconfig/Makefile | 4 ++--
sbin/route/Makefile | 4 ++--
usr.sbin/gifconfig/Makefile | 4 ++--
usr.sbin/ndp/Makefile | 6 +++---
usr.sbin/rtadvd/Makefile | 4 ++--
usr.sbin/sysctl/Makefile | 6 +++---
usr.sbin/traceroute6/Makefile | 4 ++--
7 files changed, 16 insertions(+), 16 deletions(-)
diffs (114 lines):
diff -r 3a292e18c956 -r f47734602310 sbin/ifconfig/Makefile
--- a/sbin/ifconfig/Makefile Sat Jul 03 05:55:23 1999 +0000
+++ b/sbin/ifconfig/Makefile Sat Jul 03 06:26:25 1999 +0000
@@ -1,9 +1,9 @@
-# $NetBSD: Makefile,v 1.8 1999/07/01 13:19:20 itojun Exp $
+# $NetBSD: Makefile,v 1.9 1999/07/03 06:27:56 itojun Exp $
# @(#)Makefile 8.1 (Berkeley) 6/5/93
PROG= ifconfig
MAN= ifconfig.8
-CFLAGS+= -DINET6
+CPPFLAGS+= -DINET6
.include <bsd.prog.mk>
diff -r 3a292e18c956 -r f47734602310 sbin/route/Makefile
--- a/sbin/route/Makefile Sat Jul 03 05:55:23 1999 +0000
+++ b/sbin/route/Makefile Sat Jul 03 06:26:25 1999 +0000
@@ -1,11 +1,11 @@
-# $NetBSD: Makefile,v 1.19 1999/07/02 15:29:02 itojun Exp $
+# $NetBSD: Makefile,v 1.20 1999/07/03 06:27:56 itojun Exp $
# @(#)Makefile 8.1 (Berkeley) 6/5/93
PROG= route
MAN= route.8
SRCS= route.c show.c keywords.c ccitt_addr.c
-CFLAGS+=-DINET6
+CPPFLAGS+=-DINET6
# The Makefile over in ../../distrib/utils/x_route
# would like keywords.[ch] to always exist here, so
diff -r 3a292e18c956 -r f47734602310 usr.sbin/gifconfig/Makefile
--- a/usr.sbin/gifconfig/Makefile Sat Jul 03 05:55:23 1999 +0000
+++ b/usr.sbin/gifconfig/Makefile Sat Jul 03 06:26:25 1999 +0000
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.1 1999/07/01 19:41:57 itojun Exp $
+# $NetBSD: Makefile,v 1.2 1999/07/03 06:26:25 itojun Exp $
PROG= gifconfig
-CFLAGS+=-DINET6
+CPPFLAGS+=-DINET6
MAN= gifconfig.8
.include <bsd.prog.mk>
diff -r 3a292e18c956 -r f47734602310 usr.sbin/ndp/Makefile
--- a/usr.sbin/ndp/Makefile Sat Jul 03 05:55:23 1999 +0000
+++ b/usr.sbin/ndp/Makefile Sat Jul 03 06:26:25 1999 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.1 1999/07/01 20:33:56 itojun Exp $
+# $NetBSD: Makefile,v 1.2 1999/07/03 06:26:25 itojun Exp $
.PATH: ${.CURDIR}/../tcpdump
@@ -6,7 +6,7 @@
SRCS= ndp.c gmt2local.c
MAN= ndp.8
-CFLAGS+=-DINET6
-CFLAGS+=-I. -I${.CURDIR}/../tcpdump
+CPPFLAGS+=-DINET6
+CPPFLAGS+=-I. -I${.CURDIR}/../tcpdump
.include <bsd.prog.mk>
diff -r 3a292e18c956 -r f47734602310 usr.sbin/rtadvd/Makefile
--- a/usr.sbin/rtadvd/Makefile Sat Jul 03 05:55:23 1999 +0000
+++ b/usr.sbin/rtadvd/Makefile Sat Jul 03 06:26:25 1999 +0000
@@ -1,9 +1,9 @@
-# $NetBSD: Makefile,v 1.1 1999/07/02 09:28:17 itojun Exp $
+# $NetBSD: Makefile,v 1.2 1999/07/03 06:26:26 itojun Exp $
PROG= rtadvd
SRCS= rtadvd.c rrenum.c advcap.c if.c config.c timer.c
-CFLAGS+=-DINET6
+CPPFLAGS+=-DINET6
MAN= rtadvd.8 rtadvd.conf.5
LDADD+= -lcompat
DPADD+= ${LIBCOMPAT}
diff -r 3a292e18c956 -r f47734602310 usr.sbin/sysctl/Makefile
--- a/usr.sbin/sysctl/Makefile Sat Jul 03 05:55:23 1999 +0000
+++ b/usr.sbin/sysctl/Makefile Sat Jul 03 06:26:25 1999 +0000
@@ -1,10 +1,10 @@
-# $NetBSD: Makefile,v 1.6 1999/07/02 08:58:21 itojun Exp $
+# $NetBSD: Makefile,v 1.7 1999/07/03 06:26:26 itojun Exp $
# @(#)Makefile 8.1 (Berkeley) 6/6/93
PROG= sysctl
MAN= sysctl.8
-CFLAGS+=-DINET6 -DIPSEC
-#CFLAGS+=-DTCP6
+CPPFLAGS+=-DINET6 -DIPSEC
+#CPPFLAGS+=-DTCP6
.include <bsd.prog.mk>
diff -r 3a292e18c956 -r f47734602310 usr.sbin/traceroute6/Makefile
--- a/usr.sbin/traceroute6/Makefile Sat Jul 03 05:55:23 1999 +0000
+++ b/usr.sbin/traceroute6/Makefile Sat Jul 03 06:26:25 1999 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.1 1999/07/01 20:55:04 itojun Exp $
+# $NetBSD: Makefile,v 1.2 1999/07/03 06:26:26 itojun Exp $
PROG= traceroute6
MAN= traceroute6.8
@@ -7,7 +7,7 @@
BINGRP= bin
BINMODE=4555
-CFLAGS+=-DINET6 -DIPSEC
+CPPFLAGS+=-DINET6 -DIPSEC
LDADD+= -lipsec
DPADD+= ${LIBIPSEC}
Home |
Main Index |
Thread Index |
Old Index