mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
a070b1eb31
This is basically the same concept as lex, except this time it doesn't turn your code inside out, and it generates actual C code to parse the expressions (not tables), and the resulting code is usually about 2 times faster than flex.
12 lines
256 B
Plaintext
12 lines
256 B
Plaintext
--- Makefile.orig Thu May 14 16:36:54 1998
|
|
+++ Makefile Thu May 14 16:37:14 1998
|
|
@@ -15,7 +15,7 @@
|
|
OBJS = code.o dfa.o main.o parser.o actions.o scanner.o substr.o\
|
|
translate.o
|
|
|
|
-CC = gcc
|
|
+CC = c++
|
|
CFLAGS = -O2 -Wall -I.
|
|
YFLAGS = -d
|
|
LDFLAGS =
|