| OLD | NEW |
| 1 # $Id: Makefile.inc 2278 2010-01-19 07:28:08Z peter $ | |
| 2 | |
| 3 libyasm_a_SOURCES += modules/parsers/nasm/nasm-parser.c | 1 libyasm_a_SOURCES += modules/parsers/nasm/nasm-parser.c |
| 4 libyasm_a_SOURCES += modules/parsers/nasm/nasm-parser.h | 2 libyasm_a_SOURCES += modules/parsers/nasm/nasm-parser.h |
| 5 libyasm_a_SOURCES += modules/parsers/nasm/nasm-parser-struct.h | 3 libyasm_a_SOURCES += modules/parsers/nasm/nasm-parser-struct.h |
| 6 libyasm_a_SOURCES += modules/parsers/nasm/nasm-parse.c | 4 libyasm_a_SOURCES += modules/parsers/nasm/nasm-parse.c |
| 7 nodist_libyasm_a_SOURCES += nasm-token.c | 5 nodist_libyasm_a_SOURCES += nasm-token.c |
| 8 | 6 |
| 9 YASM_MODULES += parser_nasm parser_tasm | 7 YASM_MODULES += parser_nasm parser_tasm |
| 10 | 8 |
| 11 nasm-token.c: $(srcdir)/modules/parsers/nasm/nasm-token.re re2c$(EXEEXT) | 9 nasm-token.c: $(srcdir)/modules/parsers/nasm/nasm-token.re re2c$(EXEEXT) |
| 12 $(top_builddir)/re2c$(EXEEXT) -b -o $@ $(srcdir)/modules/parsers/nasm/na
sm-token.re | 10 $(top_builddir)/re2c$(EXEEXT) -b -o $@ $(srcdir)/modules/parsers/nasm/na
sm-token.re |
| 13 | 11 |
| 14 BUILT_SOURCES += nasm-token.c | 12 BUILT_SOURCES += nasm-token.c |
| 15 | 13 |
| 16 CLEANFILES += nasm-token.c | 14 CLEANFILES += nasm-token.c |
| 17 | 15 |
| 18 EXTRA_DIST += modules/parsers/nasm/nasm-token.re | 16 EXTRA_DIST += modules/parsers/nasm/nasm-token.re |
| 19 | 17 |
| 20 $(top_srcdir)/modules/parsers/nasm/nasm-parser.c: nasm-macros.c | 18 $(top_srcdir)/modules/parsers/nasm/nasm-parser.c: nasm-macros.c |
| 21 | 19 |
| 22 nasm-macros.c: $(srcdir)/modules/parsers/nasm/nasm-std.mac genmacro$(EXEEXT) | 20 nasm-macros.c: $(srcdir)/modules/parsers/nasm/nasm-std.mac genmacro$(EXEEXT) |
| 23 $(top_builddir)/genmacro$(EXEEXT) $@ nasm_standard_mac $(srcdir)/modules
/parsers/nasm/nasm-std.mac | 21 $(top_builddir)/genmacro$(EXEEXT) $@ nasm_standard_mac $(srcdir)/modules
/parsers/nasm/nasm-std.mac |
| 24 | 22 |
| 25 BUILT_SOURCES += nasm-macros.c | 23 BUILT_SOURCES += nasm-macros.c |
| 26 CLEANFILES += nasm-macros.c | 24 CLEANFILES += nasm-macros.c |
| 27 EXTRA_DIST += modules/parsers/nasm/nasm-std.mac | 25 EXTRA_DIST += modules/parsers/nasm/nasm-std.mac |
| 28 | 26 |
| 29 EXTRA_DIST += modules/parsers/nasm/tests/Makefile.inc | 27 EXTRA_DIST += modules/parsers/nasm/tests/Makefile.inc |
| 30 | 28 |
| 31 include modules/parsers/nasm/tests/Makefile.inc | 29 include modules/parsers/nasm/tests/Makefile.inc |
| OLD | NEW |