Skip to content
This repository has been archived by the owner on Aug 26, 2023. It is now read-only.

use ragel options to minimize states and use gotos #187

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gumbo-parser/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ LDFLAGS := -pthread
all: check

src/%.c: src/%.rl
ragel -F1 -o $@ $<
ragel -e -G2 -o $@ $<

build/src:
mkdir -p $@
Expand Down
Loading