diff options
Diffstat (limited to 'tiger-compiler/src/desugar/local.am')
| -rw-r--r-- | tiger-compiler/src/desugar/local.am | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/tiger-compiler/src/desugar/local.am b/tiger-compiler/src/desugar/local.am new file mode 100644 index 0000000..701d537 --- /dev/null +++ b/tiger-compiler/src/desugar/local.am @@ -0,0 +1,27 @@ +## desugar module. +src_libtc_la_SOURCES += \ + %D%/desugar-visitor.hh %D%/desugar-visitor.cc \ + %D%/libdesugar.hh %D%/libdesugar.hxx + +check_PROGRAMS += \ + %D%/test-string-cmp-desugar \ + %D%/test-for-loops-desugar + + + +%C%_test_string_cmp_desugar_LDADD = src/libtc.la +%C%_test_string_cmp_desugar_CPPFLAGS = $(AM_CPPFLAGS) -DPKGDATADIR=\"$(pkgdatadir)\" + +%C%_test_for_loops_desugar_LDADD = src/libtc.la +%C%_test_for_loops_desugar_CPPFLAGS = $(AM_CPPFLAGS) -DPKGDATADIR=\"$(pkgdatadir)\" + +src_libtc_la_SOURCES += \ + %D%/bounds-checking-visitor.hh %D%/bounds-checking-visitor.cc + +check_PROGRAMS += \ + %D%/test-bounds-checking + +%C%_test_bounds_checking_LDADD = src/libtc.la +%C%_test_bounds_checking_CPPFLAGS = $(AM_CPPFLAGS) -DPKGDATADIR=\"$(pkgdatadir)\" + +TASKS += %D%/tasks.hh %D%/tasks.cc |
