aboutsummaryrefslogtreecommitdiff
path: root/sbin
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>2003-06-11 23:24:31 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>2003-06-11 23:24:31 +0000
commitebc82d552239ed42a574c0466834ef1b16d4f25d (patch)
treec797eda3c1d10f405baca9a22e5252f3d3b53023 /sbin
parent5ea728feec1da667f9b86bd988db5477d42addfd (diff)
downloadsrc-ebc82d552239ed42a574c0466834ef1b16d4f25d.tar.gz
src-ebc82d552239ed42a574c0466834ef1b16d4f25d.zip
style clean.
Notes
Notes: svn path=/head/; revision=116224
Diffstat (limited to 'sbin')
-rw-r--r--sbin/ffsinfo/Makefile16
-rw-r--r--sbin/growfs/Makefile4
2 files changed, 9 insertions, 11 deletions
diff --git a/sbin/ffsinfo/Makefile b/sbin/ffsinfo/Makefile
index 5e6e8ed0ff77..9562f362d22b 100644
--- a/sbin/ffsinfo/Makefile
+++ b/sbin/ffsinfo/Makefile
@@ -6,16 +6,14 @@
MAINTAINER= tomsoft@FreeBSD.ORG, chm@FreeBSD.ORG
-#CFLAGS+=${BDECFLAGS}
-
-PROG= ffsinfo
-SRCS= ffsinfo.c debug.c
-MAN= ffsinfo.8
-
GROWFS= ${.CURDIR}/../growfs
-CFLAGS+=-DFS_DEBUG -I${GROWFS}
-WARNS= 0
+.PATH: ${GROWFS}
-.PATH: ${GROWFS}
+PROG= ffsinfo
+SRCS= ffsinfo.c debug.c
+MAN= ffsinfo.8
+
+WARNS?= 0
+CFLAGS+=-DFS_DEBUG -I${GROWFS}
.include <bsd.prog.mk>
diff --git a/sbin/growfs/Makefile b/sbin/growfs/Makefile
index 5cb76a710930..b89c2002b2c7 100644
--- a/sbin/growfs/Makefile
+++ b/sbin/growfs/Makefile
@@ -7,16 +7,16 @@
MAINTAINER= tomsoft@FreeBSD.ORG, chm@FreeBSD.ORG
#GFSDBG=YES
-#CFLAGS+=${BDECFLAGS}
PROG= growfs
SRCS= growfs.c
MAN= growfs.8
+WARNS?= 0
+
.if defined(GFSDBG)
SRCS+= debug.c
CFLAGS+=-DFS_DEBUG
.endif
-WARNS= 0
.include <bsd.prog.mk>