1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-12 09:58:36 +00:00

On the sparc64 platform we install this as "gawk" as Gawk is currently

borked on the sparc64.  We are using BWK's AWK at the moment.
This commit is contained in:
David E. O'Brien 2002-03-05 19:40:25 +00:00
parent a04eff5a87
commit eb1c57d872
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=91708

View File

@ -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