diff options
| author | Martial Simon <msimon_fr@hotmail.com> | 2025-09-15 01:07:58 +0200 |
|---|---|---|
| committer | Martial Simon <msimon_fr@hotmail.com> | 2025-09-15 01:07:58 +0200 |
| commit | 967be9e750221ab2ab783f95df79bb26d290a45e (patch) | |
| tree | 6802900a5e975f9f68b169f0f503f040056d6952 /tiger-compiler/src/object/local.am | |
Diffstat (limited to 'tiger-compiler/src/object/local.am')
| -rw-r--r-- | tiger-compiler/src/object/local.am | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/tiger-compiler/src/object/local.am b/tiger-compiler/src/object/local.am new file mode 100644 index 0000000..3c1eda9 --- /dev/null +++ b/tiger-compiler/src/object/local.am @@ -0,0 +1,33 @@ +## object module. + +src_libtc_la_SOURCES += \ + %D%/libobject.hh \ + %D%/libobject.cc \ + %D%/libobject.hxx \ + %D%/fwd.hh + +src_libtc_la_SOURCES += %D%/binder.hh %D%/binder.cc + +src_libtc_la_SOURCES += %D%/type-checker.hh %D%/type-checker.cc \ + %D%/renamer.hh %D%/renamer.cc + +src_libtc_la_SOURCES += %D%/desugar-visitor.hh %D%/desugar-visitor.cc + + +# Tests. +check_PROGRAMS += %D%/test-parse +%C%_test_parse_LDADD = src/libtc.la + +check_PROGRAMS += %D%/test-bind +%C%_test_bind_LDADD = src/libtc.la + +check_PROGRAMS += %D%/test-type +%C%_test_type_LDADD = src/libtc.la + +# FIXME: Add a test for object::Renamer. + +check_PROGRAMS += %D%/test-desugar +%C%_test_desugar_LDADD = src/libtc.la + + +TASKS += %D%/tasks.hh %D%/tasks.cc |
