diff options
| author | Brian Kernighan <fakeuser@fake.com> | 2018-08-24 09:09:59 -0400 |
|---|---|---|
| committer | Brian Kernighan <fakeuser@fake.com> | 2018-08-24 09:09:59 -0400 |
| commit | 0f4e1ba922ccd45f7bd47701e923d98566ceb7c5 (patch) | |
| tree | 374cb9c2ec978afa312a12e52aed3817c3945a22 /makefile | |
| parent | b619480f94c4710be9fc7990551a4fa4c876fc0e (diff) | |
| download | platform_external_one-true-awk-0f4e1ba922ccd45f7bd47701e923d98566ceb7c5.tar.gz platform_external_one-true-awk-0f4e1ba922ccd45f7bd47701e923d98566ceb7c5.tar.bz2 platform_external_one-true-awk-0f4e1ba922ccd45f7bd47701e923d98566ceb7c5.zip | |
added Arnold's fixes, updates to awktest.tar
Diffstat (limited to 'makefile')
| -rw-r--r-- | makefile | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -23,17 +23,19 @@ # ****************************************************************/ CFLAGS = -g -CFLAGS = -O2 CFLAGS = +CFLAGS = -O2 +# compiler options #CC = gcc -Wall -g -Wwrite-strings -CC = gcc -g -Wall -pedantic #CC = gcc -O4 -Wall -pedantic -fno-strict-aliasing #CC = gcc -fprofile-arcs -ftest-coverage # then gcov f1.c; cat f1.c.gcov +CC = gcc -g -Wall -pedantic -YACC = bison -d -y -# YACC = yacc -d +# yacc options. pick one; this varies a lot by system. #YFLAGS = -d -S +#YACC = bison -d -y +YACC = yacc -d # -S uses sprintf in yacc parser instead of sprint OFILES = b.o main.o parse.o proctab.o tran.o lib.o run.o lex.o |
