Skip to content

Commit

Permalink
First cut at introducing rx, a tool to compile a set of regular expre…
Browse files Browse the repository at this point in the history
…ssions.
  • Loading branch information
katef committed May 8, 2024
1 parent f945fda commit 4ee1e28
Show file tree
Hide file tree
Showing 3 changed files with 1,211 additions and 0 deletions.
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ SUBDIR += src/libre/print
SUBDIR += src/libre
SUBDIR += src/fsm
SUBDIR += src/re
SUBDIR += src/rx
SUBDIR += src/retest
SUBDIR += src/lx/print
SUBDIR += src/lx
Expand Down
14 changes: 14 additions & 0 deletions src/rx/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
.include "../../share/mk/top.mk"

SRC += src/rx/main.c

PROG += rx

.for lib in ${LIB:Mlibfsm} ${LIB:Mlibre}
${BUILD}/bin/rx: ${BUILD}/lib/${lib:R}.a
.endfor

.for src in ${SRC:Msrc/rx/*.c}
${BUILD}/bin/rx: ${BUILD}/${src:R}.o
.endfor

0 comments on commit 4ee1e28

Please sign in to comment.