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