summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>2002-03-05 19:40:25 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>2002-03-05 19:40:25 +0000
commiteb1c57d87293f51ce8b71a87834fbc5afb471007 (patch)
tree9e3e9851a007bddc957b6f8f996927b14bf0a56b
parenta04eff5a87772288c11361b0b32bf35ab9e0cef1 (diff)
Notes
-rw-r--r--gnu/usr.bin/awk/Makefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/gnu/usr.bin/awk/Makefile b/gnu/usr.bin/awk/Makefile
index b3402deba304..6109e65d2e7e 100644
--- a/gnu/usr.bin/awk/Makefile
+++ b/gnu/usr.bin/awk/Makefile
@@ -6,11 +6,17 @@
.PATH: ${.CURDIR}/../../../contrib/awk
+.if ${MACHINE_ARCH} == "sparc64"
+PROG= gawk
+.else
PROG= awk
+.endif
SRCS= array.c awkgram.y builtin.c eval.c field.c gawkmisc.c io.c main.c \
msg.c node.c re.c version.c dfa.c getopt.c getopt1.c ext.c profile.c
MAN= doc/gawk.1
+.if ${MACHINE_ARCH} != "sparc64"
MLINKS= gawk.1 awk.1
+.endif
YFLAGS=
@@ -19,6 +25,7 @@ CFLAGS+= -funsigned-char
CFLAGS+= -I${.CURDIR} -I${.CURDIR}/../../../contrib/awk
CFLAGS+= -DHAVE_CONFIG_H -DGAWK -DDEFPATH=\".\"
+WARNS= 0
SUBDIR+= doc