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.
26 lines
811 B
26 lines
811 B
# $Id$ |
|
|
|
libyasm_a_SOURCES += modules/parsers/nasm/nasm-parser.c |
|
libyasm_a_SOURCES += modules/parsers/nasm/nasm-parser.h |
|
libyasm_a_SOURCES += modules/parsers/nasm/nasm-defs.h |
|
libyasm_a_SOURCES += modules/parsers/nasm/nasm-bison.y |
|
libyasm_a_SOURCES += nasm-bison.h |
|
libyasm_a_SOURCES += nasm-token.c |
|
|
|
YASM_MODULES += parser_nasm |
|
|
|
nasm-token.c: $(srcdir)/modules/parsers/nasm/nasm-token.re re2c$(EXEEXT) |
|
$(top_builddir)/re2c$(EXEEXT) -b -o $@ $(srcdir)/modules/parsers/nasm/nasm-token.re |
|
|
|
BUILT_SOURCES += nasm-bison.c |
|
BUILT_SOURCES += nasm-bison.h |
|
BUILT_SOURCES += nasm-token.c |
|
|
|
CLEANFILES += nasm-bison.c |
|
CLEANFILES += nasm-bison.h |
|
CLEANFILES += nasm-token.c |
|
|
|
EXTRA_DIST += modules/parsers/nasm/tests/Makefile.inc |
|
EXTRA_DIST += modules/parsers/nasm/nasm-token.re |
|
|
|
include modules/parsers/nasm/tests/Makefile.inc
|
|
|