freebsd-nq/gnu/usr.bin/awk/Makefile
David E. O'Brien 498e57a7a4 BWK awk appears to work for world builds just fine now. We want to make
sparc64 the same as the other platforms -- so do it by moving the other
platforms toward the sparc64.
2002-05-10 20:36:21 +00:00

29 lines
607 B
Makefile

# Makefile copyright James Raynard (jraynard@freebsd.org) 1997
#
# $FreeBSD$
.include "${.CURDIR}/../Makefile.inc"
.PATH: ${.CURDIR}/../../../contrib/awk
PROG= gawk
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
YFLAGS=
# Important for ctype macros!
CFLAGS+= -funsigned-char
CFLAGS+= -I${.CURDIR} -I${.CURDIR}/../../../contrib/awk
CFLAGS+= -DHAVE_CONFIG_H -DGAWK -DDEFPATH=\".\"
WARNS= 0
SUBDIR+= doc
DPADD+= ${LIBGNUREGEX} ${LIBM}
LDADD+= -lgnuregex -lm
.include <bsd.prog.mk>