blob: 9af97c7cc3e846e5ada7c360ba6c059ee8dd1a1a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# $NetBSD: Makefile,v 1.5 1995/04/23 07:58:37 cgd Exp $
PROG= awk
SRCS= main.c eval.c builtin.c msg.c iop.c io.c field.c array.c \
node.c version.c re.c awk.c regex.c dfa.c \
getopt.c getopt1.c
CFLAGS+= -DGAWK
LDADD= -lm -lgnumalloc
DPADD= ${LIBM} /usr/lib/libgnumalloc.a
CLEANFILES+= awk.c y.tab.h
.include <bsd.prog.mk>
|