mirror of https://github.com/yasm/yasm.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
786 B
55 lines
786 B
# $IdPath$ |
|
AM_YFLAGS = -d |
|
|
|
INCLUDES = -I$(top_srcdir) |
|
|
|
noinst_PROGRAMS = re2c |
|
|
|
re2c_SOURCES = \ |
|
basics.h \ |
|
globals.h \ |
|
ins.h \ |
|
re.h \ |
|
token.h \ |
|
code.c \ |
|
dfa.h \ |
|
dfa.c \ |
|
main.c \ |
|
parse.h \ |
|
parser.y \ |
|
actions.c \ |
|
scanner.h \ |
|
scanner.c \ |
|
substr.h \ |
|
substr.c \ |
|
translate.c |
|
|
|
BUILT_SOURCES = \ |
|
parser.c \ |
|
parser.h |
|
|
|
CLEANFILES = \ |
|
parser.c \ |
|
parser.h |
|
|
|
EXTRA_DIST = \ |
|
CHANGELOG \ |
|
NO_WARRANTY \ |
|
README \ |
|
scanner.re \ |
|
re2c.1 \ |
|
bootstrap/re2c.man \ |
|
bootstrap/scanner.c \ |
|
doc/loplas.ps.gz \ |
|
doc/sample.bib \ |
|
examples/basemmap.c \ |
|
examples/c.re \ |
|
examples/cmmap.re \ |
|
examples/cnokw.re \ |
|
examples/cunroll.re \ |
|
examples/modula.re \ |
|
examples/sample.re \ |
|
examples/simple.re \ |
|
examples/rexx/README \ |
|
examples/rexx/rexx.l \ |
|
examples/rexx/scanio.c
|
|
|