Merge ~lvoytek/ubuntu/+source/antlr4-cpp-runtime:update-to-4.13-noble into ubuntu/+source/antlr4-cpp-runtime:ubuntu/devel

Proposed by Lena Voytek
Status: Rejected
Rejected by: Andreas Hasenack
Proposed branch: ~lvoytek/ubuntu/+source/antlr4-cpp-runtime:update-to-4.13-noble
Merge into: ubuntu/+source/antlr4-cpp-runtime:ubuntu/devel
Diff against target: 142096 lines (+126513/-4655)
548 files modified
CMakeLists.txt (+48/-47)
LICENSE.txt (+23/-47)
README.md (+8/-9)
VERSION (+1/-1)
cmake/Antlr4Package.md (+19/-19)
cmake/ExternalAntlr4Cpp.cmake (+28/-5)
cmake/FindANTLR.cmake (+2/-2)
cmake/README.md (+16/-6)
cmake/antlr4-generator.cmake.in (+4/-4)
cmake/antlr4-runtime.cmake.in (+3/-0)
debian/changelog (+9/-0)
debian/control (+4/-3)
debian/patches/series (+0/-3)
debian/rules (+1/-1)
deploy-macos.sh (+8/-28)
deploy-source.sh (+2/-1)
deploy-windows.cmd (+25/-25)
dev/null (+0/-9)
runtime/.cmake/api/v1/query/cache-v2 (+0/-0)
runtime/.cmake/api/v1/query/cmakeFiles-v1 (+0/-0)
runtime/.cmake/api/v1/query/codemodel-v2 (+0/-0)
runtime/.cmake/api/v1/query/toolchains-v1 (+0/-0)
runtime/CMakeCache.txt (+587/-0)
runtime/CMakeLists.txt (+134/-86)
runtime/CTestTestfile.cmake (+8/-0)
runtime/Makefile (+4374/-0)
runtime/_deps/googletest-build/googletest/generated/GTestConfig.cmake (+33/-0)
runtime/_deps/googletest-build/googletest/generated/GTestConfigVersion.cmake (+48/-0)
runtime/_deps/googletest-build/googletest/generated/gmock.pc (+10/-0)
runtime/_deps/googletest-build/googletest/generated/gmock_main.pc (+10/-0)
runtime/_deps/googletest-build/googletest/generated/gtest.pc (+9/-0)
runtime/_deps/googletest-build/googletest/generated/gtest_main.pc (+10/-0)
runtime/_deps/googletest-src/.clang-format (+4/-0)
runtime/_deps/googletest-src/.github/ISSUE_TEMPLATE/00-bug_report.md (+43/-0)
runtime/_deps/googletest-src/.github/ISSUE_TEMPLATE/10-feature_request.md (+24/-0)
runtime/_deps/googletest-src/.github/ISSUE_TEMPLATE/config.yml (+1/-0)
runtime/_deps/googletest-src/.gitignore (+84/-0)
runtime/_deps/googletest-src/BUILD.bazel (+190/-0)
runtime/_deps/googletest-src/CMakeLists.txt (+32/-0)
runtime/_deps/googletest-src/CONTRIBUTING.md (+130/-0)
runtime/_deps/googletest-src/CONTRIBUTORS (+63/-0)
runtime/_deps/googletest-src/LICENSE (+28/-0)
runtime/_deps/googletest-src/README.md (+140/-0)
runtime/_deps/googletest-src/WORKSPACE (+24/-0)
runtime/_deps/googletest-src/ci/linux-presubmit.sh (+126/-0)
runtime/_deps/googletest-src/ci/macos-presubmit.sh (+73/-0)
runtime/_deps/googletest-src/docs/_config.yml (+1/-0)
runtime/_deps/googletest-src/docs/_data/navigation.yml (+43/-0)
runtime/_deps/googletest-src/docs/_layouts/default.html (+58/-0)
runtime/_deps/googletest-src/docs/_sass/main.scss (+200/-0)
runtime/_deps/googletest-src/docs/advanced.md (+2318/-0)
runtime/_deps/googletest-src/docs/assets/css/style.scss (+5/-0)
runtime/_deps/googletest-src/docs/community_created_documentation.md (+7/-0)
runtime/_deps/googletest-src/docs/faq.md (+693/-0)
runtime/_deps/googletest-src/docs/gmock_cheat_sheet.md (+241/-0)
runtime/_deps/googletest-src/docs/gmock_cook_book.md (+4301/-0)
runtime/_deps/googletest-src/docs/gmock_faq.md (+390/-0)
runtime/_deps/googletest-src/docs/gmock_for_dummies.md (+700/-0)
runtime/_deps/googletest-src/docs/index.md (+22/-0)
runtime/_deps/googletest-src/docs/pkgconfig.md (+148/-0)
runtime/_deps/googletest-src/docs/platforms.md (+35/-0)
runtime/_deps/googletest-src/docs/primer.md (+482/-0)
runtime/_deps/googletest-src/docs/quickstart-bazel.md (+161/-0)
runtime/_deps/googletest-src/docs/quickstart-cmake.md (+156/-0)
runtime/_deps/googletest-src/docs/reference/actions.md (+115/-0)
runtime/_deps/googletest-src/docs/reference/assertions.md (+633/-0)
runtime/_deps/googletest-src/docs/reference/matchers.md (+283/-0)
runtime/_deps/googletest-src/docs/reference/mocking.md (+587/-0)
runtime/_deps/googletest-src/docs/reference/testing.md (+1431/-0)
runtime/_deps/googletest-src/docs/samples.md (+22/-0)
runtime/_deps/googletest-src/googlemock/CMakeLists.txt (+218/-0)
runtime/_deps/googletest-src/googlemock/README.md (+44/-0)
runtime/_deps/googletest-src/googlemock/cmake/gmock.pc.in (+10/-0)
runtime/_deps/googletest-src/googlemock/cmake/gmock_main.pc.in (+10/-0)
runtime/_deps/googletest-src/googlemock/docs/README.md (+4/-0)
runtime/_deps/googletest-src/googlemock/include/gmock/gmock-actions.h (+1687/-0)
runtime/_deps/googletest-src/googlemock/include/gmock/gmock-cardinalities.h (+157/-0)
runtime/_deps/googletest-src/googlemock/include/gmock/gmock-function-mocker.h (+479/-0)
runtime/_deps/googletest-src/googlemock/include/gmock/gmock-matchers.h (+5392/-0)
runtime/_deps/googletest-src/googlemock/include/gmock/gmock-more-actions.h (+573/-0)
runtime/_deps/googletest-src/googlemock/include/gmock/gmock-more-matchers.h (+92/-0)
runtime/_deps/googletest-src/googlemock/include/gmock/gmock-nice-strict.h (+261/-0)
runtime/_deps/googletest-src/googlemock/include/gmock/gmock-spec-builders.h (+2038/-0)
runtime/_deps/googletest-src/googlemock/include/gmock/gmock.h (+98/-0)
runtime/_deps/googletest-src/googlemock/include/gmock/internal/custom/README.md (+16/-0)
runtime/_deps/googletest-src/googlemock/include/gmock/internal/custom/gmock-generated-actions.h (+6/-0)
runtime/_deps/googletest-src/googlemock/include/gmock/internal/custom/gmock-matchers.h (+36/-0)
runtime/_deps/googletest-src/googlemock/include/gmock/internal/custom/gmock-port.h (+39/-0)
runtime/_deps/googletest-src/googlemock/include/gmock/internal/gmock-internal-utils.h (+459/-0)
runtime/_deps/googletest-src/googlemock/include/gmock/internal/gmock-port.h (+87/-0)
runtime/_deps/googletest-src/googlemock/include/gmock/internal/gmock-pp.h (+279/-0)
runtime/_deps/googletest-src/googlemock/scripts/README.md (+5/-0)
runtime/_deps/googletest-src/googlemock/scripts/fuse_gmock_files.py (+256/-0)
runtime/_deps/googletest-src/googlemock/scripts/generator/LICENSE (+203/-0)
runtime/_deps/googletest-src/googlemock/scripts/generator/README (+34/-0)
runtime/_deps/googletest-src/googlemock/scripts/generator/README.cppclean (+115/-0)
runtime/_deps/googletest-src/googlemock/scripts/generator/cpp/__init__.py (+0/-0)
runtime/_deps/googletest-src/googlemock/scripts/generator/cpp/ast.py (+1773/-0)
runtime/_deps/googletest-src/googlemock/scripts/generator/cpp/gmock_class.py (+247/-0)
runtime/_deps/googletest-src/googlemock/scripts/generator/cpp/gmock_class_test.py (+570/-0)
runtime/_deps/googletest-src/googlemock/scripts/generator/cpp/keywords.py (+56/-0)
runtime/_deps/googletest-src/googlemock/scripts/generator/cpp/tokenize.py (+284/-0)
runtime/_deps/googletest-src/googlemock/scripts/generator/cpp/utils.py (+37/-0)
runtime/_deps/googletest-src/googlemock/scripts/generator/gmock_gen.py (+30/-0)
runtime/_deps/googletest-src/googlemock/src/gmock-all.cc (+46/-0)
runtime/_deps/googletest-src/googlemock/src/gmock-cardinalities.cc (+155/-0)
runtime/_deps/googletest-src/googlemock/src/gmock-internal-utils.cc (+200/-0)
runtime/_deps/googletest-src/googlemock/src/gmock-matchers.cc (+459/-0)
runtime/_deps/googletest-src/googlemock/src/gmock-spec-builders.cc (+908/-0)
runtime/_deps/googletest-src/googlemock/src/gmock.cc (+213/-0)
runtime/_deps/googletest-src/googlemock/src/gmock_main.cc (+72/-0)
runtime/_deps/googletest-src/googlemock/test/BUILD.bazel (+118/-0)
runtime/_deps/googletest-src/googlemock/test/gmock-actions_test.cc (+1583/-0)
runtime/_deps/googletest-src/googlemock/test/gmock-cardinalities_test.cc (+429/-0)
runtime/_deps/googletest-src/googlemock/test/gmock-function-mocker_test.cc (+986/-0)
runtime/_deps/googletest-src/googlemock/test/gmock-internal-utils_test.cc (+720/-0)
runtime/_deps/googletest-src/googlemock/test/gmock-matchers_test.cc (+8562/-0)
runtime/_deps/googletest-src/googlemock/test/gmock-more-actions_test.cc (+1547/-0)
runtime/_deps/googletest-src/googlemock/test/gmock-nice-strict_test.cc (+539/-0)
runtime/_deps/googletest-src/googlemock/test/gmock-port_test.cc (+42/-0)
runtime/_deps/googletest-src/googlemock/test/gmock-pp-string_test.cc (+206/-0)
runtime/_deps/googletest-src/googlemock/test/gmock-pp_test.cc (+83/-0)
runtime/_deps/googletest-src/googlemock/test/gmock-spec-builders_test.cc (+2775/-0)
runtime/_deps/googletest-src/googlemock/test/gmock_all_test.cc (+46/-0)
runtime/_deps/googletest-src/googlemock/test/gmock_ex_test.cc (+80/-0)
runtime/_deps/googletest-src/googlemock/test/gmock_leak_test.py (+104/-0)
runtime/_deps/googletest-src/googlemock/test/gmock_leak_test_.cc (+99/-0)
runtime/_deps/googletest-src/googlemock/test/gmock_link2_test.cc (+39/-0)
runtime/_deps/googletest-src/googlemock/test/gmock_link_test.cc (+39/-0)
runtime/_deps/googletest-src/googlemock/test/gmock_link_test.h (+690/-0)
runtime/_deps/googletest-src/googlemock/test/gmock_output_test.py (+183/-0)
runtime/_deps/googletest-src/googlemock/test/gmock_output_test_.cc (+309/-0)
runtime/_deps/googletest-src/googlemock/test/gmock_output_test_golden.txt (+317/-0)
runtime/_deps/googletest-src/googlemock/test/gmock_stress_test.cc (+240/-0)
runtime/_deps/googletest-src/googlemock/test/gmock_test.cc (+181/-0)
runtime/_deps/googletest-src/googlemock/test/gmock_test_utils.py (+108/-0)
runtime/_deps/googletest-src/googletest/CMakeLists.txt (+323/-0)
runtime/_deps/googletest-src/googletest/README.md (+215/-0)
runtime/_deps/googletest-src/googletest/cmake/Config.cmake.in (+9/-0)
runtime/_deps/googletest-src/googletest/cmake/gtest.pc.in (+9/-0)
runtime/_deps/googletest-src/googletest/cmake/gtest_main.pc.in (+10/-0)
runtime/_deps/googletest-src/googletest/cmake/internal_utils.cmake (+344/-0)
runtime/_deps/googletest-src/googletest/cmake/libgtest.la.in (+21/-0)
runtime/_deps/googletest-src/googletest/docs/README.md (+4/-0)
runtime/_deps/googletest-src/googletest/include/gtest/gtest-death-test.h (+346/-0)
runtime/_deps/googletest-src/googletest/include/gtest/gtest-matchers.h (+930/-0)
runtime/_deps/googletest-src/googletest/include/gtest/gtest-message.h (+219/-0)
runtime/_deps/googletest-src/googletest/include/gtest/gtest-param-test.h (+507/-0)
runtime/_deps/googletest-src/googletest/include/gtest/gtest-printers.h (+1029/-0)
runtime/_deps/googletest-src/googletest/include/gtest/gtest-spi.h (+238/-0)
runtime/_deps/googletest-src/googletest/include/gtest/gtest-test-part.h (+184/-0)
runtime/_deps/googletest-src/googletest/include/gtest/gtest-typed-test.h (+329/-0)
runtime/_deps/googletest-src/googletest/include/gtest/gtest.h (+2495/-0)
runtime/_deps/googletest-src/googletest/include/gtest/gtest_pred_impl.h (+359/-0)
runtime/_deps/googletest-src/googletest/include/gtest/gtest_prod.h (+61/-0)
runtime/_deps/googletest-src/googletest/include/gtest/internal/custom/README.md (+56/-0)
runtime/_deps/googletest-src/googletest/include/gtest/internal/custom/gtest-port.h (+37/-0)
runtime/_deps/googletest-src/googletest/include/gtest/internal/custom/gtest-printers.h (+42/-0)
runtime/_deps/googletest-src/googletest/include/gtest/internal/custom/gtest.h (+37/-0)
runtime/_deps/googletest-src/googletest/include/gtest/internal/gtest-death-test-internal.h (+304/-0)
runtime/_deps/googletest-src/googletest/include/gtest/internal/gtest-filepath.h (+211/-0)
runtime/_deps/googletest-src/googletest/include/gtest/internal/gtest-internal.h (+1560/-0)
runtime/_deps/googletest-src/googletest/include/gtest/internal/gtest-param-util.h (+947/-0)
runtime/_deps/googletest-src/googletest/include/gtest/internal/gtest-port-arch.h (+114/-0)
runtime/_deps/googletest-src/googletest/include/gtest/internal/gtest-port.h (+2389/-0)
runtime/_deps/googletest-src/googletest/include/gtest/internal/gtest-string.h (+175/-0)
runtime/_deps/googletest-src/googletest/include/gtest/internal/gtest-type-util.h (+183/-0)
runtime/_deps/googletest-src/googletest/samples/prime_tables.h (+126/-0)
runtime/_deps/googletest-src/googletest/samples/sample1.cc (+66/-0)
runtime/_deps/googletest-src/googletest/samples/sample1.h (+41/-0)
runtime/_deps/googletest-src/googletest/samples/sample10_unittest.cc (+139/-0)
runtime/_deps/googletest-src/googletest/samples/sample1_unittest.cc (+151/-0)
runtime/_deps/googletest-src/googletest/samples/sample2.cc (+54/-0)
runtime/_deps/googletest-src/googletest/samples/sample2.h (+80/-0)
runtime/_deps/googletest-src/googletest/samples/sample2_unittest.cc (+107/-0)
runtime/_deps/googletest-src/googletest/samples/sample3-inl.h (+172/-0)
runtime/_deps/googletest-src/googletest/samples/sample3_unittest.cc (+149/-0)
runtime/_deps/googletest-src/googletest/samples/sample4.cc (+54/-0)
runtime/_deps/googletest-src/googletest/samples/sample4.h (+53/-0)
runtime/_deps/googletest-src/googletest/samples/sample4_unittest.cc (+53/-0)
runtime/_deps/googletest-src/googletest/samples/sample5_unittest.cc (+196/-0)
runtime/_deps/googletest-src/googletest/samples/sample6_unittest.cc (+217/-0)
runtime/_deps/googletest-src/googletest/samples/sample7_unittest.cc (+117/-0)
runtime/_deps/googletest-src/googletest/samples/sample8_unittest.cc (+154/-0)
runtime/_deps/googletest-src/googletest/samples/sample9_unittest.cc (+156/-0)
runtime/_deps/googletest-src/googletest/scripts/README.md (+5/-0)
runtime/_deps/googletest-src/googletest/scripts/common.py (+83/-0)
runtime/_deps/googletest-src/googletest/scripts/fuse_gtest_files.py (+253/-0)
runtime/_deps/googletest-src/googletest/scripts/gen_gtest_pred_impl.py (+733/-0)
runtime/_deps/googletest-src/googletest/scripts/gtest-config.in (+274/-0)
runtime/_deps/googletest-src/googletest/scripts/release_docs.py (+158/-0)
runtime/_deps/googletest-src/googletest/scripts/run_with_path.py (+32/-0)
runtime/_deps/googletest-src/googletest/scripts/test/Makefile (+59/-0)
runtime/_deps/googletest-src/googletest/scripts/upload.py (+1402/-0)
runtime/_deps/googletest-src/googletest/scripts/upload_gtest.py (+78/-0)
runtime/_deps/googletest-src/googletest/src/gtest-all.cc (+48/-0)
runtime/_deps/googletest-src/googletest/src/gtest-death-test.cc (+1644/-0)
runtime/_deps/googletest-src/googletest/src/gtest-filepath.cc (+369/-0)
runtime/_deps/googletest-src/googletest/src/gtest-internal-inl.h (+1221/-0)
runtime/_deps/googletest-src/googletest/src/gtest-matchers.cc (+97/-0)
runtime/_deps/googletest-src/googletest/src/gtest-port.cc (+1433/-0)
runtime/_deps/googletest-src/googletest/src/gtest-printers.cc (+533/-0)
runtime/_deps/googletest-src/googletest/src/gtest-test-part.cc (+108/-0)
runtime/_deps/googletest-src/googletest/src/gtest-typed-test.cc (+107/-0)
runtime/_deps/googletest-src/googletest/src/gtest.cc (+6746/-0)
runtime/_deps/googletest-src/googletest/src/gtest_main.cc (+54/-0)
runtime/_deps/googletest-src/googletest/test/BUILD.bazel (+590/-0)
runtime/_deps/googletest-src/googletest/test/googletest-break-on-failure-unittest.py (+208/-0)
runtime/_deps/googletest-src/googletest/test/googletest-break-on-failure-unittest_.cc (+86/-0)
runtime/_deps/googletest-src/googletest/test/googletest-catch-exceptions-test.py (+236/-0)
runtime/_deps/googletest-src/googletest/test/googletest-catch-exceptions-test_.cc (+293/-0)
runtime/_deps/googletest-src/googletest/test/googletest-color-test.py (+127/-0)
runtime/_deps/googletest-src/googletest/test/googletest-color-test_.cc (+62/-0)
runtime/_deps/googletest-src/googletest/test/googletest-death-test-test.cc (+1542/-0)
runtime/_deps/googletest-src/googletest/test/googletest-death-test_ex_test.cc (+92/-0)
runtime/_deps/googletest-src/googletest/test/googletest-env-var-test.py (+120/-0)
runtime/_deps/googletest-src/googletest/test/googletest-env-var-test_.cc (+132/-0)
runtime/_deps/googletest-src/googletest/test/googletest-failfast-unittest.py (+410/-0)
runtime/_deps/googletest-src/googletest/test/googletest-failfast-unittest_.cc (+167/-0)
runtime/_deps/googletest-src/googletest/test/googletest-filepath-test.cc (+649/-0)
runtime/_deps/googletest-src/googletest/test/googletest-filter-unittest.py (+639/-0)
runtime/_deps/googletest-src/googletest/test/googletest-filter-unittest_.cc (+137/-0)
runtime/_deps/googletest-src/googletest/test/googletest-global-environment-unittest.py (+72/-0)
runtime/_deps/googletest-src/googletest/test/googletest-global-environment-unittest_.cc (+58/-0)
runtime/_deps/googletest-src/googletest/test/googletest-json-outfiles-test.py (+191/-0)
runtime/_deps/googletest-src/googletest/test/googletest-json-output-unittest.py (+848/-0)
runtime/_deps/googletest-src/googletest/test/googletest-list-tests-unittest.py (+205/-0)
runtime/_deps/googletest-src/googletest/test/googletest-list-tests-unittest_.cc (+156/-0)
runtime/_deps/googletest-src/googletest/test/googletest-listener-test.cc (+518/-0)
runtime/_deps/googletest-src/googletest/test/googletest-message-test.cc (+158/-0)
runtime/_deps/googletest-src/googletest/test/googletest-options-test.cc (+219/-0)
runtime/_deps/googletest-src/googletest/test/googletest-output-test-golden-lin.txt (+1180/-0)
runtime/_deps/googletest-src/googletest/test/googletest-output-test.py (+346/-0)
runtime/_deps/googletest-src/googletest/test/googletest-output-test_.cc (+1108/-0)
runtime/_deps/googletest-src/googletest/test/googletest-param-test-invalid-name1-test.py (+63/-0)
runtime/_deps/googletest-src/googletest/test/googletest-param-test-invalid-name1-test_.cc (+50/-0)
runtime/_deps/googletest-src/googletest/test/googletest-param-test-invalid-name2-test.py (+62/-0)
runtime/_deps/googletest-src/googletest/test/googletest-param-test-invalid-name2-test_.cc (+55/-0)
runtime/_deps/googletest-src/googletest/test/googletest-param-test-test.cc (+1119/-0)
runtime/_deps/googletest-src/googletest/test/googletest-param-test-test.h (+51/-0)
runtime/_deps/googletest-src/googletest/test/googletest-param-test2-test.cc (+61/-0)
runtime/_deps/googletest-src/googletest/test/googletest-port-test.cc (+1276/-0)
runtime/_deps/googletest-src/googletest/test/googletest-printers-test.cc (+1962/-0)
runtime/_deps/googletest-src/googletest/test/googletest-setuptestsuite-test.py (+54/-0)
runtime/_deps/googletest-src/googletest/test/googletest-setuptestsuite-test_.cc (+49/-0)
runtime/_deps/googletest-src/googletest/test/googletest-shuffle-test.py (+323/-0)
runtime/_deps/googletest-src/googletest/test/googletest-shuffle-test_.cc (+101/-0)
runtime/_deps/googletest-src/googletest/test/googletest-test-part-test.cc (+230/-0)
runtime/_deps/googletest-src/googletest/test/googletest-throw-on-failure-test.py (+168/-0)
runtime/_deps/googletest-src/googletest/test/googletest-throw-on-failure-test_.cc (+71/-0)
runtime/_deps/googletest-src/googletest/test/googletest-uninitialized-test.py (+67/-0)
runtime/_deps/googletest-src/googletest/test/googletest-uninitialized-test_.cc (+42/-0)
runtime/_deps/googletest-src/googletest/test/gtest-typed-test2_test.cc (+40/-0)
runtime/_deps/googletest-src/googletest/test/gtest-typed-test_test.cc (+437/-0)
runtime/_deps/googletest-src/googletest/test/gtest-typed-test_test.h (+60/-0)
runtime/_deps/googletest-src/googletest/test/gtest-unittest-api_test.cc (+328/-0)
runtime/_deps/googletest-src/googletest/test/gtest_all_test.cc (+46/-0)
runtime/_deps/googletest-src/googletest/test/gtest_assert_by_exception_test.cc (+116/-0)
runtime/_deps/googletest-src/googletest/test/gtest_environment_test.cc (+188/-0)
runtime/_deps/googletest-src/googletest/test/gtest_help_test.py (+172/-0)
runtime/_deps/googletest-src/googletest/test/gtest_help_test_.cc (+45/-0)
runtime/_deps/googletest-src/googletest/test/gtest_json_test_utils.py (+60/-0)
runtime/_deps/googletest-src/googletest/test/gtest_list_output_unittest.py (+286/-0)
runtime/_deps/googletest-src/googletest/test/gtest_list_output_unittest_.cc (+77/-0)
runtime/_deps/googletest-src/googletest/test/gtest_main_unittest.cc (+44/-0)
runtime/_deps/googletest-src/googletest/test/gtest_no_test_unittest.cc (+54/-0)
runtime/_deps/googletest-src/googletest/test/gtest_pred_impl_unittest.cc (+2422/-0)
runtime/_deps/googletest-src/googletest/test/gtest_premature_exit_test.cc (+126/-0)
runtime/_deps/googletest-src/googletest/test/gtest_prod_test.cc (+56/-0)
runtime/_deps/googletest-src/googletest/test/gtest_repeat_test.cc (+233/-0)
runtime/_deps/googletest-src/googletest/test/gtest_skip_check_output_test.py (+59/-0)
runtime/_deps/googletest-src/googletest/test/gtest_skip_environment_check_output_test.py (+54/-0)
runtime/_deps/googletest-src/googletest/test/gtest_skip_in_environment_setup_test.cc (+49/-0)
runtime/_deps/googletest-src/googletest/test/gtest_skip_test.cc (+55/-0)
runtime/_deps/googletest-src/googletest/test/gtest_sole_header_test.cc (+56/-0)
runtime/_deps/googletest-src/googletest/test/gtest_stress_test.cc (+248/-0)
runtime/_deps/googletest-src/googletest/test/gtest_test_macro_stack_footprint_test.cc (+89/-0)
runtime/_deps/googletest-src/googletest/test/gtest_test_utils.py (+312/-0)
runtime/_deps/googletest-src/googletest/test/gtest_testbridge_test.py (+63/-0)
runtime/_deps/googletest-src/googletest/test/gtest_testbridge_test_.cc (+43/-0)
runtime/_deps/googletest-src/googletest/test/gtest_throw_on_failure_ex_test.cc (+90/-0)
runtime/_deps/googletest-src/googletest/test/gtest_unittest.cc (+7784/-0)
runtime/_deps/googletest-src/googletest/test/gtest_xml_outfile1_test_.cc (+43/-0)
runtime/_deps/googletest-src/googletest/test/gtest_xml_outfile2_test_.cc (+43/-0)
runtime/_deps/googletest-src/googletest/test/gtest_xml_outfiles_test.py (+135/-0)
runtime/_deps/googletest-src/googletest/test/gtest_xml_output_unittest.py (+415/-0)
runtime/_deps/googletest-src/googletest/test/gtest_xml_output_unittest_.cc (+193/-0)
runtime/_deps/googletest-src/googletest/test/gtest_xml_test_utils.py (+197/-0)
runtime/_deps/googletest-src/googletest/test/production.cc (+35/-0)
runtime/_deps/googletest-src/googletest/test/production.h (+54/-0)
runtime/_deps/googletest-src/library.json (+62/-0)
runtime/_deps/googletest-subbuild/CMakeCache.txt (+126/-0)
runtime/_deps/googletest-subbuild/CMakeFiles/3.22.3/CMakeSystem.cmake (+15/-0)
runtime/_deps/googletest-subbuild/CMakeFiles/CMakeDirectoryInformation.cmake (+16/-0)
runtime/_deps/googletest-subbuild/CMakeFiles/CMakeOutput.log (+1/-0)
runtime/_deps/googletest-subbuild/CMakeFiles/CMakeRuleHashes.txt (+11/-0)
runtime/_deps/googletest-subbuild/CMakeFiles/Makefile.cmake (+42/-0)
runtime/_deps/googletest-subbuild/CMakeFiles/Makefile2 (+112/-0)
runtime/_deps/googletest-subbuild/CMakeFiles/TargetDirectories.txt (+3/-0)
runtime/_deps/googletest-subbuild/CMakeFiles/cmake.check_cache (+1/-0)
runtime/_deps/googletest-subbuild/CMakeFiles/googletest-populate-complete (+0/-0)
runtime/_deps/googletest-subbuild/CMakeFiles/googletest-populate.dir/DependInfo.cmake (+18/-0)
runtime/_deps/googletest-subbuild/CMakeFiles/googletest-populate.dir/Labels.json (+46/-0)
runtime/_deps/googletest-subbuild/CMakeFiles/googletest-populate.dir/Labels.txt (+14/-0)
runtime/_deps/googletest-subbuild/CMakeFiles/googletest-populate.dir/build.make (+159/-0)
runtime/_deps/googletest-subbuild/CMakeFiles/googletest-populate.dir/cmake_clean.cmake (+17/-0)
runtime/_deps/googletest-subbuild/CMakeFiles/googletest-populate.dir/compiler_depend.make (+2/-0)
runtime/_deps/googletest-subbuild/CMakeFiles/googletest-populate.dir/compiler_depend.ts (+2/-0)
runtime/_deps/googletest-subbuild/CMakeFiles/googletest-populate.dir/progress.make (+10/-0)
runtime/_deps/googletest-subbuild/CMakeFiles/progress.marks (+1/-0)
runtime/_deps/googletest-subbuild/CMakeLists.txt (+27/-0)
runtime/_deps/googletest-subbuild/Makefile (+154/-0)
runtime/_deps/googletest-subbuild/cmake_install.cmake (+44/-0)
runtime/_deps/googletest-subbuild/googletest-populate-prefix/src/googletest-populate-stamp/download-googletest-populate.cmake (+173/-0)
runtime/_deps/googletest-subbuild/googletest-populate-prefix/src/googletest-populate-stamp/extract-googletest-populate.cmake (+58/-0)
runtime/_deps/googletest-subbuild/googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-build (+0/-0)
runtime/_deps/googletest-subbuild/googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-configure (+0/-0)
runtime/_deps/googletest-subbuild/googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-done (+0/-0)
runtime/_deps/googletest-subbuild/googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-download (+0/-0)
runtime/_deps/googletest-subbuild/googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-install (+0/-0)
runtime/_deps/googletest-subbuild/googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-mkdir (+0/-0)
runtime/_deps/googletest-subbuild/googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-patch (+0/-0)
runtime/_deps/googletest-subbuild/googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-test (+0/-0)
runtime/_deps/googletest-subbuild/googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-update (+0/-0)
runtime/_deps/googletest-subbuild/googletest-populate-prefix/src/googletest-populate-stamp/googletest-populate-urlinfo.txt (+3/-0)
runtime/_deps/googletest-subbuild/googletest-populate-prefix/src/googletest-populate-stamp/verify-googletest-populate.cmake (+0/-0)
runtime/_deps/googletest-subbuild/googletest-populate-prefix/tmp/googletest-populate-cfgcmd.txt (+1/-0)
runtime/_deps/googletest-subbuild/googletest-populate-prefix/tmp/googletest-populate-cfgcmd.txt.in (+1/-0)
runtime/antlr4_tests[1]_include.cmake (+5/-0)
runtime/antlr4_tests[1]_tests.cmake (+129/-0)
runtime/cmake-build-debug/CMakeFiles/clion-log.txt (+38/-0)
runtime/cmake_install.cmake (+82/-0)
runtime/nuget/ANTLR4.Runtime.cpp.noarch.nuspec (+23/-0)
runtime/nuget/ANTLR4.Runtime.cpp.noarch.targets (+8/-0)
runtime/nuget/ANTLR4.Runtime.cpp.shared.nuspec (+30/-0)
runtime/nuget/ANTLR4.Runtime.cpp.shared.props (+21/-0)
runtime/nuget/ANTLR4.Runtime.cpp.shared.targets (+44/-0)
runtime/nuget/ANTLR4.Runtime.cpp.static.nuspec (+29/-0)
runtime/nuget/ANTLR4.Runtime.cpp.static.targets (+44/-0)
runtime/nuget/pack.cmd (+93/-0)
runtime/src/.idea/.gitignore (+8/-0)
runtime/src/.idea/misc.xml (+6/-0)
runtime/src/.idea/modules.xml (+8/-0)
runtime/src/.idea/vcs.xml (+6/-0)
runtime/src/.idea/workspace.xml (+78/-0)
runtime/src/ANTLRFileStream.cpp (+1/-12)
runtime/src/ANTLRFileStream.h (+9/-6)
runtime/src/ANTLRInputStream.cpp (+42/-32)
runtime/src/ANTLRInputStream.h (+16/-14)
runtime/src/CommonToken.cpp (+2/-4)
runtime/src/DefaultErrorStrategy.cpp (+16/-13)
runtime/src/Exceptions.cpp (+2/-2)
runtime/src/Exceptions.h (+2/-2)
runtime/src/FailedPredicateException.cpp (+5/-4)
runtime/src/FailedPredicateException.h (+1/-1)
runtime/src/FlatHashMap.h (+57/-0)
runtime/src/FlatHashSet.h (+57/-0)
runtime/src/IntStream.h (+0/-6)
runtime/src/Lexer.cpp (+0/-1)
runtime/src/Lexer.h (+0/-13)
runtime/src/LexerInterpreter.cpp (+0/-15)
runtime/src/LexerInterpreter.h (+1/-7)
runtime/src/Parser.cpp (+51/-29)
runtime/src/Parser.h (+0/-6)
runtime/src/ParserInterpreter.cpp (+27/-39)
runtime/src/ParserInterpreter.h (+1/-7)
runtime/src/ParserRuleContext.cpp (+19/-22)
runtime/src/ParserRuleContext.h (+20/-20)
runtime/src/RecognitionException.cpp (+0/-1)
runtime/src/Recognizer.cpp (+19/-29)
runtime/src/Recognizer.h (+12/-22)
runtime/src/RuleContext.cpp (+4/-3)
runtime/src/RuleContext.h (+5/-1)
runtime/src/RuntimeMetaData.cpp (+2/-1)
runtime/src/Token.h (+0/-32)
runtime/src/TokenStreamRewriter.cpp (+1/-1)
runtime/src/TokenStreamRewriter.h (+2/-7)
runtime/src/UnbufferedCharStream.cpp (+15/-18)
runtime/src/UnbufferedCharStream.h (+12/-18)
runtime/src/Version.h (+42/-0)
runtime/src/Vocabulary.cpp (+13/-45)
runtime/src/Vocabulary.h (+12/-27)
runtime/src/antlr4-common.h (+21/-60)
runtime/src/antlr4-runtime.h (+8/-7)
runtime/src/atn/ATN.cpp (+5/-55)
runtime/src/atn/ATN.h (+36/-21)
runtime/src/atn/ATNConfig.cpp (+32/-37)
runtime/src/atn/ATNConfig.h (+35/-32)
runtime/src/atn/ATNConfigSet.cpp (+67/-62)
runtime/src/atn/ATNConfigSet.h (+78/-31)
runtime/src/atn/ATNDeserializationOptions.cpp (+12/-37)
runtime/src/atn/ATNDeserializationOptions.h (+22/-24)
runtime/src/atn/ATNDeserializer.cpp (+334/-462)
runtime/src/atn/ATNDeserializer.h (+9/-68)
runtime/src/atn/ATNSimulator.cpp (+9/-39)
runtime/src/atn/ATNSimulator.h (+6/-22)
runtime/src/atn/ATNState.cpp (+10/-26)
runtime/src/atn/ATNState.h (+41/-42)
runtime/src/atn/ATNStateType.cpp (+33/-0)
runtime/src/atn/ATNStateType.h (+36/-0)
runtime/src/atn/ActionTransition.cpp (+2/-6)
runtime/src/atn/ActionTransition.h (+4/-2)
runtime/src/atn/ArrayPredictionContext.cpp (+67/-20)
runtime/src/atn/ArrayPredictionContext.h (+20/-12)
runtime/src/atn/AtomTransition.cpp (+1/-5)
runtime/src/atn/AtomTransition.h (+5/-2)
runtime/src/atn/BasicBlockStartState.h (+4/-2)
runtime/src/atn/BasicState.h (+4/-2)
runtime/src/atn/BlockEndState.h (+5/-3)
runtime/src/atn/BlockStartState.h (+10/-1)
runtime/src/atn/DecisionInfo.h (+1/-1)
runtime/src/atn/DecisionState.cpp (+1/-6)
runtime/src/atn/DecisionState.h (+12/-8)
runtime/src/atn/EpsilonTransition.cpp (+2/-6)
runtime/src/atn/EpsilonTransition.h (+6/-3)
runtime/src/atn/HashUtils.h (+18/-0)
runtime/src/atn/LL1Analyzer.cpp (+139/-108)
runtime/src/atn/LL1Analyzer.h (+9/-48)
runtime/src/atn/LexerATNConfig.cpp (+16/-33)
runtime/src/atn/LexerATNConfig.h (+12/-12)
runtime/src/atn/LexerATNSimulator.cpp (+83/-90)
runtime/src/atn/LexerATNSimulator.h (+15/-33)
runtime/src/atn/LexerAction.cpp (+12/-6)
runtime/src/atn/LexerAction.h (+45/-11)
runtime/src/atn/LexerActionExecutor.cpp (+45/-44)
runtime/src/atn/LexerActionExecutor.h (+31/-18)
runtime/src/atn/LexerActionType.h (+3/-1)
runtime/src/atn/LexerChannelAction.cpp (+14/-26)
runtime/src/atn/LexerChannelAction.h (+12/-16)
runtime/src/atn/LexerCustomAction.cpp (+15/-32)
runtime/src/atn/LexerCustomAction.h (+12/-24)
runtime/src/atn/LexerIndexedCustomAction.cpp (+20/-33)
runtime/src/atn/LexerIndexedCustomAction.h (+13/-19)
runtime/src/atn/LexerModeAction.cpp (+13/-26)
runtime/src/atn/LexerModeAction.h (+12/-16)
runtime/src/atn/LexerMoreAction.cpp (+6/-17)
runtime/src/atn/LexerMoreAction.h (+12/-16)
runtime/src/atn/LexerPopModeAction.cpp (+6/-17)
runtime/src/atn/LexerPopModeAction.h (+12/-16)
runtime/src/atn/LexerPushModeAction.cpp (+13/-26)
runtime/src/atn/LexerPushModeAction.h (+12/-16)
runtime/src/atn/LexerSkipAction.cpp (+6/-17)
runtime/src/atn/LexerSkipAction.h (+11/-15)
runtime/src/atn/LexerTypeAction.cpp (+13/-26)
runtime/src/atn/LexerTypeAction.h (+13/-17)
runtime/src/atn/LoopEndState.h (+5/-1)
runtime/src/atn/NotSetTransition.cpp (+1/-6)
runtime/src/atn/NotSetTransition.h (+4/-2)
runtime/src/atn/OrderedATNConfigSet.cpp (+6/-2)
runtime/src/atn/OrderedATNConfigSet.h (+8/-3)
runtime/src/atn/ParserATNSimulator.cpp (+229/-182)
runtime/src/atn/ParserATNSimulator.h (+26/-19)
runtime/src/atn/ParserATNSimulatorOptions.h (+50/-0)
runtime/src/atn/PlusBlockStartState.h (+5/-1)
runtime/src/atn/PlusLoopbackState.h (+5/-2)
runtime/src/atn/PrecedencePredicateTransition.cpp (+2/-11)
runtime/src/atn/PrecedencePredicateTransition.h (+15/-9)
runtime/src/atn/PredicateEvalInfo.cpp (+2/-2)
runtime/src/atn/PredicateEvalInfo.h (+2/-2)
runtime/src/atn/PredicateTransition.cpp (+4/-14)
runtime/src/atn/PredicateTransition.h (+22/-11)
runtime/src/atn/PredictionContext.cpp (+277/-338)
runtime/src/atn/PredictionContext.h (+86/-127)
runtime/src/atn/PredictionContextCache.cpp (+56/-0)
runtime/src/atn/PredictionContextCache.h (+63/-0)
runtime/src/atn/PredictionContextMergeCache.cpp (+167/-0)
runtime/src/atn/PredictionContextMergeCache.h (+101/-0)
runtime/src/atn/PredictionContextMergeCacheOptions.h (+71/-0)
runtime/src/atn/PredictionContextType.h (+7/-10)
runtime/src/atn/PredictionMode.cpp (+19/-18)
runtime/src/atn/PredictionMode.h (+1/-1)
runtime/src/atn/ProfilingATNSimulator.cpp (+2/-2)
runtime/src/atn/ProfilingATNSimulator.h (+2/-2)
runtime/src/atn/RangeTransition.cpp (+1/-5)
runtime/src/atn/RangeTransition.h (+4/-2)
runtime/src/atn/RuleStartState.h (+4/-3)
runtime/src/atn/RuleStopState.h (+4/-2)
runtime/src/atn/RuleTransition.cpp (+1/-5)
runtime/src/atn/RuleTransition.h (+5/-3)
runtime/src/atn/SemanticContext.cpp (+206/-165)
runtime/src/atn/SemanticContext.h (+102/-87)
runtime/src/atn/SemanticContextType.h (+23/-0)
runtime/src/atn/SerializedATNView.h (+101/-0)
runtime/src/atn/SetTransition.cpp (+2/-6)
runtime/src/atn/SetTransition.h (+11/-3)
runtime/src/atn/SingletonPredictionContext.cpp (+33/-35)
runtime/src/atn/SingletonPredictionContext.h (+17/-10)
runtime/src/atn/StarBlockStartState.h (+5/-2)
runtime/src/atn/StarLoopEntryState.h (+4/-2)
runtime/src/atn/StarLoopbackState.cpp (+6/-6)
runtime/src/atn/StarLoopbackState.h (+6/-2)
runtime/src/atn/TokensStartState.h (+5/-2)
runtime/src/atn/Transition.cpp (+1/-9)
runtime/src/atn/Transition.h (+11/-22)
runtime/src/atn/TransitionType.cpp (+27/-0)
runtime/src/atn/TransitionType.h (+33/-0)
runtime/src/atn/WildcardTransition.cpp (+1/-5)
runtime/src/atn/WildcardTransition.h (+4/-2)
runtime/src/dfa/DFA.cpp (+9/-21)
runtime/src/dfa/DFA.h (+20/-15)
runtime/src/dfa/DFASerializer.cpp (+1/-8)
runtime/src/dfa/DFASerializer.h (+4/-4)
runtime/src/dfa/DFAState.cpp (+10/-51)
runtime/src/dfa/DFAState.h (+58/-48)
runtime/src/dfa/LexerDFASerializer.cpp (+1/-4)
runtime/src/dfa/LexerDFASerializer.h (+3/-4)
runtime/src/internal/Synchronization.cpp (+100/-0)
runtime/src/internal/Synchronization.h (+154/-0)
runtime/src/misc/InterpreterDataReader.cpp (+2/-2)
runtime/src/misc/InterpreterDataReader.h (+3/-1)
runtime/src/misc/Interval.cpp (+1/-29)
runtime/src/misc/Interval.h (+10/-10)
runtime/src/misc/IntervalSet.cpp (+8/-21)
runtime/src/misc/IntervalSet.h (+1/-9)
runtime/src/misc/MurmurHash.cpp (+56/-70)
runtime/src/misc/MurmurHash.h (+34/-14)
runtime/src/support/Any.cpp (+0/-5)
runtime/src/support/Any.h (+1/-155)
runtime/src/support/Arrays.h (+39/-0)
runtime/src/support/BitSet.h (+1/-1)
runtime/src/support/CPPUtils.cpp (+12/-53)
runtime/src/support/CPPUtils.h (+16/-29)
runtime/src/support/Casts.h (+34/-0)
runtime/src/support/Declarations.h (+0/-2)
runtime/src/support/StringUtils.cpp (+25/-33)
runtime/src/support/StringUtils.h (+2/-62)
runtime/src/support/Unicode.h (+28/-0)
runtime/src/support/Utf8.cpp (+242/-0)
runtime/src/support/Utf8.h (+54/-0)
runtime/src/tree/AbstractParseTreeVisitor.h (+13/-12)
runtime/src/tree/ErrorNode.h (+7/-2)
runtime/src/tree/ErrorNodeImpl.cpp (+36/-5)
runtime/src/tree/ErrorNodeImpl.h (+14/-4)
runtime/src/tree/IterativeParseTreeWalker.cpp (+14/-19)
runtime/src/tree/ParseTree.cpp (+0/-3)
runtime/src/tree/ParseTree.h (+13/-4)
runtime/src/tree/ParseTreeType.h (+22/-0)
runtime/src/tree/ParseTreeVisitor.h (+4/-4)
runtime/src/tree/ParseTreeWalker.cpp (+8/-9)
runtime/src/tree/ParseTreeWalker.h (+4/-4)
runtime/src/tree/TerminalNode.h (+10/-2)
runtime/src/tree/TerminalNodeImpl.cpp (+2/-5)
runtime/src/tree/TerminalNodeImpl.h (+4/-5)
runtime/src/tree/pattern/ParseTreePatternMatcher.cpp (+1/-2)
runtime/src/tree/xpath/XPathLexer.cpp (+122/-115)
runtime/src/tree/xpath/XPathLexer.h (+24/-27)
runtime/src/tree/xpath/XPathLexer.interp (+41/-0)
runtime/tests/Utf8Test.cpp (+110/-0)
Reviewer Review Type Date Requested Status
Andreas Hasenack Needs Information
Canonical Server Reporter Pending
Review via email: mp+460528@code.launchpad.net

Description of the change

Update noble to latest antlr4-cpp-runtime version. This will technically be a library transition, but there are no reverse dependencies:

reverse-depends -r noble libantlr4-runtime-dev
No reverse dependencies found

reverse-depends -r noble libantlr4-runtime4.9
Reverse-Depends
===============
* libantlr4-runtime-dev

This is needed for mysql-shell to build as it uses newer features provided in 4.10+

PPA: https://launchpad.net/~lvoytek/+archive/ubuntu/antlr4-cpp-runtime-update

To post a comment you must log in.
Revision history for this message
Andreas Hasenack (ahasenack) wrote :

debian/experimental has 4.10+dfsg-1, have you considered syncing that? Or do you really prefer 4.13.x?

review: Needs Information
Revision history for this message
Lena Voytek (lvoytek) wrote :

4.10 in experimental also works fine for me. I just updated to 4.13.1 to provide the latest version. If syncing with experimental sounds better overall I can go ahead and do that

Revision history for this message
Andreas Hasenack (ahasenack) wrote :

If not syncing from debian/experimental, perhaps you could grab some of the changes they did there, like a new dep8 test d/t/cmake, README.md install. They also have a patch for the googletest download plus the d/rules change, not sure if we need the patch also.

Revision history for this message
Andreas Hasenack (ahasenack) wrote :

It's up to you, I don't really know the history of this package. 4.10 is from April 2022, and 4.13.1 is from September 2023. There are no open debian bugs, not even one requesting an update. I'm fine either way, just make sure to grab from debian/experimental the debian/* changes that make sense for us.

Revision history for this message
Andreas Hasenack (ahasenack) wrote :

And, well, you know the pros and cons of adding delta or going ahead of debian :)

Revision history for this message
Lena Voytek (lvoytek) wrote :

Sounds good, I think syncing with experimental may be better in this case for consistency + mysql-shell is specifically tested against 4.10.x at the moment. So I'll go ahead and do that. Thanks for the advice!

Revision history for this message
Andreas Hasenack (ahasenack) wrote :

> mysql-shell is specifically tested against 4.10.x at the moment

Ah, good info, and reasoning, +1

Revision history for this message
Lena Voytek (lvoytek) wrote :

Done:

syncpackage -d experimental -r noble-proposed antlr4-cpp-runtime
Source antlr4-cpp-runtime -> noble/Proposed: current version 4.9+dfsg-3, new version 4.10+dfsg-1
Downloading antlr4-cpp-runtime_4.10+dfsg-1.dsc from deb.debian.org (0.002 MiB)
[=====================================================>]100%
Downloading antlr4-cpp-runtime_4.9+dfsg-3.dsc from archive.ubuntu.com (0.002 MiB)
[=====================================================>]100%
Downloading changelog from launchpadlibrarian.net (0.002 MiB)
[=====================================================>]100%
New changes:
antlr4-cpp-runtime (4.10+dfsg-1) experimental; urgency=medium

  * New upstream version 4.10+dfsg
  * Simplify debian/watch.
  * Refresh debian/copyright.
  * Add autopkgtest.
  * Install README.md.
  * Bump debhelper-compat (no changes).

 -- Andrius Merkys <email address hidden> Thu, 14 Apr 2022 02:30:51 -0400

antlr4-cpp-runtime (4.9.1+dfsg-1) experimental; urgency=medium

  * New upstream version 4.9.1+dfsg
  * Removing no longer needed Files-Excluded entry.
  * Updating copyright years.

 -- Andrius Merkys <email address hidden> Mon, 15 Feb 2021 01:40:04 -0500
Sync this package [y|N]? y
Request succeeded; you should get an e-mail once it is processed.

Revision history for this message
Andreas Hasenack (ahasenack) wrote :

This MP should actually be rejected, as we didn't update the package to 4.13.1 in noble.

Revision history for this message
Lena Voytek (lvoytek) wrote :

That's fair, thanks for updating

Unmerged commits

5210f9a... by Lena Voytek

changelog

bc74392... by Lena Voytek

update maintainer

12122e3... by Lena Voytek

  * d/control: Update library name to match new version

1d805a7... by Lena Voytek

  * d/rules: Avoid downloading googletest remotely

ba08a6e... by Lena Voytek

  * d/p/*: Remove patches that are no longer needed

b70b5fd... by Lena Voytek

New upstream release 4.13.1

Signed-off-by: Lena Voytek <email address hidden>

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1diff --git a/CMakeLists.txt b/CMakeLists.txt
2index 32b34bf..7efb19c 100644
3--- a/CMakeLists.txt
4+++ b/CMakeLists.txt
5@@ -1,6 +1,11 @@
6 # -*- mode:cmake -*-
7-cmake_minimum_required (VERSION 2.8)
8-# 2.8 needed because of ExternalProject
9+cmake_minimum_required (VERSION 3.15)
10+# 3.14 needed because of FetchContent
11+# 3.15 needed to avid spew of warnings related to overriding cl command line flags
12+
13+set(CMAKE_MACOSX_RPATH OFF)
14+
15+enable_testing()
16
17 # Detect build type, fallback to release and throw a warning if use didn't specify any
18 if(NOT CMAKE_BUILD_TYPE)
19@@ -22,27 +27,17 @@ endif(NOT WITH_DEMO)
20 option(WITH_LIBCXX "Building with clang++ and libc++(in Linux). To enable with: -DWITH_LIBCXX=On" Off)
21 option(WITH_STATIC_CRT "(Visual C++) Enable to statically link CRT, which avoids requiring users to install the redistribution package.
22 To disable with: -DWITH_STATIC_CRT=Off" On)
23+option(DISABLE_WARNINGS "Suppress compiler warnings for all built ANTLR targets" OFF)
24+
25+cmake_policy(SET CMP0091 NEW) # Enable use of CMAKE_MSVC_RUNTIME_LIBRARY
26+if(WITH_STATIC_CRT)
27+ set(CMAKE_MSVC_RUNTIME_LIBRARY "MultiThreaded$<$<CONFIG:Debug>:Debug>")
28+else()
29+ set(CMAKE_MSVC_RUNTIME_LIBRARY "MultiThreaded$<$<CONFIG:Debug>:Debug>DLL")
30+endif(WITH_STATIC_CRT)
31
32 project(LIBANTLR4)
33
34-if(CMAKE_VERSION VERSION_EQUAL "3.0.0" OR
35- CMAKE_VERSION VERSION_GREATER "3.0.0")
36- CMAKE_POLICY(SET CMP0026 NEW)
37- CMAKE_POLICY(SET CMP0054 OLD)
38- CMAKE_POLICY(SET CMP0045 OLD)
39- CMAKE_POLICY(SET CMP0042 OLD)
40-endif()
41-
42-if(CMAKE_VERSION VERSION_EQUAL "3.3.0" OR
43- CMAKE_VERSION VERSION_GREATER "3.3.0")
44- CMAKE_POLICY(SET CMP0059 OLD)
45- CMAKE_POLICY(SET CMP0054 OLD)
46-endif()
47-
48-if(CMAKE_SYSTEM_NAME MATCHES "Linux")
49- find_package(PkgConfig REQUIRED)
50- pkg_check_modules(UUID REQUIRED uuid)
51-endif()
52 if(APPLE)
53 find_library(COREFOUNDATION_LIBRARY CoreFoundation)
54 endif()
55@@ -65,29 +60,35 @@ if(WITH_DEMO)
56 endif()
57 endif(WITH_DEMO)
58
59-if(MSVC_VERSION)
60+if(CMAKE_CXX_COMPILER_ID MATCHES "MSVC")
61 set(MY_CXX_WARNING_FLAGS " /W4")
62+
63+ if(DISABLE_WARNINGS)
64+ set(MY_CXX_WARNING_FLAGS " /w")
65+ endif()
66 else()
67 set(MY_CXX_WARNING_FLAGS " -Wall -pedantic -W")
68+
69+ if(DISABLE_WARNINGS)
70+ set(MY_CXX_WARNING_FLAGS " -w")
71+ endif()
72 endif()
73
74 # Define USE_UTF8_INSTEAD_OF_CODECVT macro.
75 # set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DUSE_UTF8_INSTEAD_OF_CODECVT")
76
77 # Initialize CXXFLAGS.
78-if("${CMAKE_VERSION}" VERSION_GREATER 3.1.0)
79- set(CMAKE_CXX_STANDARD 11)
80- set(CMAKE_CXX_STANDARD_REQUIRED ON)
81-else()
82- set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
83- set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -std=c++11")
84- set(CMAKE_CXX_FLAGS_MINSIZEREL "${CMAKE_CXX_FLAGS_MINSIZEREL} -std=c++11")
85- set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -std=c++11")
86- set(CMAKE_CXX_FLAGS_RELWITHDEBINFO "${CMAKE_CXX_FLAGS_RELWITHDEBINFO} -std=c++11")
87+if(NOT DEFINED CMAKE_CXX_STANDARD)
88+ # only set CMAKE_CXX_STANDARD if not already set
89+ # this allows the standard to be set by the caller, for example with -DCMAKE_CXX_STANDARD:STRING=17
90+ set(CMAKE_CXX_STANDARD 17)
91 endif()
92+set(CMAKE_CXX_STANDARD_REQUIRED ON)
93+set(CMAKE_CXX_EXTENSIONS OFF)
94
95 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${MY_CXX_WARNING_FLAGS}")
96-if(MSVC_VERSION)
97+
98+if(CMAKE_CXX_COMPILER_ID MATCHES "MSVC")
99 set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} /Od /Zi /MP ${MY_CXX_WARNING_FLAGS}")
100 set(CMAKE_CXX_FLAGS_MINSIZEREL "${CMAKE_CXX_FLAGS_MINSIZEREL} /O1 /Oi /Ob2 /Gy /MP /DNDEBUG ${MY_CXX_WARNING_FLAGS}")
101 set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} /O2 /Oi /Ob2 /Gy /MP /DNDEBUG ${MY_CXX_WARNING_FLGAS}")
102@@ -99,21 +100,21 @@ else()
103 set(CMAKE_CXX_FLAGS_RELWITHDEBINFO "${CMAKE_CXX_FLAGS_RELWITHDEBINFO} -O2 -g ${MY_CXX_WARNING_FLAGS}")
104 endif()
105
106-# Compiler-specific C++11 activation.
107-if("${CMAKE_CXX_COMPILER_ID}" MATCHES "GNU" OR "${CMAKE_CXX_COMPILER_ID}" MATCHES "Intel")
108+# Compiler-specific C++17 activation.
109+if(CMAKE_CXX_COMPILER_ID MATCHES "GNU" OR CMAKE_CXX_COMPILER_ID MATCHES "Intel")
110 execute_process(
111 COMMAND ${CMAKE_CXX_COMPILER} -dumpversion OUTPUT_VARIABLE GCC_VERSION)
112 # Just g++-5.0 and greater contain <codecvt> header. (test in ubuntu)
113 if(NOT (GCC_VERSION VERSION_GREATER 5.0 OR GCC_VERSION VERSION_EQUAL 5.0))
114 message(FATAL_ERROR "${PROJECT_NAME} requires g++ 5.0 or greater.")
115 endif ()
116-elseif ("${CMAKE_CXX_COMPILER_ID}" MATCHES "Clang" AND ANDROID)
117+elseif (CMAKE_CXX_COMPILER_ID MATCHES "Clang" AND ANDROID)
118 # Need -Os cflag and cxxflags here to work with exception handling on armeabi.
119 # see https://github.com/android-ndk/ndk/issues/573
120 # and without -stdlib=libc++ cxxflags
121-elseif ("${CMAKE_CXX_COMPILER_ID}" MATCHES "Clang" AND APPLE)
122- set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -stdlib=libc++")
123-elseif ("${CMAKE_CXX_COMPILER_ID}" MATCHES "Clang" AND ( CMAKE_SYSTEM_NAME MATCHES "Linux" OR CMAKE_SYSTEM_NAME MATCHES "FreeBSD") )
124+elseif (CMAKE_CXX_COMPILER_ID MATCHES "Clang" AND APPLE)
125+ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++17 -stdlib=libc++")
126+elseif (CMAKE_CXX_COMPILER_ID MATCHES "Clang" AND ( CMAKE_SYSTEM_NAME MATCHES "Linux" OR CMAKE_SYSTEM_NAME MATCHES "FreeBSD") )
127 execute_process(
128 COMMAND ${CMAKE_CXX_COMPILER} -dumpversion OUTPUT_VARIABLE CLANG_VERSION)
129 if(NOT (CLANG_VERSION VERSION_GREATER 4.2.1 OR CLANG_VERSION VERSION_EQUAL 4.2.1))
130@@ -124,11 +125,11 @@ elseif ("${CMAKE_CXX_COMPILER_ID}" MATCHES "Clang" AND ( CMAKE_SYSTEM_NAME MATCH
131 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -stdlib=libc++")
132 endif()
133 elseif(MSVC_VERSION GREATER 1800 OR MSVC_VERSION EQUAL 1800)
134- # Visual Studio 2012+ supports c++11 features
135+ # Visual Studio 2012+ supports C++17 features
136 elseif(CMAKE_SYSTEM_NAME MATCHES "Emscripten")
137- set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -stdlib=libc++")
138+ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++17 -stdlib=libc++")
139 else()
140- message(FATAL_ERROR "Your C++ compiler does not support C++11.")
141+ message(FATAL_ERROR "Your C++ compiler does not support C++17.")
142 endif()
143
144
145@@ -156,7 +157,7 @@ if (ANTLR4_INSTALL)
146
147 set(ANTLR4_LIB_DIR ${CMAKE_INSTALL_LIBDIR} CACHE STRING
148 "Installation directory for libraries, relative to ${CMAKE_INSTALL_PREFIX}.")
149-
150+
151 set(ANTLR4_INCLUDE_DIR ${CMAKE_INSTALL_INCLUDEDIR}/antlr4-runtime CACHE STRING
152 "Installation directory for include files, relative to ${CMAKE_INSTALL_PREFIX}.")
153
154@@ -164,18 +165,18 @@ if (ANTLR4_INSTALL)
155 cmake/antlr4-runtime.cmake.in
156 ${project_runtime_config}
157 INSTALL_DESTINATION ${ANTLR4_CMAKE_DIR}/antlr4-runtime
158- PATH_VARS
159+ PATH_VARS
160 ANTLR4_INCLUDE_DIR
161 ANTLR4_LIB_DIR )
162-
163+
164 configure_package_config_file(
165 cmake/antlr4-generator.cmake.in
166 ${project_generator_config}
167 INSTALL_DESTINATION ${ANTLR4_CMAKE_DIR}/antlr4-generator
168- PATH_VARS
169+ PATH_VARS
170 ANTLR4_INCLUDE_DIR
171 ANTLR4_LIB_DIR )
172-
173+
174 write_basic_package_version_file(
175 ${version_runtime_config}
176 VERSION ${ANTLR_VERSION}
177@@ -202,12 +203,12 @@ endif(ANTLR4_INSTALL)
178 if(EXISTS LICENSE.txt)
179 install(FILES LICENSE.txt
180 DESTINATION "share/doc/libantlr4")
181-elseif(EXISTS ../../LICENSE.txt)
182+elseif(EXISTS ../../LICENSE.txt)
183 install(FILES ../../LICENSE.txt
184 DESTINATION "share/doc/libantlr4")
185 endif()
186
187-install(FILES README.md VERSION
188+install(FILES README.md VERSION
189 DESTINATION "share/doc/libantlr4")
190
191 set(CPACK_PACKAGE_CONTACT "antlr-discussion@googlegroups.com")
192diff --git a/LICENSE.txt b/LICENSE.txt
193index 2042d1b..5d27694 100644
194--- a/LICENSE.txt
195+++ b/LICENSE.txt
196@@ -1,52 +1,28 @@
197-[The "BSD 3-clause license"]
198-Copyright (c) 2012-2017 The ANTLR Project. All rights reserved.
199+Copyright (c) 2012-2022 The ANTLR Project. All rights reserved.
200
201 Redistribution and use in source and binary forms, with or without
202 modification, are permitted provided that the following conditions
203 are met:
204
205- 1. Redistributions of source code must retain the above copyright
206- notice, this list of conditions and the following disclaimer.
207- 2. Redistributions in binary form must reproduce the above copyright
208- notice, this list of conditions and the following disclaimer in the
209- documentation and/or other materials provided with the distribution.
210- 3. Neither the name of the copyright holder nor the names of its contributors
211- may be used to endorse or promote products derived from this software
212- without specific prior written permission.
213-
214-THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
215-IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
216-OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
217-IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
218-INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
219-NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
220-DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
221-THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
222-(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
223-THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
224-
225-=====
226-
227-MIT License for codepointat.js from https://git.io/codepointat
228-MIT License for fromcodepoint.js from https://git.io/vDW1m
229-
230-Copyright Mathias Bynens <https://mathiasbynens.be/>
231-
232-Permission is hereby granted, free of charge, to any person obtaining
233-a copy of this software and associated documentation files (the
234-"Software"), to deal in the Software without restriction, including
235-without limitation the rights to use, copy, modify, merge, publish,
236-distribute, sublicense, and/or sell copies of the Software, and to
237-permit persons to whom the Software is furnished to do so, subject to
238-the following conditions:
239-
240-The above copyright notice and this permission notice shall be
241-included in all copies or substantial portions of the Software.
242-
243-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
244-EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
245-MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
246-NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
247-LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
248-OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
249-WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
250+1. Redistributions of source code must retain the above copyright
251+notice, this list of conditions and the following disclaimer.
252+
253+2. Redistributions in binary form must reproduce the above copyright
254+notice, this list of conditions and the following disclaimer in the
255+documentation and/or other materials provided with the distribution.
256+
257+3. Neither name of copyright holders nor the names of its contributors
258+may be used to endorse or promote products derived from this software
259+without specific prior written permission.
260+
261+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
262+``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
263+LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
264+A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR
265+CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
266+EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
267+PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
268+PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
269+LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
270+NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
271+SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
272diff --git a/README.md b/README.md
273index 81d1f55..fb5b22d 100644
274--- a/README.md
275+++ b/README.md
276@@ -5,18 +5,18 @@ This folder contains the C++ runtime support for ANTLR. See [the canonical antl
277 ## Authors and major contributors
278
279 ANTLR 4 is the result of substantial effort of the following people:
280-
281+
282 * [Terence Parr](http://www.cs.usfca.edu/~parrt/), parrt@cs.usfca.edu
283 ANTLR project lead and supreme dictator for life
284 [University of San Francisco](http://www.usfca.edu/)
285-* [Sam Harwell](http://tunnelvisionlabs.com/)
286+* [Sam Harwell](http://tunnelvisionlabs.com/)
287 Tool co-author, Java and C# target)
288
289 The C++ target has been the work of the following people:
290
291 * Dan McLaughlin, dan.mclaughlin@gmail.com (initial port, got code to compile)
292 * David Sisson, dsisson@google.com (initial port, made the runtime C++ tests runnable)
293-* [Mike Lischke](www.soft-gems.net), mike@lischke-online.de (brought the initial port to a working library, made most runtime tests passing)
294+* [Mike Lischke](http://www.soft-gems.net), mike@lischke-online.de (brought the initial port to a working library, made most runtime tests passing)
295
296 ## Other contributors
297
298@@ -35,16 +35,17 @@ The C++ target has been the work of the following people:
299
300 ### Build + Usage Notes
301
302-The minimum C++ version to compile the ANTLR C++ runtime with is C++11. The supplied projects can built the runtime either as static or dynamic library, as both 32bit and 64bit arch. The macOS project contains a target for iOS and can also be built using cmake (instead of XCode).
303+The minimum C++ version to compile the ANTLR C++ runtime with is C++17. The supplied projects can built the runtime either as static or dynamic library, as both 32bit and 64bit arch. The macOS project contains a target for iOS and can also be built using cmake (instead of XCode).
304
305 Include the antlr4-runtime.h umbrella header in your target application to get everything needed to use the library.
306
307 If you are compiling with cmake, the minimum version required is cmake 2.8.
308+By default, the libraries produced by the CMake build target C++17. If you want to target a different C++ standard, you can explicitly pass the standard - e.g. `-DCMAKE_CXX_STANDARD=17`.
309
310 #### Compiling on Windows with Visual Studio using he Visual Studio projects
311-Simply open the VS project from the runtime folder (VS 2013+) and build it.
312+Simply open the VS project from the runtime folder (VS 2019+) and build it.
313
314-#### Compiling on Windows using cmake with Visual Studio VS2017 and later
315+#### Compiling on Windows using cmake with Visual Studio VS2019 and later
316 Use the "Open Folder" Feature from the File->Open->Folder menu to open the runtime/Cpp directory.
317 It will automatically use the CMake description to open up a Visual Studio Solution.
318
319@@ -61,7 +62,7 @@ Try run cmake -DCMAKE_ANDROID_NDK=/folder/of/android_ndkr17_and_above -DCMAKE_SY
320 - make
321 - DESTDIR=\<antlr4-dir\>/runtime/Cpp/run make install
322
323-If you don't want to build the demo then simply run cmake without parameters.
324+If you don't want to build the demo then replace the "cmake .. -DANTLR_JAR_LOCATION<...>" command in the above recipe with "cmake .." without any further parameters.
325 There is another cmake script available in the subfolder cmake/ for those who prefer the superbuild cmake pattern.
326
327 #### CMake Package support
328@@ -69,5 +70,3 @@ If the CMake variable 'ANTLR4_INSTALL' is set, CMake Packages will be build and
329 They expose two packages: antlr4_runtime and antlr4_generator which can be referenced to ease up the use of the
330 ANTLR Generator and runtime.
331 Use and Sample can be found [here](cmake/Antlr4Package.md)
332-
333-
334diff --git a/VERSION b/VERSION
335index 86a9588..56d2fb5 100644
336--- a/VERSION
337+++ b/VERSION
338@@ -1 +1 @@
339-4.9
340+4.13.1
341diff --git a/cmake/Antlr4Package.md b/cmake/Antlr4Package.md
342index 86145d6..40e7cc2 100644
343--- a/cmake/Antlr4Package.md
344+++ b/cmake/Antlr4Package.md
345@@ -2,17 +2,17 @@
346
347 ## The `antlr4-generator` Package
348
349-To use the Package you must insert a
350+To use the Package you must insert a
351 ```cmake
352 find_package(antlr4-generator REQUIRED)
353 ```
354 line in your `CMakeList.txt` file.
355
356-The package exposes a function `antlr4_generate` that generates the required setup to call ANTLR for a
357+The package exposes a function `antlr4_generate` that generates the required setup to call ANTLR for a
358 given input file during build.
359
360 The following table lists the parameters that can be used with the function:
361-
362+
363 Argument# | Required | Default | Use
364 ----------|-----------|---------|---
365 0 | Yes | n/a | Unique target name. It is used to generate CMake Variables to reference the various outputs of the generation
366@@ -42,7 +42,7 @@ Output variable | Meaning
367 ```cmake
368 # generate parser with visitor classes.
369 # put the classes in C++ namespace 'antlrcpptest::'
370- antlr4_generate(
371+ antlr4_generate(
372 antlrcpptest_parser
373 ${CMAKE_CURRENT_SOURCE_DIR}/TLexer.g4
374 LEXER
375@@ -56,7 +56,7 @@ Output variable | Meaning
376
377 ## The `antlr4-runtime` Package
378
379-To use the Package you must insert a
380+To use the Package you must insert a
381 ```cmake
382 find_package(antlr4-runtime REQUIRED)
383 ```
384@@ -85,7 +85,7 @@ include_directories( ${ANTLR4_INCLUDE_DIR} )
385 add_dependencies( Parsertest antlr4_shared )
386
387 # add runtime to project link libraries
388-target_link_libraries( Parsertest PRIVATE
389+target_link_libraries( Parsertest PRIVATE
390 antlr4_shared)
391 ```
392
393@@ -94,12 +94,12 @@ target_link_libraries( Parsertest PRIVATE
394 # Bring in the required packages
395 find_package(antlr4-runtime REQUIRED)
396 find_package(antlr4-generator REQUIRED)
397-
398+
399 # Set path to generator
400- set(ANTLR4_JAR_LOCATION ${PROJECT_SOURCE_DIR}/thirdparty/antlr/antlr-4.9-complete.jar)
401-
402+ set(ANTLR4_JAR_LOCATION ${PROJECT_SOURCE_DIR}/thirdparty/antlr/antlr-4.13.1-complete.jar)
403+
404 # generate lexer
405- antlr4_generate(
406+ antlr4_generate(
407 antlrcpptest_lexer
408 ${CMAKE_CURRENT_SOURCE_DIR}/TLexer.g4
409 LEXER
410@@ -107,9 +107,9 @@ target_link_libraries( Parsertest PRIVATE
411 FALSE
412 "antlrcpptest"
413 )
414-
415+
416 # generate parser
417- antlr4_generate(
418+ antlr4_generate(
419 antlrcpptest_parser
420 ${CMAKE_CURRENT_SOURCE_DIR}/TParser.g4
421 PARSER
422@@ -119,18 +119,18 @@ target_link_libraries( Parsertest PRIVATE
423 "${ANTLR4_TOKEN_FILES_antlrcpptest_lexer}"
424 "${ANTLR4_TOKEN_DIRECTORY_antlrcpptest_lexer}"
425 )
426-
427+
428 # add directories for generated include files
429 include_directories( ${PROJECT_BINARY_DIR} ${ANTLR4_INCLUDE_DIR} ${ANTLR4_INCLUDE_DIR_antlrcpptest_lexer} ${ANTLR4_INCLUDE_DIR_antlrcpptest_parser} )
430-
431+
432 # add generated source files
433 add_executable( Parsertest main.cpp ${ANTLR4_SRC_FILES_antlrcpptest_lexer} ${ANTLR4_SRC_FILES_antlrcpptest_parser} )
434-
435+
436 # add required runtime library
437 add_dependencies( Parsertest antlr4_shared )
438-
439- target_link_libraries( Parsertest PRIVATE
440+
441+ target_link_libraries( Parsertest PRIVATE
442 antlr4_shared)
443-
444+
445 ```
446-
447+
448diff --git a/cmake/ExternalAntlr4Cpp.cmake b/cmake/ExternalAntlr4Cpp.cmake
449index f37e8d9..8a98d90 100644
450--- a/cmake/ExternalAntlr4Cpp.cmake
451+++ b/cmake/ExternalAntlr4Cpp.cmake
452@@ -1,5 +1,9 @@
453 cmake_minimum_required(VERSION 3.7)
454
455+if(POLICY CMP0114)
456+ cmake_policy(SET CMP0114 NEW)
457+endif()
458+
459 include(ExternalProject)
460
461 set(ANTLR4_ROOT ${CMAKE_CURRENT_BINARY_DIR}/antlr4_runtime/src/antlr4_runtime)
462@@ -11,12 +15,16 @@ if(NOT DEFINED ANTLR4_TAG)
463 set(ANTLR4_TAG master)
464 endif()
465
466+# Ensure that the include dir already exists at configure time (to avoid cmake erroring
467+# on non-existent include dirs)
468+file(MAKE_DIRECTORY "${ANTLR4_INCLUDE_DIRS}")
469+
470 if(${CMAKE_GENERATOR} MATCHES "Visual Studio.*")
471- set(ANTLR4_OUTPUT_DIR ${ANTLR4_ROOT}/runtime/Cpp/dist/$(Configuration))
472+ set(ANTLR4_OUTPUT_DIR ${ANTLR4_ROOT}/runtime/Cpp/runtime/$(Configuration))
473 elseif(${CMAKE_GENERATOR} MATCHES "Xcode.*")
474- set(ANTLR4_OUTPUT_DIR ${ANTLR4_ROOT}/runtime/Cpp/dist/$(CONFIGURATION))
475+ set(ANTLR4_OUTPUT_DIR ${ANTLR4_ROOT}/runtime/Cpp/runtime/$(CONFIGURATION))
476 else()
477- set(ANTLR4_OUTPUT_DIR ${ANTLR4_ROOT}/runtime/Cpp/dist)
478+ set(ANTLR4_OUTPUT_DIR ${ANTLR4_ROOT}/runtime/Cpp/runtime)
479 endif()
480
481 if(MSVC)
482@@ -38,7 +46,7 @@ else()
483 set(ANTLR4_SHARED_LIBRARIES
484 ${ANTLR4_OUTPUT_DIR}/libantlr4-runtime.dll.a)
485 set(ANTLR4_RUNTIME_LIBRARIES
486- ${ANTLR4_OUTPUT_DIR}/cygantlr4-runtime-4.9.dll)
487+ ${ANTLR4_OUTPUT_DIR}/cygantlr4-runtime-4.13.1.dll)
488 elseif(APPLE)
489 set(ANTLR4_RUNTIME_LIBRARIES
490 ${ANTLR4_OUTPUT_DIR}/libantlr4-runtime.dylib)
491@@ -88,6 +96,9 @@ if(ANTLR4_ZIP_REPOSITORY)
492 CMAKE_CACHE_ARGS
493 -DCMAKE_BUILD_TYPE:STRING=${CMAKE_BUILD_TYPE}
494 -DWITH_STATIC_CRT:BOOL=${ANTLR4_WITH_STATIC_CRT}
495+ -DDISABLE_WARNINGS:BOOL=ON
496+ # -DCMAKE_CXX_STANDARD:STRING=17 # if desired, compile the runtime with a different C++ standard
497+ # -DCMAKE_CXX_STANDARD:STRING=${CMAKE_CXX_STANDARD} # alternatively, compile the runtime with the same C++ standard as the outer project
498 INSTALL_COMMAND ""
499 EXCLUDE_FROM_ALL 1)
500 else()
501@@ -104,11 +115,14 @@ else()
502 CMAKE_CACHE_ARGS
503 -DCMAKE_BUILD_TYPE:STRING=${CMAKE_BUILD_TYPE}
504 -DWITH_STATIC_CRT:BOOL=${ANTLR4_WITH_STATIC_CRT}
505+ -DDISABLE_WARNINGS:BOOL=ON
506+ # -DCMAKE_CXX_STANDARD:STRING=17 # if desired, compile the runtime with a different C++ standard
507+ # -DCMAKE_CXX_STANDARD:STRING=${CMAKE_CXX_STANDARD} # alternatively, compile the runtime with the same C++ standard as the outer project
508 INSTALL_COMMAND ""
509 EXCLUDE_FROM_ALL 1)
510 endif()
511
512-# Seperate build step as rarely people want both
513+# Separate build step as rarely people want both
514 set(ANTLR4_BUILD_DIR ${ANTLR4_ROOT})
515 if(${CMAKE_VERSION} VERSION_GREATER_EQUAL "3.14.0")
516 # CMake 3.14 builds in above's SOURCE_SUBDIR when BUILD_IN_SOURCE is true
517@@ -131,6 +145,10 @@ add_library(antlr4_static STATIC IMPORTED)
518 add_dependencies(antlr4_static antlr4_runtime-build_static)
519 set_target_properties(antlr4_static PROPERTIES
520 IMPORTED_LOCATION ${ANTLR4_STATIC_LIBRARIES})
521+target_include_directories(antlr4_static
522+ INTERFACE
523+ ${ANTLR4_INCLUDE_DIRS}
524+)
525
526 ExternalProject_Add_Step(
527 antlr4_runtime
528@@ -148,6 +166,11 @@ add_library(antlr4_shared SHARED IMPORTED)
529 add_dependencies(antlr4_shared antlr4_runtime-build_shared)
530 set_target_properties(antlr4_shared PROPERTIES
531 IMPORTED_LOCATION ${ANTLR4_RUNTIME_LIBRARIES})
532+target_include_directories(antlr4_shared
533+ INTERFACE
534+ ${ANTLR4_INCLUDE_DIRS}
535+)
536+
537 if(ANTLR4_SHARED_LIBRARIES)
538 set_target_properties(antlr4_shared PROPERTIES
539 IMPORTED_IMPLIB ${ANTLR4_SHARED_LIBRARIES})
540diff --git a/cmake/FindANTLR.cmake b/cmake/FindANTLR.cmake
541index e61e880..fb71cc5 100644
542--- a/cmake/FindANTLR.cmake
543+++ b/cmake/FindANTLR.cmake
544@@ -2,7 +2,7 @@ find_package(Java QUIET COMPONENTS Runtime)
545
546 if(NOT ANTLR_EXECUTABLE)
547 find_program(ANTLR_EXECUTABLE
548- NAMES antlr.jar antlr4.jar antlr-4.jar antlr-4.9-complete.jar)
549+ NAMES antlr.jar antlr4.jar antlr-4.jar antlr-4.13.1-complete.jar)
550 endif()
551
552 if(ANTLR_EXECUTABLE AND Java_JAVA_EXECUTABLE)
553@@ -14,7 +14,7 @@ if(ANTLR_EXECUTABLE AND Java_JAVA_EXECUTABLE)
554 OUTPUT_STRIP_TRAILING_WHITESPACE)
555
556 if(ANTLR_COMMAND_RESULT EQUAL 0)
557- string(REGEX MATCH "Version [0-9]+(\\.[0-9])*" ANTLR_VERSION ${ANTLR_COMMAND_OUTPUT})
558+ string(REGEX MATCH "Version [0-9]+(\\.[0-9]+)*" ANTLR_VERSION ${ANTLR_COMMAND_OUTPUT})
559 string(REPLACE "Version " "" ANTLR_VERSION ${ANTLR_VERSION})
560 else()
561 message(
562diff --git a/cmake/README.md b/cmake/README.md
563index 33bf4d2..c28af52 100644
564--- a/cmake/README.md
565+++ b/cmake/README.md
566@@ -6,7 +6,7 @@ Here is how you can use this external project to create the antlr4cpp demo to st
567 1. Make a subfolder cmake
568 2. Copy the files in this folder to srcfolder/cmake
569 3. Cut below and use it to create srcfolder/CMakeLists.txt
570- 4. Copy main.cpp, TLexer.g4 and TParser.g4 to ./srcfolder/ from [here](https://github.com/antlr/antlr4/tree/master/runtime/Cpp/demo)
571+ 4. Copy main.cpp, TLexer.g4 and TParser.g4 to srcfolder/ from [here](https://github.com/antlr/antlr4/tree/master/runtime/Cpp/demo)
572 2. Make a build folder e.g. ~/buildfolder/
573 3. From the buildfolder, run `cmake ~/srcfolder; make`
574
575@@ -16,14 +16,22 @@ CMAKE_MINIMUM_REQUIRED(VERSION 3.7 FATAL_ERROR)
576
577 list(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake)
578
579-# compiler must be 11 or 14
580-set(CMAKE_CXX_STANDARD 11)
581+# compiler must be 17
582+set(CMAKE_CXX_STANDARD 17)
583
584 # required if linking to static library
585 add_definitions(-DANTLR4CPP_STATIC)
586
587 # using /MD flag for antlr4_runtime (for Visual C++ compilers only)
588 set(ANTLR4_WITH_STATIC_CRT OFF)
589+
590+# Specify the version of the antlr4 library needed for this project.
591+# By default the latest version of antlr4 will be used. You can specify a
592+# specific, stable version by setting a repository tag value or a link
593+# to a zip file containing the libary source.
594+# set(ANTLR4_TAG 4.13.1)
595+# set(ANTLR4_ZIP_REPOSITORY https://github.com/antlr/antlr4/archive/refs/tags/4.13.1.zip)
596+
597 # add external build for antlrcpp
598 include(ExternalAntlr4Cpp)
599 # add antrl4cpp artifacts to project environment
600@@ -31,7 +39,7 @@ include_directories(${ANTLR4_INCLUDE_DIRS})
601
602 # set variable pointing to the antlr tool that supports C++
603 # this is not required if the jar file can be found under PATH environment
604-set(ANTLR_EXECUTABLE /home/user/antlr-4.9-complete.jar)
605+set(ANTLR_EXECUTABLE /home/user/antlr-4.13.1-complete.jar)
606 # add macros to generate ANTLR Cpp code from grammar
607 find_package(ANTLR REQUIRED)
608
609@@ -123,12 +131,14 @@ ANTLR4_RUNTIME_LIBRARIES - path to antlr4 shared runtime library (such as DLL, D
610 ANTLR4_TAG - branch/tag used for building antlr4 library
611 ```
612
613-`ANTLR4_TAG` is set to master branch by default to keep antlr4 updated. However, it will be required to rebuild after every `clean` is called. Set `ANTLR4_TAG` to a desired commit hash value to avoid rebuilding after every `clean` and keep the build stable, at the cost of not automatically update to latest commit.
614+`ANTLR4_TAG` is set to master branch by default to keep the antlr4 library up to date. However, this will require a rebuild after every `clean` is called. Set `ANTLR4_TAG` to a desired commit hash value to avoid rebuilding after every `clean` and keep the build stable, at the cost of not automatically updating to latest commit.
615
616-The ANTLR C++ runtime source is downloaded from GitHub by default. However, users may specify `ANTLR4_ZIP_REPOSITORY` to list the zip file from [ANTLR downloads](http://www.antlr.org/download.html) (under *C++ Target*). This variable can list a zip file included in the project directory; this is useful for maintaining a canonical source for each new build.
617+By defualt the ANTLR C++ runtime source is cloned from GitHub. However, users may specify `ANTLR4_ZIP_REPOSITORY` in order to download source as a zip file from [ANTLR downloads](http://www.antlr.org/download.html) (under *C++ Target*) or other locations. For example, this variable could list a zip file included in your the project directory. This is useful for maintaining a canonical source tree for each new build.
618
619 Visual C++ compiler users may want to additionally define `ANTLR4_WITH_STATIC_CRT` before including the file. Set `ANTLR4_WITH_STATIC_CRT` to true if ANTLR4 C++ runtime library should be compiled with `/MT` flag, otherwise will be compiled with `/MD` flag. This variable has a default value of `OFF`. Changing `ANTLR4_WITH_STATIC_CRT` after building the library may require reinitialization of CMake or `clean` for the library to get rebuilt.
620
621+You may need to modify your local copy of ExternalAntlr4Cpp.cpp to modify some build settings. For example, to specify the C++ standard to use when building the runtime, add `-DCMAKE_CXX_STANDARD:STRING=17` to `CMAKE_CACHE_ARGS`.
622+
623 ### Examples
624
625 To build and link ANTLR4 static library to a target one may call:
626diff --git a/cmake/antlr4-generator.cmake.in b/cmake/antlr4-generator.cmake.in
627index 5839cbe..6399651 100644
628--- a/cmake/antlr4-generator.cmake.in
629+++ b/cmake/antlr4-generator.cmake.in
630@@ -88,7 +88,7 @@ function(antlr4_generate
631 else()
632 set(Antlr4_BuildListenerOption "-no-listener")
633 endif ()
634-
635+
636 if ( ( ARGC GREATER_EQUAL 5 ) AND ARGV4 )
637 set(Antlr4_BuildVisitorOption "-visitor")
638
639@@ -101,7 +101,7 @@ function(antlr4_generate
640 else()
641 set(Antlr4_BuildVisitorOption "-no-visitor")
642 endif ()
643-
644+
645 if ( (ARGC GREATER_EQUAL 6 ) AND (NOT ${ARGV5} STREQUAL "") )
646 set(Antlr4_NamespaceOption "-package;${ARGV5}")
647
648@@ -109,7 +109,7 @@ function(antlr4_generate
649 else()
650 set(Antlr4_NamespaceOption "")
651 endif ()
652-
653+
654 if ( (ARGC GREATER_EQUAL 7 ) AND (NOT ${ARGV6} STREQUAL "") )
655 set(Antlr4_AdditionalDependencies ${ARGV6})
656 else()
657@@ -157,7 +157,7 @@ function(antlr4_generate
658
659 # export generated cpp files into list
660 foreach(generated_file ${Antlr4_GeneratedTargets})
661-
662+
663 if (NOT CMAKE_CXX_COMPILER_ID MATCHES "MSVC")
664 set_source_files_properties(
665 ${generated_file}
666diff --git a/cmake/antlr4-runtime.cmake.in b/cmake/antlr4-runtime.cmake.in
667index 860aeb6..697b36c 100644
668--- a/cmake/antlr4-runtime.cmake.in
669+++ b/cmake/antlr4-runtime.cmake.in
670@@ -5,6 +5,9 @@ set(ANTLR_VERSION @ANTLR_VERSION@)
671 set_and_check(ANTLR4_INCLUDE_DIR "@PACKAGE_ANTLR4_INCLUDE_DIR@")
672 set_and_check(ANTLR4_LIB_DIR "@PACKAGE_ANTLR4_LIB_DIR@")
673
674+include(CMakeFindDependencyMacro)
675+find_dependency(Threads)
676+
677 include(${CMAKE_CURRENT_LIST_DIR}/@targets_export_name@.cmake)
678
679 check_required_components(antlr)
680diff --git a/debian/changelog b/debian/changelog
681index 6b44427..228b363 100644
682--- a/debian/changelog
683+++ b/debian/changelog
684@@ -1,3 +1,12 @@
685+antlr4-cpp-runtime (4.13.1+dfsg-0ubuntu1) noble; urgency=medium
686+
687+ * New upstream version 4.13.1+dfsg
688+ * d/control: Update library name to match new version
689+ * d/rules: Avoid downloading googletest remotely
690+ * d/p/*: Remove old patches
691+
692+ -- Lena Voytek <lena.voytek@canonical.com> Fri, 05 Jan 2024 08:06:53 -0700
693+
694 antlr4-cpp-runtime (4.9+dfsg-3) unstable; urgency=medium
695
696 * Fix library paths in CMake files. Thanks Peter A. Jonsson.
697diff --git a/debian/control b/debian/control
698index bc39e2d..cbd415f 100644
699--- a/debian/control
700+++ b/debian/control
701@@ -1,6 +1,7 @@
702 Source: antlr4-cpp-runtime
703 Priority: optional
704-Maintainer: Andrius Merkys <merkys@debian.org>
705+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
706+XSBC-Original-Maintainer: Andrius Merkys <merkys@debian.org>
707 Build-Depends:
708 cmake,
709 debhelper-compat (= 13),
710@@ -18,7 +19,7 @@ Section: libdevel
711 Architecture: any
712 Multi-Arch: same
713 Depends:
714- libantlr4-runtime4.9 (= ${binary:Version}),
715+ libantlr4-runtime4.13.1 (= ${binary:Version}),
716 ${misc:Depends},
717 Description: ANTLR Parser Generator - C++ runtime support (development files)
718 ANTLR (ANother Tool for Language Recognition) is a powerful parser generator
719@@ -28,7 +29,7 @@ Description: ANTLR Parser Generator - C++ runtime support (development files)
720 .
721 This package contains the development files of C++ runtime support for ANTLR.
722
723-Package: libantlr4-runtime4.9
724+Package: libantlr4-runtime4.13.1
725 Architecture: any
726 Multi-Arch: same
727 Depends:
728diff --git a/debian/patches/cxx17.patch b/debian/patches/cxx17.patch
729deleted file mode 100644
730index 7e75834..0000000
731--- a/debian/patches/cxx17.patch
732+++ /dev/null
733@@ -1,34 +0,0 @@
734-Description: Revert change that broke using libantlr4-runtime4.9 with C++17
735- Upstream commit 254b144b creeated a different ABI for C++17,
736- but it is not even possible to build antlr4-cpp-runtime for this ABI.
737- .
738- The proper fix would be upgrading to 4.9.2 where two commits
739- in March 2021 fixed this issue:
740- https://github.com/antlr/antlr4/commits/master/runtime/Cpp/runtime/src/ANTLRInputStream.h
741- .
742- The upstream fix changes ABI, do the simple fix instead that does
743- not offer a different ABI the library cannot even be built for.
744-Author: Adrian Bunk <bunk@debian.org>
745-
746---- antlr4-cpp-runtime-4.9+dfsg.orig/runtime/src/ANTLRInputStream.h
747-+++ antlr4-cpp-runtime-4.9+dfsg/runtime/src/ANTLRInputStream.h
748-@@ -25,19 +25,11 @@ namespace antlr4 {
749- /// What is name or source of this char stream?
750- std::string name;
751-
752--#if __cplusplus >= 201703L
753-- ANTLRInputStream(std::string_view input = "");
754--#else
755- ANTLRInputStream(const std::string &input = "");
756--#endif
757- ANTLRInputStream(const char data_[], size_t numberOfActualCharsInArray);
758- ANTLRInputStream(std::istream &stream);
759-
760--#if __cplusplus >= 201703L
761-- virtual void load(std::string_view input);
762--#else
763- virtual void load(const std::string &input);
764--#endif
765- virtual void load(std::istream &stream);
766-
767- /// Reset the stream so that it's in the same state it was
768diff --git a/debian/patches/fix_libinstall_dirs.patch b/debian/patches/fix_libinstall_dirs.patch
769deleted file mode 100644
770index 7f6df71..0000000
771--- a/debian/patches/fix_libinstall_dirs.patch
772+++ /dev/null
773@@ -1,31 +0,0 @@
774-commit 726983d8159cf5e4e7ea4104c66093079a7bce83
775-Author: Biswapriyo Nath <nathbappai@gmail.com>
776-Date: Sun Jan 2 23:31:27 2022 +0530
777-
778- cpp/cmake: Fix library install directories (#3447)
779-
780- This installs DLLs in bin directory instead of lib.
781-
782---- a/runtime/CMakeLists.txt
783-+++ b/runtime/CMakeLists.txt
784-@@ -104,11 +104,16 @@
785- COMPILE_FLAGS "${disabled_compile_warnings} ${extra_static_compile_flags}")
786-
787- install(TARGETS antlr4_shared
788-- DESTINATION lib
789-- EXPORT antlr4-targets)
790-+ EXPORT antlr4-targets
791-+ ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
792-+ LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
793-+ RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
794-+
795- install(TARGETS antlr4_static
796-- DESTINATION lib
797-- EXPORT antlr4-targets)
798-+ EXPORT antlr4-targets
799-+ ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
800-+ LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
801-+ RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
802-
803- install(DIRECTORY "${PROJECT_SOURCE_DIR}/runtime/src/"
804- DESTINATION "include/antlr4-runtime"
805diff --git a/debian/patches/series b/debian/patches/series
806index 246f580..e69de29 100644
807--- a/debian/patches/series
808+++ b/debian/patches/series
809@@ -1,3 +0,0 @@
810-system-utfcpp.patch
811-cxx17.patch
812-fix_libinstall_dirs.patch
813diff --git a/debian/patches/system-utfcpp.patch b/debian/patches/system-utfcpp.patch
814deleted file mode 100644
815index 84d8f2e..0000000
816--- a/debian/patches/system-utfcpp.patch
817+++ /dev/null
818@@ -1,56 +0,0 @@
819---- a/runtime/CMakeLists.txt
820-+++ b/runtime/CMakeLists.txt
821-@@ -1,18 +1,6 @@
822-
823- include(${CMAKE_ROOT}/Modules/ExternalProject.cmake)
824-
825--set(THIRDPARTY_DIR ${CMAKE_BINARY_DIR}/runtime/thirdparty)
826--set(UTFCPP_DIR ${THIRDPARTY_DIR}/utfcpp)
827--ExternalProject_Add(
828-- utfcpp
829-- GIT_REPOSITORY "git://github.com/nemtrif/utfcpp"
830-- GIT_TAG "v3.1.1"
831-- SOURCE_DIR ${UTFCPP_DIR}
832-- UPDATE_DISCONNECTED 1
833-- CMAKE_ARGS -DCMAKE_INSTALL_PREFIX=${UTFCPP_DIR}/install -Dgtest_force_shared_crt=ON
834-- TEST_AFTER_INSTALL 1
835-- STEP_TARGETS build)
836--
837-
838- include_directories(
839- ${PROJECT_SOURCE_DIR}/runtime/src
840-@@ -23,8 +11,8 @@
841- ${PROJECT_SOURCE_DIR}/runtime/src/tree
842- ${PROJECT_SOURCE_DIR}/runtime/src/tree/pattern
843- ${PROJECT_SOURCE_DIR}/runtime/src/tree/xpath
844-- ${UTFCPP_DIR}/install/include/utf8cpp
845-- ${UTFCPP_DIR}/install/include/utf8cpp/utf8
846-+ /usr/include
847-+ /usr/include/utf8
848- )
849-
850-
851-@@ -50,9 +38,6 @@
852- COMMAND ${CMAKE_COMMAND} -E make_directory ${LIB_OUTPUT_DIR}
853- )
854-
855--add_dependencies(antlr4_shared make_lib_output_dir utfcpp)
856--add_dependencies(antlr4_static make_lib_output_dir utfcpp)
857--
858- if(CMAKE_SYSTEM_NAME MATCHES "Linux")
859- target_link_libraries(antlr4_shared ${UUID_LIBRARIES})
860- target_link_libraries(antlr4_static ${UUID_LIBRARIES})
861-@@ -131,13 +116,3 @@
862- FILES_MATCHING PATTERN "*.h"
863- )
864-
865--install(FILES "${UTFCPP_DIR}/source/utf8.h"
866-- DESTINATION "include/antlr4-runtime")
867--install(DIRECTORY "${UTFCPP_DIR}/source/utf8"
868-- DESTINATION "include/antlr4-runtime"
869-- COMPONENT dev
870-- FILES_MATCHING PATTERN "*.h"
871-- )
872--
873--
874--
875diff --git a/debian/rules b/debian/rules
876index 06ff84e..10282b9 100755
877--- a/debian/rules
878+++ b/debian/rules
879@@ -9,7 +9,7 @@ export DEB_VERSION_UPSTREAM_ORIG = $(shell echo $(DEB_VERSION_UPSTREAM) | cut -d
880 dh $@
881
882 override_dh_auto_configure:
883- dh_auto_configure -- -DANTLR4_INSTALL=ON
884+ dh_auto_configure -- -DANTLR4_INSTALL=ON -DANTLR_BUILD_CPP_TESTS=OFF
885
886 override_dh_install:
887 dh_install
888diff --git a/deploy-macos.sh b/deploy-macos.sh
889index cf97765..f8f4041 100755
890--- a/deploy-macos.sh
891+++ b/deploy-macos.sh
892@@ -1,43 +1,23 @@
893 #!/bin/bash
894
895 # Clean left overs from previous builds if there are any
896-rm -f -R antlr4-runtime build lib 2> /dev/null
897-rm antlr4-cpp-runtime-macos.zip 2> /dev/null
898-
899-# Get utf8 dependency.
900-mkdir -p runtime/thirdparty 2> /dev/null
901-pushd runtime/thirdparty
902-if [ ! -d utfcpp ]
903-then
904- git clone https://github.com/nemtrif/utfcpp.git utfcpp
905- pushd utfcpp
906- git checkout tags/v3.1.1
907- popd
908-fi
909-popd
910+rm -rf antlr4-runtime build lib
911+rm -f antlr4-cpp-runtime-macos.zip
912
913 # Binaries
914-xcodebuild -project runtime/antlrcpp.xcodeproj \
915- -target antlr4 \
916- # GCC_PREPROCESSOR_DEFINITIONS='$GCC_PREPROCESSOR_DEFINITIONS USE_UTF8_INSTEAD_OF_CODECVT' \
917- -configuration Release
918-xcodebuild -project runtime/antlrcpp.xcodeproj \
919- -target antlr4_static \
920- # GCC_PREPROCESSOR_DEFINITIONS='$GCC_PREPROCESSOR_DEFINITIONS USE_UTF8_INSTEAD_OF_CODECVT' \
921- -configuration Release
922-rm -f -R lib
923+cmake . -D CMAKE_OSX_ARCHITECTURES="arm64; x86_64" -DCMAKE_BUILD_TYPE=Release &> /dev/null
924+make -j 8
925+
926+rm -rf lib
927 mkdir lib
928-mv runtime/build/Release/libantlr4-runtime.a lib/
929-mv runtime/build/Release/libantlr4-runtime.dylib lib/
930+cp runtime/libantlr4-runtime.dylib lib
931+cp runtime/libantlr4-runtime.a lib
932
933 # Headers
934 rm -f -R antlr4-runtime
935 pushd runtime/src
936 find . -name '*.h' | cpio -pdm ../../antlr4-runtime
937 popd
938-pushd runtime/thirdparty/utfcpp/source
939-find . -name '*.h' | cpio -pdm ../../../../antlr4-runtime
940-popd
941
942 # Zip up and clean up
943 zip -r antlr4-cpp-runtime-macos.zip antlr4-runtime lib
944diff --git a/deploy-source.sh b/deploy-source.sh
945index d079821..fc2fa90 100755
946--- a/deploy-source.sh
947+++ b/deploy-source.sh
948@@ -3,7 +3,8 @@
949 # Zip it
950 rm -f antlr4-cpp-runtime-source.zip
951 zip -r antlr4-cpp-runtime-source.zip "README.md" "cmake" "demo" "runtime" "CMakeLists.txt" "deploy-macos.sh" "deploy-source.sh" "deploy-windows.cmd" "VERSION" \
952- -X -x "*.DS_Store*" "antlrcpp.xcodeproj/xcuserdata/*" "*Build*" "*DerivedData*" "*.jar" "demo/generated/*" "*.vscode*" "runtime/build/*"
953+ -X -x "*.DS_Store*" "antlrcpp.xcodeproj/xcuserdata/*" "*Build*" "*DerivedData*" "*.jar" "demo/generated/*" "*.vscode*" "runtime/build/*" \
954+ "runtime/*.dylib" "*.a" "runtime/thirdparty/*" "runtime/CMakeFiles/*"
955
956 # Add the license file from the ANTLR root as well.
957 pushd ../../
958diff --git a/deploy-windows.cmd b/deploy-windows.cmd
959index 8fc22ab..0a7b356 100644
960--- a/deploy-windows.cmd
961+++ b/deploy-windows.cmd
962@@ -8,58 +8,58 @@ if exist bin rmdir /S /Q runtime\bin
963 if exist obj rmdir /S /Q runtime\obj
964 if exist lib rmdir /S /Q lib
965 if exist antlr4-runtime rmdir /S /Q antlr4-runtime
966-if exist antlr4-cpp-runtime-vs2017.zip erase antlr4-cpp-runtime-vs2017.zip
967 if exist antlr4-cpp-runtime-vs2019.zip erase antlr4-cpp-runtime-vs2019.zip
968+if exist antlr4-cpp-runtime-vs2022.zip erase antlr4-cpp-runtime-vs2022.zip
969
970 rem Headers
971 echo Copying header files ...
972 xcopy runtime\src\*.h antlr4-runtime\ /s /q
973
974 rem Binaries
975-rem VS 2017 disabled by default. Change the X to a C to enable it.
976-if exist "X:\Program Files (x86)\Microsoft Visual Studio\2017\%1\Common7\Tools\VsDevCmd.bat" (
977+rem VS 2019 disabled by default. Change the X to a C to enable it.
978+if exist "X:\Program Files (x86)\Microsoft Visual Studio\2019\%1\Common7\Tools\VsDevCmd.bat" (
979 echo.
980-
981- call "C:\Program Files (x86)\Microsoft Visual Studio\2017\%1\Common7\Tools\VsDevCmd.bat"
982+
983+ call "C:\Program Files (x86)\Microsoft Visual Studio\2019\%1\Common7\Tools\VsDevCmd.bat"
984
985 pushd runtime
986- msbuild antlr4cpp-vs2017.vcxproj /p:configuration="Release DLL" /p:platform=Win32
987- msbuild antlr4cpp-vs2017.vcxproj /p:configuration="Release DLL" /p:platform=x64
988+ msbuild antlr4cpp-vs2019.vcxproj /p:configuration="Release DLL" /p:platform=Win32
989+ msbuild antlr4cpp-vs2019.vcxproj /p:configuration="Release DLL" /p:platform=x64
990 popd
991-
992- 7z a antlr4-cpp-runtime-vs2017.zip antlr4-runtime
993+
994+ 7z a antlr4-cpp-runtime-vs2019.zip antlr4-runtime
995 xcopy runtime\bin\*.dll lib\ /s
996 xcopy runtime\bin\*.lib lib\ /s
997- 7z a antlr4-cpp-runtime-vs2017.zip lib
998-
999+ 7z a antlr4-cpp-runtime-vs2019.zip lib
1000+
1001 rmdir /S /Q lib
1002 rmdir /S /Q runtime\bin
1003 rmdir /S /Q runtime\obj
1004-
1005- rem if exist antlr4-cpp-runtime-vs2017.zip copy antlr4-cpp-runtime-vs2017.zip ~/antlr/sites/website-antlr4/download
1006+
1007+ rem if exist antlr4-cpp-runtime-vs2019.zip copy antlr4-cpp-runtime-vs2019.zip ~/antlr/sites/website-antlr4/download
1008 )
1009
1010-set VCTargetsPath=C:\Program Files (x86)\Microsoft Visual Studio\2019\%1\MSBuild\Microsoft\VC\v160\
1011-if exist "C:\Program Files (x86)\Microsoft Visual Studio\2019\%1\Common7\Tools\VsDevCmd.bat" (
1012+set VCTargetsPath=C:\Program Files\Microsoft Visual Studio\2022\%1\MSBuild\Microsoft\VC\v170\
1013+if exist "C:\Program Files\Microsoft Visual Studio\2022\%1\Common7\Tools\VsDevCmd.bat" (
1014 echo.
1015
1016- call "C:\Program Files (x86)\Microsoft Visual Studio\2019\%1\Common7\Tools\VsDevCmd.bat"
1017+ call "C:\Program Files\Microsoft Visual Studio\2022\%1\Common7\Tools\VsDevCmd.bat"
1018
1019 pushd runtime
1020- msbuild antlr4cpp-vs2019.vcxproj /p:configuration="Release DLL" /p:platform=Win32
1021- msbuild antlr4cpp-vs2019.vcxproj /p:configuration="Release DLL" /p:platform=x64
1022+ msbuild antlr4cpp-vs2022.vcxproj /p:configuration="Release DLL" /p:platform=Win32
1023+ msbuild antlr4cpp-vs2022.vcxproj /p:configuration="Release DLL" /p:platform=x64
1024 popd
1025-
1026- 7z a antlr4-cpp-runtime-vs2019.zip antlr4-runtime
1027+
1028+ 7z a antlr4-cpp-runtime-vs2022.zip antlr4-runtime
1029 xcopy runtime\bin\*.dll lib\ /s
1030 xcopy runtime\bin\*.lib lib\ /s
1031- 7z a antlr4-cpp-runtime-vs2019.zip lib
1032-
1033+ 7z a antlr4-cpp-runtime-vs2022.zip lib
1034+
1035 rmdir /S /Q lib
1036 rmdir /S /Q runtime\bin
1037 rmdir /S /Q runtime\obj
1038-
1039- rem if exist antlr4-cpp-runtime-vs2019.zip copy antlr4-cpp-runtime-vs2019.zip ~/antlr/sites/website-antlr4/download
1040+
1041+ rem if exist antlr4-cpp-runtime-vs2022.zip copy antlr4-cpp-runtime-vs2022.zip ~/antlr/sites/website-antlr4/download
1042 )
1043
1044 rmdir /S /Q antlr4-runtime
1045@@ -70,7 +70,7 @@ goto end
1046
1047 :Usage
1048
1049-echo This script builds Visual Studio 2017 and/or 2019 libraries of the ANTLR4 runtime.
1050+echo This script builds Visual Studio 2019 and/or 2022 libraries of the ANTLR4 runtime.
1051 echo You have to specify the type of your VS installation (Community, Professional etc.) to construct
1052 echo the correct build tools path.
1053 echo.
1054diff --git a/runtime/.cmake/api/v1/query/cache-v2 b/runtime/.cmake/api/v1/query/cache-v2
1055new file mode 100644
1056index 0000000..e69de29
1057--- /dev/null
1058+++ b/runtime/.cmake/api/v1/query/cache-v2
1059diff --git a/runtime/.cmake/api/v1/query/cmakeFiles-v1 b/runtime/.cmake/api/v1/query/cmakeFiles-v1
1060new file mode 100644
1061index 0000000..e69de29
1062--- /dev/null
1063+++ b/runtime/.cmake/api/v1/query/cmakeFiles-v1
1064diff --git a/runtime/.cmake/api/v1/query/codemodel-v2 b/runtime/.cmake/api/v1/query/codemodel-v2
1065new file mode 100644
1066index 0000000..e69de29
1067--- /dev/null
1068+++ b/runtime/.cmake/api/v1/query/codemodel-v2
1069diff --git a/runtime/.cmake/api/v1/query/toolchains-v1 b/runtime/.cmake/api/v1/query/toolchains-v1
1070new file mode 100644
1071index 0000000..e69de29
1072--- /dev/null
1073+++ b/runtime/.cmake/api/v1/query/toolchains-v1
1074diff --git a/runtime/CMakeCache.txt b/runtime/CMakeCache.txt
1075new file mode 100644
1076index 0000000..7b31676
1077--- /dev/null
1078+++ b/runtime/CMakeCache.txt
1079@@ -0,0 +1,587 @@
1080+# This is the CMakeCache file.
1081+# For build in directory: /Users/parrt/antlr/code/antlr4/runtime/Cpp/runtime
1082+# It was generated by CMake: /Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake
1083+# You can edit this file to change values found and used by cmake.
1084+# If you do not want to change any of the values, simply exit the editor.
1085+# If you do want to change a value, simply edit, save, and exit the editor.
1086+# The syntax for the file is as follows:
1087+# KEY:TYPE=VALUE
1088+# KEY is the name of a variable in the cache.
1089+# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!.
1090+# VALUE is the current value for the KEY.
1091+
1092+########################
1093+# EXTERNAL cache entries
1094+########################
1095+
1096+//Build C++ tests.
1097+ANTLR_BUILD_CPP_TESTS:BOOL=ON
1098+
1099+//Builds the googlemock subproject
1100+BUILD_GMOCK:BOOL=ON
1101+
1102+//Path to a program.
1103+CMAKE_ADDR2LINE:FILEPATH=CMAKE_ADDR2LINE-NOTFOUND
1104+
1105+//Path to a program.
1106+CMAKE_AR:FILEPATH=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ar
1107+
1108+//For backwards compatibility, what version of CMake commands and
1109+// syntax should this version of CMake try to support.
1110+CMAKE_BACKWARDS_COMPATIBILITY:STRING=2.4
1111+
1112+//Choose the type of build, options are: None Debug Release RelWithDebInfo
1113+// MinSizeRel ...
1114+CMAKE_BUILD_TYPE:STRING=Debug
1115+
1116+//Enable/Disable color output during build.
1117+CMAKE_COLOR_MAKEFILE:BOOL=ON
1118+
1119+//CXX compiler
1120+CMAKE_CXX_COMPILER:STRING=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
1121+
1122+//Flags used by the CXX compiler during all build types.
1123+CMAKE_CXX_FLAGS:STRING=
1124+
1125+//Flags used by the CXX compiler during DEBUG builds.
1126+CMAKE_CXX_FLAGS_DEBUG:STRING=-g
1127+
1128+//Flags used by the CXX compiler during MINSIZEREL builds.
1129+CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
1130+
1131+//Flags used by the CXX compiler during RELEASE builds.
1132+CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
1133+
1134+//Flags used by the CXX compiler during RELWITHDEBINFO builds.
1135+CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
1136+
1137+//C compiler
1138+CMAKE_C_COMPILER:STRING=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
1139+
1140+//Flags used by the C compiler during all build types.
1141+CMAKE_C_FLAGS:STRING=
1142+
1143+//Flags used by the C compiler during DEBUG builds.
1144+CMAKE_C_FLAGS_DEBUG:STRING=-g
1145+
1146+//Flags used by the C compiler during MINSIZEREL builds.
1147+CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
1148+
1149+//Flags used by the C compiler during RELEASE builds.
1150+CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
1151+
1152+//Flags used by the C compiler during RELWITHDEBINFO builds.
1153+CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
1154+
1155+//Path to a program.
1156+CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND
1157+
1158+//Flags used by the linker during all build types.
1159+CMAKE_EXE_LINKER_FLAGS:STRING=
1160+
1161+//Flags used by the linker during DEBUG builds.
1162+CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING=
1163+
1164+//Flags used by the linker during MINSIZEREL builds.
1165+CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING=
1166+
1167+//Flags used by the linker during RELEASE builds.
1168+CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING=
1169+
1170+//Flags used by the linker during RELWITHDEBINFO builds.
1171+CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
1172+
1173+//Enable/Disable output of compile commands during generation.
1174+CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=
1175+
1176+//Value Computed by CMake.
1177+CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=/Users/parrt/antlr/code/antlr4/runtime/Cpp/runtime/CMakeFiles/pkgRedirects
1178+
1179+//User executables (bin)
1180+CMAKE_INSTALL_BINDIR:PATH=bin
1181+
1182+//Read-only architecture-independent data (DATAROOTDIR)
1183+CMAKE_INSTALL_DATADIR:PATH=
1184+
1185+//Read-only architecture-independent data root (share)
1186+CMAKE_INSTALL_DATAROOTDIR:PATH=share
1187+
1188+//Documentation root (DATAROOTDIR/doc/PROJECT_NAME)
1189+CMAKE_INSTALL_DOCDIR:PATH=
1190+
1191+//C header files (include)
1192+CMAKE_INSTALL_INCLUDEDIR:PATH=include
1193+
1194+//Info documentation (DATAROOTDIR/info)
1195+CMAKE_INSTALL_INFODIR:PATH=
1196+
1197+//Object code libraries (lib)
1198+CMAKE_INSTALL_LIBDIR:PATH=lib
1199+
1200+//Program executables (libexec)
1201+CMAKE_INSTALL_LIBEXECDIR:PATH=libexec
1202+
1203+//Locale-dependent data (DATAROOTDIR/locale)
1204+CMAKE_INSTALL_LOCALEDIR:PATH=
1205+
1206+//Modifiable single-machine data (var)
1207+CMAKE_INSTALL_LOCALSTATEDIR:PATH=var
1208+
1209+//Man documentation (DATAROOTDIR/man)
1210+CMAKE_INSTALL_MANDIR:PATH=
1211+
1212+//Path to a program.
1213+CMAKE_INSTALL_NAME_TOOL:FILEPATH=/usr/bin/install_name_tool
1214+
1215+//C header files for non-gcc (/usr/include)
1216+CMAKE_INSTALL_OLDINCLUDEDIR:PATH=/usr/include
1217+
1218+//Install path prefix, prepended onto install directories.
1219+CMAKE_INSTALL_PREFIX:PATH=/usr/local
1220+
1221+//Run-time variable data (LOCALSTATEDIR/run)
1222+CMAKE_INSTALL_RUNSTATEDIR:PATH=
1223+
1224+//System admin executables (sbin)
1225+CMAKE_INSTALL_SBINDIR:PATH=sbin
1226+
1227+//Modifiable architecture-independent data (com)
1228+CMAKE_INSTALL_SHAREDSTATEDIR:PATH=com
1229+
1230+//Read-only single-machine data (etc)
1231+CMAKE_INSTALL_SYSCONFDIR:PATH=etc
1232+
1233+//Path to a program.
1234+CMAKE_LINKER:FILEPATH=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld
1235+
1236+//Path to a program.
1237+CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/make
1238+
1239+//Flags used by the linker during the creation of modules during
1240+// all build types.
1241+CMAKE_MODULE_LINKER_FLAGS:STRING=
1242+
1243+//Flags used by the linker during the creation of modules during
1244+// DEBUG builds.
1245+CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING=
1246+
1247+//Flags used by the linker during the creation of modules during
1248+// MINSIZEREL builds.
1249+CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING=
1250+
1251+//Flags used by the linker during the creation of modules during
1252+// RELEASE builds.
1253+CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING=
1254+
1255+//Flags used by the linker during the creation of modules during
1256+// RELWITHDEBINFO builds.
1257+CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
1258+
1259+//Path to a program.
1260+CMAKE_NM:FILEPATH=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/nm
1261+
1262+//Path to a program.
1263+CMAKE_OBJCOPY:FILEPATH=CMAKE_OBJCOPY-NOTFOUND
1264+
1265+//Path to a program.
1266+CMAKE_OBJDUMP:FILEPATH=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/objdump
1267+
1268+//Build architectures for OSX
1269+CMAKE_OSX_ARCHITECTURES:STRING=arm64; x86_64
1270+
1271+//Minimum OS X version to target for deployment (at runtime); newer
1272+// APIs weak linked. Set to empty string for default value.
1273+CMAKE_OSX_DEPLOYMENT_TARGET:STRING=
1274+
1275+//The product will be built against the headers and libraries located
1276+// inside the indicated SDK.
1277+CMAKE_OSX_SYSROOT:PATH=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.3.sdk
1278+
1279+//Value Computed by CMake
1280+CMAKE_PROJECT_DESCRIPTION:STATIC=
1281+
1282+//Value Computed by CMake
1283+CMAKE_PROJECT_HOMEPAGE_URL:STATIC=
1284+
1285+//Value Computed by CMake
1286+CMAKE_PROJECT_NAME:STATIC=Project
1287+
1288+//Value Computed by CMake
1289+CMAKE_PROJECT_VERSION:STATIC=1.11.0
1290+
1291+//Value Computed by CMake
1292+CMAKE_PROJECT_VERSION_MAJOR:STATIC=1
1293+
1294+//Value Computed by CMake
1295+CMAKE_PROJECT_VERSION_MINOR:STATIC=11
1296+
1297+//Value Computed by CMake
1298+CMAKE_PROJECT_VERSION_PATCH:STATIC=0
1299+
1300+//Value Computed by CMake
1301+CMAKE_PROJECT_VERSION_TWEAK:STATIC=
1302+
1303+//Path to a program.
1304+CMAKE_RANLIB:FILEPATH=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib
1305+
1306+//Path to a program.
1307+CMAKE_READELF:FILEPATH=CMAKE_READELF-NOTFOUND
1308+
1309+//Flags used by the linker during the creation of shared libraries
1310+// during all build types.
1311+CMAKE_SHARED_LINKER_FLAGS:STRING=
1312+
1313+//Flags used by the linker during the creation of shared libraries
1314+// during DEBUG builds.
1315+CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING=
1316+
1317+//Flags used by the linker during the creation of shared libraries
1318+// during MINSIZEREL builds.
1319+CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING=
1320+
1321+//Flags used by the linker during the creation of shared libraries
1322+// during RELEASE builds.
1323+CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING=
1324+
1325+//Flags used by the linker during the creation of shared libraries
1326+// during RELWITHDEBINFO builds.
1327+CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING=
1328+
1329+//If set, runtime paths are not added when installing shared libraries,
1330+// but are added when building.
1331+CMAKE_SKIP_INSTALL_RPATH:BOOL=NO
1332+
1333+//If set, runtime paths are not added when using shared libraries.
1334+CMAKE_SKIP_RPATH:BOOL=NO
1335+
1336+//Flags used by the linker during the creation of static libraries
1337+// during all build types.
1338+CMAKE_STATIC_LINKER_FLAGS:STRING=
1339+
1340+//Flags used by the linker during the creation of static libraries
1341+// during DEBUG builds.
1342+CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING=
1343+
1344+//Flags used by the linker during the creation of static libraries
1345+// during MINSIZEREL builds.
1346+CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING=
1347+
1348+//Flags used by the linker during the creation of static libraries
1349+// during RELEASE builds.
1350+CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING=
1351+
1352+//Flags used by the linker during the creation of static libraries
1353+// during RELWITHDEBINFO builds.
1354+CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING=
1355+
1356+//Path to a program.
1357+CMAKE_STRIP:FILEPATH=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip
1358+
1359+//If this value is on, makefiles will be generated without the
1360+// .SILENT directive, and all commands will be echoed to the console
1361+// during the make. This is useful for debugging only. With Visual
1362+// Studio IDE projects all commands are done without /nologo.
1363+CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE
1364+
1365+//Single output directory for building all executables.
1366+EXECUTABLE_OUTPUT_PATH:PATH=
1367+
1368+//Directory under which to collect all populated content
1369+FETCHCONTENT_BASE_DIR:PATH=/Users/parrt/antlr/code/antlr4/runtime/Cpp/runtime/_deps
1370+
1371+//Disables all attempts to download or update content and assumes
1372+// source dirs already exist
1373+FETCHCONTENT_FULLY_DISCONNECTED:BOOL=OFF
1374+
1375+//Enables QUIET option for all content population
1376+FETCHCONTENT_QUIET:BOOL=ON
1377+
1378+//When not empty, overrides where to find pre-populated content
1379+// for googletest
1380+FETCHCONTENT_SOURCE_DIR_GOOGLETEST:PATH=
1381+
1382+//Enables UPDATE_DISCONNECTED behavior for all content population
1383+FETCHCONTENT_UPDATES_DISCONNECTED:BOOL=OFF
1384+
1385+//Enables UPDATE_DISCONNECTED behavior just for population of googletest
1386+FETCHCONTENT_UPDATES_DISCONNECTED_GOOGLETEST:BOOL=OFF
1387+
1388+//Enable installation of googletest. (Projects embedding googletest
1389+// may want to turn this OFF.)
1390+INSTALL_GTEST:BOOL=ON
1391+
1392+//Single output directory for building all libraries.
1393+LIBRARY_OUTPUT_PATH:PATH=
1394+
1395+//Value Computed by CMake
1396+Project_BINARY_DIR:STATIC=/Users/parrt/antlr/code/antlr4/runtime/Cpp/runtime
1397+
1398+//Value Computed by CMake
1399+Project_IS_TOP_LEVEL:STATIC=ON
1400+
1401+//Value Computed by CMake
1402+Project_SOURCE_DIR:STATIC=/Users/parrt/antlr/code/antlr4/runtime/Cpp/runtime
1403+
1404+//Trace ATN simulation
1405+TRACE_ATN:BOOL=OFF
1406+
1407+//Value Computed by CMake
1408+gmock_BINARY_DIR:STATIC=/Users/parrt/antlr/code/antlr4/runtime/Cpp/runtime/_deps/googletest-build/googlemock
1409+
1410+//Value Computed by CMake
1411+gmock_IS_TOP_LEVEL:STATIC=OFF
1412+
1413+//Dependencies for the target
1414+gmock_LIB_DEPENDS:STATIC=general;gtest;
1415+
1416+//Value Computed by CMake
1417+gmock_SOURCE_DIR:STATIC=/Users/parrt/antlr/code/antlr4/runtime/Cpp/runtime/_deps/googletest-src/googlemock
1418+
1419+//Build all of Google Mock's own tests.
1420+gmock_build_tests:BOOL=OFF
1421+
1422+//Dependencies for the target
1423+gmock_main_LIB_DEPENDS:STATIC=general;gmock;
1424+
1425+//Value Computed by CMake
1426+googletest-distribution_BINARY_DIR:STATIC=/Users/parrt/antlr/code/antlr4/runtime/Cpp/runtime/_deps/googletest-build
1427+
1428+//Value Computed by CMake
1429+googletest-distribution_IS_TOP_LEVEL:STATIC=OFF
1430+
1431+//Value Computed by CMake
1432+googletest-distribution_SOURCE_DIR:STATIC=/Users/parrt/antlr/code/antlr4/runtime/Cpp/runtime/_deps/googletest-src
1433+
1434+//Value Computed by CMake
1435+gtest_BINARY_DIR:STATIC=/Users/parrt/antlr/code/antlr4/runtime/Cpp/runtime/_deps/googletest-build/googletest
1436+
1437+//Value Computed by CMake
1438+gtest_IS_TOP_LEVEL:STATIC=OFF
1439+
1440+//Value Computed by CMake
1441+gtest_SOURCE_DIR:STATIC=/Users/parrt/antlr/code/antlr4/runtime/Cpp/runtime/_deps/googletest-src/googletest
1442+
1443+//Build gtest's sample programs.
1444+gtest_build_samples:BOOL=OFF
1445+
1446+//Build all of gtest's own tests.
1447+gtest_build_tests:BOOL=OFF
1448+
1449+//Disable uses of pthreads in gtest.
1450+gtest_disable_pthreads:BOOL=OFF
1451+
1452+//Use shared (DLL) run-time lib even when Google Test is built
1453+// as static lib.
1454+gtest_force_shared_crt:BOOL=OFF
1455+
1456+//Build gtest with internal symbols hidden in shared libraries.
1457+gtest_hide_internal_symbols:BOOL=OFF
1458+
1459+//Dependencies for the target
1460+gtest_main_LIB_DEPENDS:STATIC=general;gtest;
1461+
1462+
1463+########################
1464+# INTERNAL cache entries
1465+########################
1466+
1467+//ADVANCED property for variable: CMAKE_ADDR2LINE
1468+CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1
1469+//ADVANCED property for variable: CMAKE_AR
1470+CMAKE_AR-ADVANCED:INTERNAL=1
1471+//This is the directory where this CMakeCache.txt was created
1472+CMAKE_CACHEFILE_DIR:INTERNAL=/Users/parrt/antlr/code/antlr4/runtime/Cpp/runtime
1473+//Major version of cmake used to create the current loaded cache
1474+CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3
1475+//Minor version of cmake used to create the current loaded cache
1476+CMAKE_CACHE_MINOR_VERSION:INTERNAL=22
1477+//Patch version of cmake used to create the current loaded cache
1478+CMAKE_CACHE_PATCH_VERSION:INTERNAL=3
1479+//ADVANCED property for variable: CMAKE_COLOR_MAKEFILE
1480+CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1
1481+//Path to CMake executable.
1482+CMAKE_COMMAND:INTERNAL=/Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake
1483+//Path to cpack program executable.
1484+CMAKE_CPACK_COMMAND:INTERNAL=/Applications/CLion.app/Contents/bin/cmake/mac/bin/cpack
1485+//Path to ctest program executable.
1486+CMAKE_CTEST_COMMAND:INTERNAL=/Applications/CLion.app/Contents/bin/cmake/mac/bin/ctest
1487+//ADVANCED property for variable: CMAKE_CXX_COMPILER
1488+CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1
1489+//ADVANCED property for variable: CMAKE_CXX_FLAGS
1490+CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1
1491+//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG
1492+CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1
1493+//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL
1494+CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
1495+//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE
1496+CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1
1497+//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO
1498+CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
1499+//ADVANCED property for variable: CMAKE_C_COMPILER
1500+CMAKE_C_COMPILER-ADVANCED:INTERNAL=1
1501+//ADVANCED property for variable: CMAKE_C_FLAGS
1502+CMAKE_C_FLAGS-ADVANCED:INTERNAL=1
1503+//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG
1504+CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1
1505+//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL
1506+CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
1507+//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE
1508+CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1
1509+//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO
1510+CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
1511+//ADVANCED property for variable: CMAKE_DLLTOOL
1512+CMAKE_DLLTOOL-ADVANCED:INTERNAL=1
1513+//Path to cache edit program executable.
1514+CMAKE_EDIT_COMMAND:INTERNAL=/opt/homebrew/Cellar/cmake/3.24.1/bin/ccmake
1515+//Executable file format
1516+CMAKE_EXECUTABLE_FORMAT:INTERNAL=MACHO
1517+//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS
1518+CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1
1519+//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG
1520+CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
1521+//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL
1522+CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
1523+//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE
1524+CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
1525+//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO
1526+CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
1527+//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS
1528+CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1
1529+//Name of external makefile project generator.
1530+CMAKE_EXTRA_GENERATOR:INTERNAL=
1531+//Name of generator.
1532+CMAKE_GENERATOR:INTERNAL=Unix Makefiles
1533+//Generator instance identifier.
1534+CMAKE_GENERATOR_INSTANCE:INTERNAL=
1535+//Name of generator platform.
1536+CMAKE_GENERATOR_PLATFORM:INTERNAL=
1537+//Name of generator toolset.
1538+CMAKE_GENERATOR_TOOLSET:INTERNAL=
1539+//Test CMAKE_HAVE_LIBC_PTHREAD
1540+CMAKE_HAVE_LIBC_PTHREAD:INTERNAL=1
1541+//Have include pthread.h
1542+CMAKE_HAVE_PTHREAD_H:INTERNAL=1
1543+//Source directory with the top level CMakeLists.txt file for this
1544+// project
1545+CMAKE_HOME_DIRECTORY:INTERNAL=/Users/parrt/antlr/code/antlr4/runtime/Cpp/runtime
1546+//ADVANCED property for variable: CMAKE_INSTALL_BINDIR
1547+CMAKE_INSTALL_BINDIR-ADVANCED:INTERNAL=1
1548+//ADVANCED property for variable: CMAKE_INSTALL_DATADIR
1549+CMAKE_INSTALL_DATADIR-ADVANCED:INTERNAL=1
1550+//ADVANCED property for variable: CMAKE_INSTALL_DATAROOTDIR
1551+CMAKE_INSTALL_DATAROOTDIR-ADVANCED:INTERNAL=1
1552+//ADVANCED property for variable: CMAKE_INSTALL_DOCDIR
1553+CMAKE_INSTALL_DOCDIR-ADVANCED:INTERNAL=1
1554+//ADVANCED property for variable: CMAKE_INSTALL_INCLUDEDIR
1555+CMAKE_INSTALL_INCLUDEDIR-ADVANCED:INTERNAL=1
1556+//ADVANCED property for variable: CMAKE_INSTALL_INFODIR
1557+CMAKE_INSTALL_INFODIR-ADVANCED:INTERNAL=1
1558+//ADVANCED property for variable: CMAKE_INSTALL_LIBDIR
1559+CMAKE_INSTALL_LIBDIR-ADVANCED:INTERNAL=1
1560+//ADVANCED property for variable: CMAKE_INSTALL_LIBEXECDIR
1561+CMAKE_INSTALL_LIBEXECDIR-ADVANCED:INTERNAL=1
1562+//ADVANCED property for variable: CMAKE_INSTALL_LOCALEDIR
1563+CMAKE_INSTALL_LOCALEDIR-ADVANCED:INTERNAL=1
1564+//ADVANCED property for variable: CMAKE_INSTALL_LOCALSTATEDIR
1565+CMAKE_INSTALL_LOCALSTATEDIR-ADVANCED:INTERNAL=1
1566+//ADVANCED property for variable: CMAKE_INSTALL_MANDIR
1567+CMAKE_INSTALL_MANDIR-ADVANCED:INTERNAL=1
1568+//ADVANCED property for variable: CMAKE_INSTALL_NAME_TOOL
1569+CMAKE_INSTALL_NAME_TOOL-ADVANCED:INTERNAL=1
1570+//ADVANCED property for variable: CMAKE_INSTALL_OLDINCLUDEDIR
1571+CMAKE_INSTALL_OLDINCLUDEDIR-ADVANCED:INTERNAL=1
1572+//ADVANCED property for variable: CMAKE_INSTALL_RUNSTATEDIR
1573+CMAKE_INSTALL_RUNSTATEDIR-ADVANCED:INTERNAL=1
1574+//ADVANCED property for variable: CMAKE_INSTALL_SBINDIR
1575+CMAKE_INSTALL_SBINDIR-ADVANCED:INTERNAL=1
1576+//ADVANCED property for variable: CMAKE_INSTALL_SHAREDSTATEDIR
1577+CMAKE_INSTALL_SHAREDSTATEDIR-ADVANCED:INTERNAL=1
1578+//ADVANCED property for variable: CMAKE_INSTALL_SYSCONFDIR
1579+CMAKE_INSTALL_SYSCONFDIR-ADVANCED:INTERNAL=1
1580+//ADVANCED property for variable: CMAKE_LINKER
1581+CMAKE_LINKER-ADVANCED:INTERNAL=1
1582+//ADVANCED property for variable: CMAKE_MAKE_PROGRAM
1583+CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1
1584+//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS
1585+CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1
1586+//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG
1587+CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
1588+//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL
1589+CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
1590+//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE
1591+CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
1592+//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO
1593+CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
1594+//ADVANCED property for variable: CMAKE_NM
1595+CMAKE_NM-ADVANCED:INTERNAL=1
1596+//number of local generators
1597+CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=4
1598+//ADVANCED property for variable: CMAKE_OBJCOPY
1599+CMAKE_OBJCOPY-ADVANCED:INTERNAL=1
1600+//ADVANCED property for variable: CMAKE_OBJDUMP
1601+CMAKE_OBJDUMP-ADVANCED:INTERNAL=1
1602+//Platform information initialized
1603+CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1
1604+//ADVANCED property for variable: CMAKE_RANLIB
1605+CMAKE_RANLIB-ADVANCED:INTERNAL=1
1606+//ADVANCED property for variable: CMAKE_READELF
1607+CMAKE_READELF-ADVANCED:INTERNAL=1
1608+//Path to CMake installation.
1609+CMAKE_ROOT:INTERNAL=/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.22
1610+//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS
1611+CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1
1612+//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG
1613+CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
1614+//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL
1615+CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
1616+//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE
1617+CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
1618+//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO
1619+CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
1620+//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH
1621+CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1
1622+//ADVANCED property for variable: CMAKE_SKIP_RPATH
1623+CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1
1624+//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS
1625+CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1
1626+//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG
1627+CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
1628+//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL
1629+CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
1630+//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE
1631+CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
1632+//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO
1633+CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
1634+//ADVANCED property for variable: CMAKE_STRIP
1635+CMAKE_STRIP-ADVANCED:INTERNAL=1
1636+//uname command
1637+CMAKE_UNAME:INTERNAL=/usr/bin/uname
1638+//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE
1639+CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1
1640+//Details about finding Python
1641+FIND_PACKAGE_MESSAGE_DETAILS_Python:INTERNAL=[/opt/homebrew/Frameworks/Python.framework/Versions/3.10/bin/python3.10][cfound components: Interpreter ][v3.10.6()]
1642+//Details about finding Threads
1643+FIND_PACKAGE_MESSAGE_DETAILS_Threads:INTERNAL=[TRUE][v()]
1644+//CMAKE_INSTALL_PREFIX during last run
1645+_GNUInstallDirs_LAST_CMAKE_INSTALL_PREFIX:INTERNAL=/usr/local
1646+//Path to a program.
1647+_Python_EXECUTABLE:INTERNAL=/opt/homebrew/Frameworks/Python.framework/Versions/3.10/bin/python3.10
1648+//Python Properties
1649+_Python_INTERPRETER_PROPERTIES:INTERNAL=Python;3;10;6;64;;cpython-310-darwin;/opt/homebrew/opt/python@3.10/Frameworks/Python.framework/Versions/3.10/lib/python3.10;/opt/homebrew/opt/python@3.10/Frameworks/Python.framework/Versions/3.10/lib/python3.10;/opt/homebrew/opt/python@3.10/Frameworks/Python.framework/Versions/3.10/lib/python3.10/site-packages;/opt/homebrew/opt/python@3.10/Frameworks/Python.framework/Versions/3.10/lib/python3.10/site-packages
1650+_Python_INTERPRETER_SIGNATURE:INTERNAL=d861879f6de0f60676098025cfcd84c2
1651+cmake_package_name:INTERNAL=GTest
1652+generated_dir:INTERNAL=/Users/parrt/antlr/code/antlr4/runtime/Cpp/runtime/_deps/googletest-build/googletest/generated
1653+//ADVANCED property for variable: gmock_build_tests
1654+gmock_build_tests-ADVANCED:INTERNAL=1
1655+//ADVANCED property for variable: gtest_build_samples
1656+gtest_build_samples-ADVANCED:INTERNAL=1
1657+//ADVANCED property for variable: gtest_build_tests
1658+gtest_build_tests-ADVANCED:INTERNAL=1
1659+//ADVANCED property for variable: gtest_disable_pthreads
1660+gtest_disable_pthreads-ADVANCED:INTERNAL=1
1661+//ADVANCED property for variable: gtest_force_shared_crt
1662+gtest_force_shared_crt-ADVANCED:INTERNAL=1
1663+//ADVANCED property for variable: gtest_hide_internal_symbols
1664+gtest_hide_internal_symbols-ADVANCED:INTERNAL=1
1665+targets_export_name:INTERNAL=GTestTargets
1666+
1667diff --git a/runtime/CMakeLists.txt b/runtime/CMakeLists.txt
1668index a8503bb..86fdab9 100644
1669--- a/runtime/CMakeLists.txt
1670+++ b/runtime/CMakeLists.txt
1671@@ -1,30 +1,22 @@
1672+option(ANTLR_BUILD_CPP_TESTS "Build C++ tests." ON)
1673+option(TRACE_ATN "Trace ATN simulation" OFF)
1674+option(ANTLR_BUILD_SHARED "Build the shared library of the ANTLR runtime" ON)
1675+option(ANTLR_BUILD_STATIC "Build the static library of the ANTLR runtime" ON)
1676
1677-include(${CMAKE_ROOT}/Modules/ExternalProject.cmake)
1678-
1679-set(THIRDPARTY_DIR ${CMAKE_BINARY_DIR}/runtime/thirdparty)
1680-set(UTFCPP_DIR ${THIRDPARTY_DIR}/utfcpp)
1681-ExternalProject_Add(
1682- utfcpp
1683- GIT_REPOSITORY "git://github.com/nemtrif/utfcpp"
1684- GIT_TAG "v3.1.1"
1685- SOURCE_DIR ${UTFCPP_DIR}
1686- UPDATE_DISCONNECTED 1
1687- CMAKE_ARGS -DCMAKE_INSTALL_PREFIX=${UTFCPP_DIR}/install -Dgtest_force_shared_crt=ON
1688- TEST_AFTER_INSTALL 1
1689- STEP_TARGETS build)
1690-
1691+if (NOT ANTLR_BUILD_SHARED AND NOT ANTLR_BUILD_STATIC)
1692+ message(FATAL_ERROR "Options ANTLR_BUILD_SHARED and ANTLR_BUILD_STATIC can't both be OFF")
1693+endif()
1694
1695 include_directories(
1696 ${PROJECT_SOURCE_DIR}/runtime/src
1697 ${PROJECT_SOURCE_DIR}/runtime/src/atn
1698 ${PROJECT_SOURCE_DIR}/runtime/src/dfa
1699+ ${PROJECT_SOURCE_DIR}/runtime/src/internal
1700 ${PROJECT_SOURCE_DIR}/runtime/src/misc
1701 ${PROJECT_SOURCE_DIR}/runtime/src/support
1702 ${PROJECT_SOURCE_DIR}/runtime/src/tree
1703 ${PROJECT_SOURCE_DIR}/runtime/src/tree/pattern
1704 ${PROJECT_SOURCE_DIR}/runtime/src/tree/xpath
1705- ${UTFCPP_DIR}/install/include/utf8cpp
1706- ${UTFCPP_DIR}/install/include/utf8cpp/utf8
1707 )
1708
1709
1710@@ -32,6 +24,7 @@ file(GLOB libantlrcpp_SRC
1711 "${PROJECT_SOURCE_DIR}/runtime/src/*.cpp"
1712 "${PROJECT_SOURCE_DIR}/runtime/src/atn/*.cpp"
1713 "${PROJECT_SOURCE_DIR}/runtime/src/dfa/*.cpp"
1714+ "${PROJECT_SOURCE_DIR}/runtime/src/internal/*.cpp"
1715 "${PROJECT_SOURCE_DIR}/runtime/src/misc/*.cpp"
1716 "${PROJECT_SOURCE_DIR}/runtime/src/support/*.cpp"
1717 "${PROJECT_SOURCE_DIR}/runtime/src/tree/*.cpp"
1718@@ -39,26 +32,72 @@ file(GLOB libantlrcpp_SRC
1719 "${PROJECT_SOURCE_DIR}/runtime/src/tree/xpath/*.cpp"
1720 )
1721
1722-add_library(antlr4_shared SHARED ${libantlrcpp_SRC})
1723-add_library(antlr4_static STATIC ${libantlrcpp_SRC})
1724+if (ANTLR_BUILD_SHARED)
1725+ add_library(antlr4_shared SHARED ${libantlrcpp_SRC})
1726+endif()
1727+if (ANTLR_BUILD_STATIC)
1728+ add_library(antlr4_static STATIC ${libantlrcpp_SRC})
1729+endif()
1730+
1731+if (CMAKE_HOST_UNIX)
1732+ # Make sure to link against threads (pthreads) library in order to be able to
1733+ # make use of std::call_once in the code without producing runtime errors
1734+ # (see also https://github.com/antlr/antlr4/issues/3708 and/or https://stackoverflow.com/q/51584960).
1735+ find_package(Threads REQUIRED)
1736+
1737+ if (TARGET antlr4_shared)
1738+ target_link_libraries(antlr4_shared Threads::Threads)
1739+ endif()
1740+ if (TARGET antlr4_static)
1741+ target_link_libraries(antlr4_static Threads::Threads)
1742+ endif()
1743+endif()
1744+
1745+IF(TRACE_ATN)
1746+ ADD_DEFINITIONS(-DTRACE_ATN_SIM=1)
1747+ENDIF(TRACE_ATN)
1748+
1749+if (ANTLR_BUILD_CPP_TESTS)
1750+ include(FetchContent)
1751
1752-set(LIB_OUTPUT_DIR "${CMAKE_HOME_DIRECTORY}/dist") # put generated libraries here.
1753-message(STATUS "Output libraries to ${LIB_OUTPUT_DIR}")
1754+ FetchContent_Declare(
1755+ googletest
1756+ URL https://github.com/google/googletest/archive/e2239ee6043f73722e7aa812a459f54a28552929.zip
1757+ )
1758
1759-# make sure 'make' works fine even if ${LIB_OUTPUT_DIR} is deleted.
1760-add_custom_target(make_lib_output_dir ALL
1761- COMMAND ${CMAKE_COMMAND} -E make_directory ${LIB_OUTPUT_DIR}
1762- )
1763+ if(WITH_STATIC_CRT)
1764+ set(gtest_force_shared_crt ON CACHE BOOL "" FORCE)
1765+ endif()
1766+
1767+ FetchContent_MakeAvailable(googletest)
1768+
1769+ file(GLOB libantlrcpp_TESTS
1770+ "${PROJECT_SOURCE_DIR}/runtime/tests/*.cpp"
1771+ )
1772+
1773+ add_executable(
1774+ antlr4_tests
1775+ ${libantlrcpp_TESTS}
1776+ )
1777+
1778+ target_link_libraries(
1779+ antlr4_tests
1780+ $<IF:$<TARGET_EXISTS:antlr4_static>,antlr4_static,antlr4_shared>
1781+ gtest_main
1782+ )
1783
1784-add_dependencies(antlr4_shared make_lib_output_dir utfcpp)
1785-add_dependencies(antlr4_static make_lib_output_dir utfcpp)
1786+ include(GoogleTest)
1787
1788-if(CMAKE_SYSTEM_NAME MATCHES "Linux")
1789- target_link_libraries(antlr4_shared ${UUID_LIBRARIES})
1790- target_link_libraries(antlr4_static ${UUID_LIBRARIES})
1791-elseif(APPLE)
1792- target_link_libraries(antlr4_shared ${COREFOUNDATION_LIBRARY})
1793- target_link_libraries(antlr4_static ${COREFOUNDATION_LIBRARY})
1794+ gtest_discover_tests(antlr4_tests)
1795+endif()
1796+
1797+if(APPLE)
1798+ if (TARGET antlr4_shared)
1799+ target_link_libraries(antlr4_shared ${COREFOUNDATION_LIBRARY})
1800+ endif()
1801+ if (TARGET antlr4_static)
1802+ target_link_libraries(antlr4_static ${COREFOUNDATION_LIBRARY})
1803+ endif()
1804 endif()
1805
1806 if(CMAKE_CXX_COMPILER_ID MATCHES "MSVC")
1807@@ -68,76 +107,85 @@ else()
1808 endif()
1809
1810
1811-if("${CMAKE_CXX_COMPILER_ID}" MATCHES "Clang")
1812+if(CMAKE_CXX_COMPILER_ID MATCHES "Clang")
1813 set(disabled_compile_warnings "${disabled_compile_warnings} -Wno-dollar-in-identifier-extension -Wno-four-char-constants")
1814-elseif("${CMAKE_CXX_COMPILER_ID}" MATCHES "GNU" OR "${CMAKE_CXX_COMPILER_ID}" MATCHES "Intel")
1815+elseif(CMAKE_CXX_COMPILER_ID MATCHES "GNU" OR CMAKE_CXX_COMPILER_ID MATCHES "Intel")
1816 set(disabled_compile_warnings "${disabled_compile_warnings} -Wno-multichar")
1817 endif()
1818
1819 set(extra_share_compile_flags "")
1820 set(extra_static_compile_flags "")
1821-if(WIN32)
1822- set(extra_share_compile_flags "-DANTLR4CPP_EXPORTS")
1823- set(extra_static_compile_flags "-DANTLR4CPP_STATIC")
1824-endif(WIN32)
1825-if(CMAKE_CXX_COMPILER_ID MATCHES "MSVC")
1826- if(WITH_STATIC_CRT)
1827- target_compile_options(antlr4_shared PRIVATE "/MT$<$<CONFIG:Debug>:d>")
1828- target_compile_options(antlr4_static PRIVATE "/MT$<$<CONFIG:Debug>:d>")
1829- else()
1830- target_compile_options(antlr4_shared PRIVATE "/MD$<$<CONFIG:Debug>:d>")
1831- target_compile_options(antlr4_static PRIVATE "/MD$<$<CONFIG:Debug>:d>")
1832+set(static_lib_suffix "")
1833+
1834+if (WIN32)
1835+ set(static_lib_suffix "-static")
1836+ if (TARGET antlr4_shared)
1837+ target_compile_definitions(antlr4_shared PUBLIC ANTLR4CPP_EXPORTS)
1838+ endif()
1839+ if (TARGET antlr4_static)
1840+ target_compile_definitions(antlr4_static PUBLIC ANTLR4CPP_STATIC)
1841+ endif()
1842+ if(CMAKE_CXX_COMPILER_ID MATCHES "MSVC")
1843+ set(extra_share_compile_flags "-MP /wd4251")
1844+ set(extra_static_compile_flags "-MP")
1845 endif()
1846 endif()
1847
1848-set(static_lib_suffix "")
1849-if(CMAKE_CXX_COMPILER_ID MATCHES "MSVC")
1850- set(static_lib_suffix "-static")
1851+if (TARGET antlr4_shared)
1852+ set_target_properties(antlr4_shared
1853+ PROPERTIES VERSION ${ANTLR_VERSION}
1854+ SOVERSION ${ANTLR_VERSION}
1855+ OUTPUT_NAME antlr4-runtime
1856+ COMPILE_FLAGS "${disabled_compile_warnings} ${extra_share_compile_flags}")
1857 endif()
1858
1859-if(CMAKE_CXX_COMPILER_ID MATCHES "MSVC")
1860- set(extra_share_compile_flags "-DANTLR4CPP_EXPORTS -MP /wd4251")
1861- set(extra_static_compile_flags "-DANTLR4CPP_STATIC -MP")
1862+if (TARGET antlr4_static)
1863+ set_target_properties(antlr4_static
1864+ PROPERTIES VERSION ${ANTLR_VERSION}
1865+ SOVERSION ${ANTLR_VERSION}
1866+ OUTPUT_NAME "antlr4-runtime${static_lib_suffix}"
1867+ COMPILE_PDB_NAME "antlr4-runtime${static_lib_suffix}"
1868+ COMPILE_FLAGS "${disabled_compile_warnings} ${extra_static_compile_flags}")
1869+endif()
1870+
1871+if (ANTLR_BUILD_CPP_TESTS)
1872+ # Copy the generated binaries to dist folder (required by test suite)
1873+ if (TARGET antlr4_shared)
1874+ add_custom_command(
1875+ TARGET antlr4_shared
1876+ POST_BUILD
1877+ COMMAND ${CMAKE_COMMAND} -E make_directory ${CMAKE_HOME_DIRECTORY}/dist
1878+ COMMAND ${CMAKE_COMMAND} -E copy_if_different $<TARGET_FILE:antlr4_shared> ${CMAKE_HOME_DIRECTORY}/dist
1879+ COMMAND ${CMAKE_COMMAND} -E copy_if_different $<TARGET_LINKER_FILE:antlr4_shared> ${CMAKE_HOME_DIRECTORY}/dist)
1880+ endif()
1881+
1882+ if (TARGET antlr4_static)
1883+ add_custom_command(
1884+ TARGET antlr4_static
1885+ POST_BUILD
1886+ COMMAND ${CMAKE_COMMAND} -E make_directory ${CMAKE_HOME_DIRECTORY}/dist
1887+ COMMAND ${CMAKE_COMMAND} -E copy_if_different $<TARGET_FILE:antlr4_static> ${CMAKE_HOME_DIRECTORY}/dist)
1888+ endif()
1889 endif()
1890
1891-set_target_properties(antlr4_shared
1892- PROPERTIES VERSION ${ANTLR_VERSION}
1893- SOVERSION ${ANTLR_VERSION}
1894- OUTPUT_NAME antlr4-runtime
1895- LIBRARY_OUTPUT_DIRECTORY ${LIB_OUTPUT_DIR}
1896- # TODO: test in windows. DLL is treated as runtime.
1897- # see https://cmake.org/cmake/help/v3.0/prop_tgt/LIBRARY_OUTPUT_DIRECTORY.html
1898- RUNTIME_OUTPUT_DIRECTORY ${LIB_OUTPUT_DIR}
1899- ARCHIVE_OUTPUT_DIRECTORY ${LIB_OUTPUT_DIR}
1900- COMPILE_FLAGS "${disabled_compile_warnings} ${extra_share_compile_flags}")
1901-
1902-set_target_properties(antlr4_static
1903- PROPERTIES VERSION ${ANTLR_VERSION}
1904- SOVERSION ${ANTLR_VERSION}
1905- OUTPUT_NAME "antlr4-runtime${static_lib_suffix}"
1906- ARCHIVE_OUTPUT_DIRECTORY ${LIB_OUTPUT_DIR}
1907- COMPILE_FLAGS "${disabled_compile_warnings} ${extra_static_compile_flags}")
1908-
1909-install(TARGETS antlr4_shared
1910- DESTINATION lib
1911- EXPORT antlr4-targets)
1912-install(TARGETS antlr4_static
1913- DESTINATION lib
1914- EXPORT antlr4-targets)
1915+if (TARGET antlr4_shared)
1916+ install(TARGETS antlr4_shared
1917+ EXPORT antlr4-targets
1918+ ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
1919+ LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
1920+ RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
1921+endif()
1922
1923-install(DIRECTORY "${PROJECT_SOURCE_DIR}/runtime/src/"
1924- DESTINATION "include/antlr4-runtime"
1925- COMPONENT dev
1926- FILES_MATCHING PATTERN "*.h"
1927- )
1928+if (TARGET antlr4_static)
1929+ install(TARGETS antlr4_static
1930+ EXPORT antlr4-targets
1931+ ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
1932+ LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
1933+ RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
1934+endif()
1935
1936-install(FILES "${UTFCPP_DIR}/source/utf8.h"
1937- DESTINATION "include/antlr4-runtime")
1938-install(DIRECTORY "${UTFCPP_DIR}/source/utf8"
1939+install(DIRECTORY "${PROJECT_SOURCE_DIR}/runtime/src/"
1940 DESTINATION "include/antlr4-runtime"
1941 COMPONENT dev
1942 FILES_MATCHING PATTERN "*.h"
1943 )
1944-
1945-
1946-
1947diff --git a/runtime/CTestTestfile.cmake b/runtime/CTestTestfile.cmake
1948new file mode 100644
1949index 0000000..82e19aa
1950--- /dev/null
1951+++ b/runtime/CTestTestfile.cmake
1952@@ -0,0 +1,8 @@
1953+# CMake generated Testfile for
1954+# Source directory: /Users/parrt/antlr/code/antlr4/runtime/Cpp/runtime
1955+# Build directory: /Users/parrt/antlr/code/antlr4/runtime/Cpp/runtime
1956+#
1957+# This file includes the relevant testing commands required for
1958+# testing this directory and lists subdirectories to be tested as well.
1959+include("/Users/parrt/antlr/code/antlr4/runtime/Cpp/runtime/antlr4_tests[1]_include.cmake")
1960+subdirs("../_deps/googletest-build")
1961diff --git a/runtime/Makefile b/runtime/Makefile
1962new file mode 100644
1963index 0000000..c7d040f
1964--- /dev/null
1965+++ b/runtime/Makefile
1966@@ -0,0 +1,4374 @@
1967+# CMAKE generated file: DO NOT EDIT!
1968+# Generated by "Unix Makefiles" Generator, CMake Version 3.24
1969+
1970+# Default target executed when no arguments are given to make.
1971+default_target: all
1972+.PHONY : default_target
1973+
1974+# Allow only one "make -f Makefile2" at a time, but pass parallelism.
1975+.NOTPARALLEL:
1976+
1977+#=============================================================================
1978+# Special targets provided by cmake.
1979+
1980+# Disable implicit rules so canonical targets will work.
1981+.SUFFIXES:
1982+
1983+# Disable VCS-based implicit rules.
1984+% : %,v
1985+
1986+# Disable VCS-based implicit rules.
1987+% : RCS/%
1988+
1989+# Disable VCS-based implicit rules.
1990+% : RCS/%,v
1991+
1992+# Disable VCS-based implicit rules.
1993+% : SCCS/s.%
1994+
1995+# Disable VCS-based implicit rules.
1996+% : s.%
1997+
1998+.SUFFIXES: .hpux_make_needs_suffix_list
1999+
2000+# Command-line flag to silence nested $(MAKE).
2001+$(VERBOSE)MAKESILENT = -s
2002+
2003+#Suppress display of executed commands.
2004+$(VERBOSE).SILENT:
2005+
2006+# A target that is always out of date.
2007+cmake_force:
2008+.PHONY : cmake_force
2009+
2010+#=============================================================================
2011+# Set environment variables for the build.
2012+
2013+# The shell in which to execute make rules.
2014+SHELL = /bin/sh
2015+
2016+# The CMake executable.
2017+CMAKE_COMMAND = /opt/homebrew/Cellar/cmake/3.24.1/bin/cmake
2018+
2019+# The command to remove a file.
2020+RM = /opt/homebrew/Cellar/cmake/3.24.1/bin/cmake -E rm -f
2021+
2022+# Escaping for special characters.
2023+EQUALS = =
2024+
2025+# The top-level source directory on which CMake was run.
2026+CMAKE_SOURCE_DIR = /Users/parrt/antlr/code/antlr4/runtime/Cpp
2027+
2028+# The top-level build directory on which CMake was run.
2029+CMAKE_BINARY_DIR = /Users/parrt/antlr/code/antlr4/runtime/Cpp
2030+
2031+#=============================================================================
2032+# Targets provided globally by CMake.
2033+
2034+# Special rule for the target package
2035+package: preinstall
2036+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool..."
2037+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && /opt/homebrew/Cellar/cmake/3.24.1/bin/cpack --config ./CPackConfig.cmake
2038+.PHONY : package
2039+
2040+# Special rule for the target package
2041+package/fast: package
2042+.PHONY : package/fast
2043+
2044+# Special rule for the target package_source
2045+package_source:
2046+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool for source..."
2047+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && /opt/homebrew/Cellar/cmake/3.24.1/bin/cpack --config ./CPackSourceConfig.cmake /Users/parrt/antlr/code/antlr4/runtime/Cpp/CPackSourceConfig.cmake
2048+.PHONY : package_source
2049+
2050+# Special rule for the target package_source
2051+package_source/fast: package_source
2052+.PHONY : package_source/fast
2053+
2054+# Special rule for the target test
2055+test:
2056+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running tests..."
2057+ /opt/homebrew/Cellar/cmake/3.24.1/bin/ctest --force-new-ctest-process $(ARGS)
2058+.PHONY : test
2059+
2060+# Special rule for the target test
2061+test/fast: test
2062+.PHONY : test/fast
2063+
2064+# Special rule for the target edit_cache
2065+edit_cache:
2066+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake cache editor..."
2067+ /opt/homebrew/Cellar/cmake/3.22.3/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
2068+.PHONY : edit_cache
2069+
2070+# Special rule for the target edit_cache
2071+edit_cache/fast: edit_cache
2072+.PHONY : edit_cache/fast
2073+
2074+# Special rule for the target rebuild_cache
2075+rebuild_cache:
2076+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..."
2077+ /opt/homebrew/Cellar/cmake/3.24.1/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
2078+.PHONY : rebuild_cache
2079+
2080+# Special rule for the target rebuild_cache
2081+rebuild_cache/fast: rebuild_cache
2082+.PHONY : rebuild_cache/fast
2083+
2084+# Special rule for the target list_install_components
2085+list_install_components:
2086+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\" \"dev\""
2087+.PHONY : list_install_components
2088+
2089+# Special rule for the target list_install_components
2090+list_install_components/fast: list_install_components
2091+.PHONY : list_install_components/fast
2092+
2093+# Special rule for the target install
2094+install: preinstall
2095+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..."
2096+ /opt/homebrew/Cellar/cmake/3.24.1/bin/cmake -P cmake_install.cmake
2097+.PHONY : install
2098+
2099+# Special rule for the target install
2100+install/fast: preinstall/fast
2101+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..."
2102+ /opt/homebrew/Cellar/cmake/3.24.1/bin/cmake -P cmake_install.cmake
2103+.PHONY : install/fast
2104+
2105+# Special rule for the target install/local
2106+install/local: preinstall
2107+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..."
2108+ /opt/homebrew/Cellar/cmake/3.24.1/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
2109+.PHONY : install/local
2110+
2111+# Special rule for the target install/local
2112+install/local/fast: preinstall/fast
2113+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..."
2114+ /opt/homebrew/Cellar/cmake/3.24.1/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
2115+.PHONY : install/local/fast
2116+
2117+# Special rule for the target install/strip
2118+install/strip: preinstall
2119+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..."
2120+ /opt/homebrew/Cellar/cmake/3.24.1/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
2121+.PHONY : install/strip
2122+
2123+# Special rule for the target install/strip
2124+install/strip/fast: preinstall/fast
2125+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..."
2126+ /opt/homebrew/Cellar/cmake/3.24.1/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
2127+.PHONY : install/strip/fast
2128+
2129+# The main all target
2130+all: cmake_check_build_system
2131+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(CMAKE_COMMAND) -E cmake_progress_start /Users/parrt/antlr/code/antlr4/runtime/Cpp/CMakeFiles /Users/parrt/antlr/code/antlr4/runtime/Cpp/runtime//CMakeFiles/progress.marks
2132+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 runtime/all
2133+ $(CMAKE_COMMAND) -E cmake_progress_start /Users/parrt/antlr/code/antlr4/runtime/Cpp/CMakeFiles 0
2134+.PHONY : all
2135+
2136+# The main clean target
2137+clean:
2138+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 runtime/clean
2139+.PHONY : clean
2140+
2141+# The main clean target
2142+clean/fast: clean
2143+.PHONY : clean/fast
2144+
2145+# Prepare targets for installation.
2146+preinstall: all
2147+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 runtime/preinstall
2148+.PHONY : preinstall
2149+
2150+# Prepare targets for installation.
2151+preinstall/fast:
2152+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 runtime/preinstall
2153+.PHONY : preinstall/fast
2154+
2155+# clear depends
2156+depend:
2157+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
2158+.PHONY : depend
2159+
2160+# Convenience name for target.
2161+runtime/CMakeFiles/antlr4_shared.dir/rule:
2162+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 runtime/CMakeFiles/antlr4_shared.dir/rule
2163+.PHONY : runtime/CMakeFiles/antlr4_shared.dir/rule
2164+
2165+# Convenience name for target.
2166+antlr4_shared: runtime/CMakeFiles/antlr4_shared.dir/rule
2167+.PHONY : antlr4_shared
2168+
2169+# fast build rule for target.
2170+antlr4_shared/fast:
2171+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/build
2172+.PHONY : antlr4_shared/fast
2173+
2174+# Convenience name for target.
2175+runtime/CMakeFiles/antlr4_static.dir/rule:
2176+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 runtime/CMakeFiles/antlr4_static.dir/rule
2177+.PHONY : runtime/CMakeFiles/antlr4_static.dir/rule
2178+
2179+# Convenience name for target.
2180+antlr4_static: runtime/CMakeFiles/antlr4_static.dir/rule
2181+.PHONY : antlr4_static
2182+
2183+# fast build rule for target.
2184+antlr4_static/fast:
2185+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/build
2186+.PHONY : antlr4_static/fast
2187+
2188+# Convenience name for target.
2189+runtime/CMakeFiles/antlr4_tests.dir/rule:
2190+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 runtime/CMakeFiles/antlr4_tests.dir/rule
2191+.PHONY : runtime/CMakeFiles/antlr4_tests.dir/rule
2192+
2193+# Convenience name for target.
2194+antlr4_tests: runtime/CMakeFiles/antlr4_tests.dir/rule
2195+.PHONY : antlr4_tests
2196+
2197+# fast build rule for target.
2198+antlr4_tests/fast:
2199+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_tests.dir/build.make runtime/CMakeFiles/antlr4_tests.dir/build
2200+.PHONY : antlr4_tests/fast
2201+
2202+src/ANTLRErrorListener.o: src/ANTLRErrorListener.cpp.o
2203+.PHONY : src/ANTLRErrorListener.o
2204+
2205+# target to build an object file
2206+src/ANTLRErrorListener.cpp.o:
2207+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/ANTLRErrorListener.cpp.o
2208+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/ANTLRErrorListener.cpp.o
2209+.PHONY : src/ANTLRErrorListener.cpp.o
2210+
2211+src/ANTLRErrorListener.i: src/ANTLRErrorListener.cpp.i
2212+.PHONY : src/ANTLRErrorListener.i
2213+
2214+# target to preprocess a source file
2215+src/ANTLRErrorListener.cpp.i:
2216+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/ANTLRErrorListener.cpp.i
2217+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/ANTLRErrorListener.cpp.i
2218+.PHONY : src/ANTLRErrorListener.cpp.i
2219+
2220+src/ANTLRErrorListener.s: src/ANTLRErrorListener.cpp.s
2221+.PHONY : src/ANTLRErrorListener.s
2222+
2223+# target to generate assembly for a file
2224+src/ANTLRErrorListener.cpp.s:
2225+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/ANTLRErrorListener.cpp.s
2226+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/ANTLRErrorListener.cpp.s
2227+.PHONY : src/ANTLRErrorListener.cpp.s
2228+
2229+src/ANTLRErrorStrategy.o: src/ANTLRErrorStrategy.cpp.o
2230+.PHONY : src/ANTLRErrorStrategy.o
2231+
2232+# target to build an object file
2233+src/ANTLRErrorStrategy.cpp.o:
2234+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/ANTLRErrorStrategy.cpp.o
2235+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/ANTLRErrorStrategy.cpp.o
2236+.PHONY : src/ANTLRErrorStrategy.cpp.o
2237+
2238+src/ANTLRErrorStrategy.i: src/ANTLRErrorStrategy.cpp.i
2239+.PHONY : src/ANTLRErrorStrategy.i
2240+
2241+# target to preprocess a source file
2242+src/ANTLRErrorStrategy.cpp.i:
2243+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/ANTLRErrorStrategy.cpp.i
2244+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/ANTLRErrorStrategy.cpp.i
2245+.PHONY : src/ANTLRErrorStrategy.cpp.i
2246+
2247+src/ANTLRErrorStrategy.s: src/ANTLRErrorStrategy.cpp.s
2248+.PHONY : src/ANTLRErrorStrategy.s
2249+
2250+# target to generate assembly for a file
2251+src/ANTLRErrorStrategy.cpp.s:
2252+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/ANTLRErrorStrategy.cpp.s
2253+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/ANTLRErrorStrategy.cpp.s
2254+.PHONY : src/ANTLRErrorStrategy.cpp.s
2255+
2256+src/ANTLRFileStream.o: src/ANTLRFileStream.cpp.o
2257+.PHONY : src/ANTLRFileStream.o
2258+
2259+# target to build an object file
2260+src/ANTLRFileStream.cpp.o:
2261+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/ANTLRFileStream.cpp.o
2262+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/ANTLRFileStream.cpp.o
2263+.PHONY : src/ANTLRFileStream.cpp.o
2264+
2265+src/ANTLRFileStream.i: src/ANTLRFileStream.cpp.i
2266+.PHONY : src/ANTLRFileStream.i
2267+
2268+# target to preprocess a source file
2269+src/ANTLRFileStream.cpp.i:
2270+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/ANTLRFileStream.cpp.i
2271+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/ANTLRFileStream.cpp.i
2272+.PHONY : src/ANTLRFileStream.cpp.i
2273+
2274+src/ANTLRFileStream.s: src/ANTLRFileStream.cpp.s
2275+.PHONY : src/ANTLRFileStream.s
2276+
2277+# target to generate assembly for a file
2278+src/ANTLRFileStream.cpp.s:
2279+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/ANTLRFileStream.cpp.s
2280+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/ANTLRFileStream.cpp.s
2281+.PHONY : src/ANTLRFileStream.cpp.s
2282+
2283+src/ANTLRInputStream.o: src/ANTLRInputStream.cpp.o
2284+.PHONY : src/ANTLRInputStream.o
2285+
2286+# target to build an object file
2287+src/ANTLRInputStream.cpp.o:
2288+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/ANTLRInputStream.cpp.o
2289+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/ANTLRInputStream.cpp.o
2290+.PHONY : src/ANTLRInputStream.cpp.o
2291+
2292+src/ANTLRInputStream.i: src/ANTLRInputStream.cpp.i
2293+.PHONY : src/ANTLRInputStream.i
2294+
2295+# target to preprocess a source file
2296+src/ANTLRInputStream.cpp.i:
2297+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/ANTLRInputStream.cpp.i
2298+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/ANTLRInputStream.cpp.i
2299+.PHONY : src/ANTLRInputStream.cpp.i
2300+
2301+src/ANTLRInputStream.s: src/ANTLRInputStream.cpp.s
2302+.PHONY : src/ANTLRInputStream.s
2303+
2304+# target to generate assembly for a file
2305+src/ANTLRInputStream.cpp.s:
2306+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/ANTLRInputStream.cpp.s
2307+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/ANTLRInputStream.cpp.s
2308+.PHONY : src/ANTLRInputStream.cpp.s
2309+
2310+src/BailErrorStrategy.o: src/BailErrorStrategy.cpp.o
2311+.PHONY : src/BailErrorStrategy.o
2312+
2313+# target to build an object file
2314+src/BailErrorStrategy.cpp.o:
2315+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/BailErrorStrategy.cpp.o
2316+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/BailErrorStrategy.cpp.o
2317+.PHONY : src/BailErrorStrategy.cpp.o
2318+
2319+src/BailErrorStrategy.i: src/BailErrorStrategy.cpp.i
2320+.PHONY : src/BailErrorStrategy.i
2321+
2322+# target to preprocess a source file
2323+src/BailErrorStrategy.cpp.i:
2324+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/BailErrorStrategy.cpp.i
2325+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/BailErrorStrategy.cpp.i
2326+.PHONY : src/BailErrorStrategy.cpp.i
2327+
2328+src/BailErrorStrategy.s: src/BailErrorStrategy.cpp.s
2329+.PHONY : src/BailErrorStrategy.s
2330+
2331+# target to generate assembly for a file
2332+src/BailErrorStrategy.cpp.s:
2333+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/BailErrorStrategy.cpp.s
2334+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/BailErrorStrategy.cpp.s
2335+.PHONY : src/BailErrorStrategy.cpp.s
2336+
2337+src/BaseErrorListener.o: src/BaseErrorListener.cpp.o
2338+.PHONY : src/BaseErrorListener.o
2339+
2340+# target to build an object file
2341+src/BaseErrorListener.cpp.o:
2342+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/BaseErrorListener.cpp.o
2343+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/BaseErrorListener.cpp.o
2344+.PHONY : src/BaseErrorListener.cpp.o
2345+
2346+src/BaseErrorListener.i: src/BaseErrorListener.cpp.i
2347+.PHONY : src/BaseErrorListener.i
2348+
2349+# target to preprocess a source file
2350+src/BaseErrorListener.cpp.i:
2351+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/BaseErrorListener.cpp.i
2352+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/BaseErrorListener.cpp.i
2353+.PHONY : src/BaseErrorListener.cpp.i
2354+
2355+src/BaseErrorListener.s: src/BaseErrorListener.cpp.s
2356+.PHONY : src/BaseErrorListener.s
2357+
2358+# target to generate assembly for a file
2359+src/BaseErrorListener.cpp.s:
2360+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/BaseErrorListener.cpp.s
2361+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/BaseErrorListener.cpp.s
2362+.PHONY : src/BaseErrorListener.cpp.s
2363+
2364+src/BufferedTokenStream.o: src/BufferedTokenStream.cpp.o
2365+.PHONY : src/BufferedTokenStream.o
2366+
2367+# target to build an object file
2368+src/BufferedTokenStream.cpp.o:
2369+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/BufferedTokenStream.cpp.o
2370+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/BufferedTokenStream.cpp.o
2371+.PHONY : src/BufferedTokenStream.cpp.o
2372+
2373+src/BufferedTokenStream.i: src/BufferedTokenStream.cpp.i
2374+.PHONY : src/BufferedTokenStream.i
2375+
2376+# target to preprocess a source file
2377+src/BufferedTokenStream.cpp.i:
2378+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/BufferedTokenStream.cpp.i
2379+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/BufferedTokenStream.cpp.i
2380+.PHONY : src/BufferedTokenStream.cpp.i
2381+
2382+src/BufferedTokenStream.s: src/BufferedTokenStream.cpp.s
2383+.PHONY : src/BufferedTokenStream.s
2384+
2385+# target to generate assembly for a file
2386+src/BufferedTokenStream.cpp.s:
2387+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/BufferedTokenStream.cpp.s
2388+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/BufferedTokenStream.cpp.s
2389+.PHONY : src/BufferedTokenStream.cpp.s
2390+
2391+src/CharStream.o: src/CharStream.cpp.o
2392+.PHONY : src/CharStream.o
2393+
2394+# target to build an object file
2395+src/CharStream.cpp.o:
2396+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/CharStream.cpp.o
2397+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/CharStream.cpp.o
2398+.PHONY : src/CharStream.cpp.o
2399+
2400+src/CharStream.i: src/CharStream.cpp.i
2401+.PHONY : src/CharStream.i
2402+
2403+# target to preprocess a source file
2404+src/CharStream.cpp.i:
2405+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/CharStream.cpp.i
2406+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/CharStream.cpp.i
2407+.PHONY : src/CharStream.cpp.i
2408+
2409+src/CharStream.s: src/CharStream.cpp.s
2410+.PHONY : src/CharStream.s
2411+
2412+# target to generate assembly for a file
2413+src/CharStream.cpp.s:
2414+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/CharStream.cpp.s
2415+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/CharStream.cpp.s
2416+.PHONY : src/CharStream.cpp.s
2417+
2418+src/CommonToken.o: src/CommonToken.cpp.o
2419+.PHONY : src/CommonToken.o
2420+
2421+# target to build an object file
2422+src/CommonToken.cpp.o:
2423+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/CommonToken.cpp.o
2424+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/CommonToken.cpp.o
2425+.PHONY : src/CommonToken.cpp.o
2426+
2427+src/CommonToken.i: src/CommonToken.cpp.i
2428+.PHONY : src/CommonToken.i
2429+
2430+# target to preprocess a source file
2431+src/CommonToken.cpp.i:
2432+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/CommonToken.cpp.i
2433+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/CommonToken.cpp.i
2434+.PHONY : src/CommonToken.cpp.i
2435+
2436+src/CommonToken.s: src/CommonToken.cpp.s
2437+.PHONY : src/CommonToken.s
2438+
2439+# target to generate assembly for a file
2440+src/CommonToken.cpp.s:
2441+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/CommonToken.cpp.s
2442+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/CommonToken.cpp.s
2443+.PHONY : src/CommonToken.cpp.s
2444+
2445+src/CommonTokenFactory.o: src/CommonTokenFactory.cpp.o
2446+.PHONY : src/CommonTokenFactory.o
2447+
2448+# target to build an object file
2449+src/CommonTokenFactory.cpp.o:
2450+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/CommonTokenFactory.cpp.o
2451+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/CommonTokenFactory.cpp.o
2452+.PHONY : src/CommonTokenFactory.cpp.o
2453+
2454+src/CommonTokenFactory.i: src/CommonTokenFactory.cpp.i
2455+.PHONY : src/CommonTokenFactory.i
2456+
2457+# target to preprocess a source file
2458+src/CommonTokenFactory.cpp.i:
2459+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/CommonTokenFactory.cpp.i
2460+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/CommonTokenFactory.cpp.i
2461+.PHONY : src/CommonTokenFactory.cpp.i
2462+
2463+src/CommonTokenFactory.s: src/CommonTokenFactory.cpp.s
2464+.PHONY : src/CommonTokenFactory.s
2465+
2466+# target to generate assembly for a file
2467+src/CommonTokenFactory.cpp.s:
2468+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/CommonTokenFactory.cpp.s
2469+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/CommonTokenFactory.cpp.s
2470+.PHONY : src/CommonTokenFactory.cpp.s
2471+
2472+src/CommonTokenStream.o: src/CommonTokenStream.cpp.o
2473+.PHONY : src/CommonTokenStream.o
2474+
2475+# target to build an object file
2476+src/CommonTokenStream.cpp.o:
2477+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/CommonTokenStream.cpp.o
2478+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/CommonTokenStream.cpp.o
2479+.PHONY : src/CommonTokenStream.cpp.o
2480+
2481+src/CommonTokenStream.i: src/CommonTokenStream.cpp.i
2482+.PHONY : src/CommonTokenStream.i
2483+
2484+# target to preprocess a source file
2485+src/CommonTokenStream.cpp.i:
2486+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/CommonTokenStream.cpp.i
2487+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/CommonTokenStream.cpp.i
2488+.PHONY : src/CommonTokenStream.cpp.i
2489+
2490+src/CommonTokenStream.s: src/CommonTokenStream.cpp.s
2491+.PHONY : src/CommonTokenStream.s
2492+
2493+# target to generate assembly for a file
2494+src/CommonTokenStream.cpp.s:
2495+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/CommonTokenStream.cpp.s
2496+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/CommonTokenStream.cpp.s
2497+.PHONY : src/CommonTokenStream.cpp.s
2498+
2499+src/ConsoleErrorListener.o: src/ConsoleErrorListener.cpp.o
2500+.PHONY : src/ConsoleErrorListener.o
2501+
2502+# target to build an object file
2503+src/ConsoleErrorListener.cpp.o:
2504+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/ConsoleErrorListener.cpp.o
2505+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/ConsoleErrorListener.cpp.o
2506+.PHONY : src/ConsoleErrorListener.cpp.o
2507+
2508+src/ConsoleErrorListener.i: src/ConsoleErrorListener.cpp.i
2509+.PHONY : src/ConsoleErrorListener.i
2510+
2511+# target to preprocess a source file
2512+src/ConsoleErrorListener.cpp.i:
2513+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/ConsoleErrorListener.cpp.i
2514+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/ConsoleErrorListener.cpp.i
2515+.PHONY : src/ConsoleErrorListener.cpp.i
2516+
2517+src/ConsoleErrorListener.s: src/ConsoleErrorListener.cpp.s
2518+.PHONY : src/ConsoleErrorListener.s
2519+
2520+# target to generate assembly for a file
2521+src/ConsoleErrorListener.cpp.s:
2522+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/ConsoleErrorListener.cpp.s
2523+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/ConsoleErrorListener.cpp.s
2524+.PHONY : src/ConsoleErrorListener.cpp.s
2525+
2526+src/DefaultErrorStrategy.o: src/DefaultErrorStrategy.cpp.o
2527+.PHONY : src/DefaultErrorStrategy.o
2528+
2529+# target to build an object file
2530+src/DefaultErrorStrategy.cpp.o:
2531+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/DefaultErrorStrategy.cpp.o
2532+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/DefaultErrorStrategy.cpp.o
2533+.PHONY : src/DefaultErrorStrategy.cpp.o
2534+
2535+src/DefaultErrorStrategy.i: src/DefaultErrorStrategy.cpp.i
2536+.PHONY : src/DefaultErrorStrategy.i
2537+
2538+# target to preprocess a source file
2539+src/DefaultErrorStrategy.cpp.i:
2540+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/DefaultErrorStrategy.cpp.i
2541+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/DefaultErrorStrategy.cpp.i
2542+.PHONY : src/DefaultErrorStrategy.cpp.i
2543+
2544+src/DefaultErrorStrategy.s: src/DefaultErrorStrategy.cpp.s
2545+.PHONY : src/DefaultErrorStrategy.s
2546+
2547+# target to generate assembly for a file
2548+src/DefaultErrorStrategy.cpp.s:
2549+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/DefaultErrorStrategy.cpp.s
2550+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/DefaultErrorStrategy.cpp.s
2551+.PHONY : src/DefaultErrorStrategy.cpp.s
2552+
2553+src/DiagnosticErrorListener.o: src/DiagnosticErrorListener.cpp.o
2554+.PHONY : src/DiagnosticErrorListener.o
2555+
2556+# target to build an object file
2557+src/DiagnosticErrorListener.cpp.o:
2558+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/DiagnosticErrorListener.cpp.o
2559+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/DiagnosticErrorListener.cpp.o
2560+.PHONY : src/DiagnosticErrorListener.cpp.o
2561+
2562+src/DiagnosticErrorListener.i: src/DiagnosticErrorListener.cpp.i
2563+.PHONY : src/DiagnosticErrorListener.i
2564+
2565+# target to preprocess a source file
2566+src/DiagnosticErrorListener.cpp.i:
2567+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/DiagnosticErrorListener.cpp.i
2568+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/DiagnosticErrorListener.cpp.i
2569+.PHONY : src/DiagnosticErrorListener.cpp.i
2570+
2571+src/DiagnosticErrorListener.s: src/DiagnosticErrorListener.cpp.s
2572+.PHONY : src/DiagnosticErrorListener.s
2573+
2574+# target to generate assembly for a file
2575+src/DiagnosticErrorListener.cpp.s:
2576+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/DiagnosticErrorListener.cpp.s
2577+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/DiagnosticErrorListener.cpp.s
2578+.PHONY : src/DiagnosticErrorListener.cpp.s
2579+
2580+src/Exceptions.o: src/Exceptions.cpp.o
2581+.PHONY : src/Exceptions.o
2582+
2583+# target to build an object file
2584+src/Exceptions.cpp.o:
2585+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/Exceptions.cpp.o
2586+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/Exceptions.cpp.o
2587+.PHONY : src/Exceptions.cpp.o
2588+
2589+src/Exceptions.i: src/Exceptions.cpp.i
2590+.PHONY : src/Exceptions.i
2591+
2592+# target to preprocess a source file
2593+src/Exceptions.cpp.i:
2594+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/Exceptions.cpp.i
2595+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/Exceptions.cpp.i
2596+.PHONY : src/Exceptions.cpp.i
2597+
2598+src/Exceptions.s: src/Exceptions.cpp.s
2599+.PHONY : src/Exceptions.s
2600+
2601+# target to generate assembly for a file
2602+src/Exceptions.cpp.s:
2603+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/Exceptions.cpp.s
2604+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/Exceptions.cpp.s
2605+.PHONY : src/Exceptions.cpp.s
2606+
2607+src/FailedPredicateException.o: src/FailedPredicateException.cpp.o
2608+.PHONY : src/FailedPredicateException.o
2609+
2610+# target to build an object file
2611+src/FailedPredicateException.cpp.o:
2612+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/FailedPredicateException.cpp.o
2613+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/FailedPredicateException.cpp.o
2614+.PHONY : src/FailedPredicateException.cpp.o
2615+
2616+src/FailedPredicateException.i: src/FailedPredicateException.cpp.i
2617+.PHONY : src/FailedPredicateException.i
2618+
2619+# target to preprocess a source file
2620+src/FailedPredicateException.cpp.i:
2621+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/FailedPredicateException.cpp.i
2622+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/FailedPredicateException.cpp.i
2623+.PHONY : src/FailedPredicateException.cpp.i
2624+
2625+src/FailedPredicateException.s: src/FailedPredicateException.cpp.s
2626+.PHONY : src/FailedPredicateException.s
2627+
2628+# target to generate assembly for a file
2629+src/FailedPredicateException.cpp.s:
2630+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/FailedPredicateException.cpp.s
2631+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/FailedPredicateException.cpp.s
2632+.PHONY : src/FailedPredicateException.cpp.s
2633+
2634+src/InputMismatchException.o: src/InputMismatchException.cpp.o
2635+.PHONY : src/InputMismatchException.o
2636+
2637+# target to build an object file
2638+src/InputMismatchException.cpp.o:
2639+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/InputMismatchException.cpp.o
2640+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/InputMismatchException.cpp.o
2641+.PHONY : src/InputMismatchException.cpp.o
2642+
2643+src/InputMismatchException.i: src/InputMismatchException.cpp.i
2644+.PHONY : src/InputMismatchException.i
2645+
2646+# target to preprocess a source file
2647+src/InputMismatchException.cpp.i:
2648+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/InputMismatchException.cpp.i
2649+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/InputMismatchException.cpp.i
2650+.PHONY : src/InputMismatchException.cpp.i
2651+
2652+src/InputMismatchException.s: src/InputMismatchException.cpp.s
2653+.PHONY : src/InputMismatchException.s
2654+
2655+# target to generate assembly for a file
2656+src/InputMismatchException.cpp.s:
2657+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/InputMismatchException.cpp.s
2658+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/InputMismatchException.cpp.s
2659+.PHONY : src/InputMismatchException.cpp.s
2660+
2661+src/IntStream.o: src/IntStream.cpp.o
2662+.PHONY : src/IntStream.o
2663+
2664+# target to build an object file
2665+src/IntStream.cpp.o:
2666+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/IntStream.cpp.o
2667+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/IntStream.cpp.o
2668+.PHONY : src/IntStream.cpp.o
2669+
2670+src/IntStream.i: src/IntStream.cpp.i
2671+.PHONY : src/IntStream.i
2672+
2673+# target to preprocess a source file
2674+src/IntStream.cpp.i:
2675+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/IntStream.cpp.i
2676+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/IntStream.cpp.i
2677+.PHONY : src/IntStream.cpp.i
2678+
2679+src/IntStream.s: src/IntStream.cpp.s
2680+.PHONY : src/IntStream.s
2681+
2682+# target to generate assembly for a file
2683+src/IntStream.cpp.s:
2684+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/IntStream.cpp.s
2685+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/IntStream.cpp.s
2686+.PHONY : src/IntStream.cpp.s
2687+
2688+src/InterpreterRuleContext.o: src/InterpreterRuleContext.cpp.o
2689+.PHONY : src/InterpreterRuleContext.o
2690+
2691+# target to build an object file
2692+src/InterpreterRuleContext.cpp.o:
2693+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/InterpreterRuleContext.cpp.o
2694+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/InterpreterRuleContext.cpp.o
2695+.PHONY : src/InterpreterRuleContext.cpp.o
2696+
2697+src/InterpreterRuleContext.i: src/InterpreterRuleContext.cpp.i
2698+.PHONY : src/InterpreterRuleContext.i
2699+
2700+# target to preprocess a source file
2701+src/InterpreterRuleContext.cpp.i:
2702+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/InterpreterRuleContext.cpp.i
2703+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/InterpreterRuleContext.cpp.i
2704+.PHONY : src/InterpreterRuleContext.cpp.i
2705+
2706+src/InterpreterRuleContext.s: src/InterpreterRuleContext.cpp.s
2707+.PHONY : src/InterpreterRuleContext.s
2708+
2709+# target to generate assembly for a file
2710+src/InterpreterRuleContext.cpp.s:
2711+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/InterpreterRuleContext.cpp.s
2712+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/InterpreterRuleContext.cpp.s
2713+.PHONY : src/InterpreterRuleContext.cpp.s
2714+
2715+src/Lexer.o: src/Lexer.cpp.o
2716+.PHONY : src/Lexer.o
2717+
2718+# target to build an object file
2719+src/Lexer.cpp.o:
2720+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/Lexer.cpp.o
2721+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/Lexer.cpp.o
2722+.PHONY : src/Lexer.cpp.o
2723+
2724+src/Lexer.i: src/Lexer.cpp.i
2725+.PHONY : src/Lexer.i
2726+
2727+# target to preprocess a source file
2728+src/Lexer.cpp.i:
2729+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/Lexer.cpp.i
2730+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/Lexer.cpp.i
2731+.PHONY : src/Lexer.cpp.i
2732+
2733+src/Lexer.s: src/Lexer.cpp.s
2734+.PHONY : src/Lexer.s
2735+
2736+# target to generate assembly for a file
2737+src/Lexer.cpp.s:
2738+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/Lexer.cpp.s
2739+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/Lexer.cpp.s
2740+.PHONY : src/Lexer.cpp.s
2741+
2742+src/LexerInterpreter.o: src/LexerInterpreter.cpp.o
2743+.PHONY : src/LexerInterpreter.o
2744+
2745+# target to build an object file
2746+src/LexerInterpreter.cpp.o:
2747+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/LexerInterpreter.cpp.o
2748+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/LexerInterpreter.cpp.o
2749+.PHONY : src/LexerInterpreter.cpp.o
2750+
2751+src/LexerInterpreter.i: src/LexerInterpreter.cpp.i
2752+.PHONY : src/LexerInterpreter.i
2753+
2754+# target to preprocess a source file
2755+src/LexerInterpreter.cpp.i:
2756+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/LexerInterpreter.cpp.i
2757+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/LexerInterpreter.cpp.i
2758+.PHONY : src/LexerInterpreter.cpp.i
2759+
2760+src/LexerInterpreter.s: src/LexerInterpreter.cpp.s
2761+.PHONY : src/LexerInterpreter.s
2762+
2763+# target to generate assembly for a file
2764+src/LexerInterpreter.cpp.s:
2765+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/LexerInterpreter.cpp.s
2766+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/LexerInterpreter.cpp.s
2767+.PHONY : src/LexerInterpreter.cpp.s
2768+
2769+src/LexerNoViableAltException.o: src/LexerNoViableAltException.cpp.o
2770+.PHONY : src/LexerNoViableAltException.o
2771+
2772+# target to build an object file
2773+src/LexerNoViableAltException.cpp.o:
2774+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/LexerNoViableAltException.cpp.o
2775+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/LexerNoViableAltException.cpp.o
2776+.PHONY : src/LexerNoViableAltException.cpp.o
2777+
2778+src/LexerNoViableAltException.i: src/LexerNoViableAltException.cpp.i
2779+.PHONY : src/LexerNoViableAltException.i
2780+
2781+# target to preprocess a source file
2782+src/LexerNoViableAltException.cpp.i:
2783+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/LexerNoViableAltException.cpp.i
2784+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/LexerNoViableAltException.cpp.i
2785+.PHONY : src/LexerNoViableAltException.cpp.i
2786+
2787+src/LexerNoViableAltException.s: src/LexerNoViableAltException.cpp.s
2788+.PHONY : src/LexerNoViableAltException.s
2789+
2790+# target to generate assembly for a file
2791+src/LexerNoViableAltException.cpp.s:
2792+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/LexerNoViableAltException.cpp.s
2793+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/LexerNoViableAltException.cpp.s
2794+.PHONY : src/LexerNoViableAltException.cpp.s
2795+
2796+src/ListTokenSource.o: src/ListTokenSource.cpp.o
2797+.PHONY : src/ListTokenSource.o
2798+
2799+# target to build an object file
2800+src/ListTokenSource.cpp.o:
2801+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/ListTokenSource.cpp.o
2802+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/ListTokenSource.cpp.o
2803+.PHONY : src/ListTokenSource.cpp.o
2804+
2805+src/ListTokenSource.i: src/ListTokenSource.cpp.i
2806+.PHONY : src/ListTokenSource.i
2807+
2808+# target to preprocess a source file
2809+src/ListTokenSource.cpp.i:
2810+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/ListTokenSource.cpp.i
2811+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/ListTokenSource.cpp.i
2812+.PHONY : src/ListTokenSource.cpp.i
2813+
2814+src/ListTokenSource.s: src/ListTokenSource.cpp.s
2815+.PHONY : src/ListTokenSource.s
2816+
2817+# target to generate assembly for a file
2818+src/ListTokenSource.cpp.s:
2819+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/ListTokenSource.cpp.s
2820+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/ListTokenSource.cpp.s
2821+.PHONY : src/ListTokenSource.cpp.s
2822+
2823+src/NoViableAltException.o: src/NoViableAltException.cpp.o
2824+.PHONY : src/NoViableAltException.o
2825+
2826+# target to build an object file
2827+src/NoViableAltException.cpp.o:
2828+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/NoViableAltException.cpp.o
2829+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/NoViableAltException.cpp.o
2830+.PHONY : src/NoViableAltException.cpp.o
2831+
2832+src/NoViableAltException.i: src/NoViableAltException.cpp.i
2833+.PHONY : src/NoViableAltException.i
2834+
2835+# target to preprocess a source file
2836+src/NoViableAltException.cpp.i:
2837+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/NoViableAltException.cpp.i
2838+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/NoViableAltException.cpp.i
2839+.PHONY : src/NoViableAltException.cpp.i
2840+
2841+src/NoViableAltException.s: src/NoViableAltException.cpp.s
2842+.PHONY : src/NoViableAltException.s
2843+
2844+# target to generate assembly for a file
2845+src/NoViableAltException.cpp.s:
2846+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/NoViableAltException.cpp.s
2847+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/NoViableAltException.cpp.s
2848+.PHONY : src/NoViableAltException.cpp.s
2849+
2850+src/Parser.o: src/Parser.cpp.o
2851+.PHONY : src/Parser.o
2852+
2853+# target to build an object file
2854+src/Parser.cpp.o:
2855+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/Parser.cpp.o
2856+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/Parser.cpp.o
2857+.PHONY : src/Parser.cpp.o
2858+
2859+src/Parser.i: src/Parser.cpp.i
2860+.PHONY : src/Parser.i
2861+
2862+# target to preprocess a source file
2863+src/Parser.cpp.i:
2864+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/Parser.cpp.i
2865+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/Parser.cpp.i
2866+.PHONY : src/Parser.cpp.i
2867+
2868+src/Parser.s: src/Parser.cpp.s
2869+.PHONY : src/Parser.s
2870+
2871+# target to generate assembly for a file
2872+src/Parser.cpp.s:
2873+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/Parser.cpp.s
2874+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/Parser.cpp.s
2875+.PHONY : src/Parser.cpp.s
2876+
2877+src/ParserInterpreter.o: src/ParserInterpreter.cpp.o
2878+.PHONY : src/ParserInterpreter.o
2879+
2880+# target to build an object file
2881+src/ParserInterpreter.cpp.o:
2882+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/ParserInterpreter.cpp.o
2883+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/ParserInterpreter.cpp.o
2884+.PHONY : src/ParserInterpreter.cpp.o
2885+
2886+src/ParserInterpreter.i: src/ParserInterpreter.cpp.i
2887+.PHONY : src/ParserInterpreter.i
2888+
2889+# target to preprocess a source file
2890+src/ParserInterpreter.cpp.i:
2891+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/ParserInterpreter.cpp.i
2892+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/ParserInterpreter.cpp.i
2893+.PHONY : src/ParserInterpreter.cpp.i
2894+
2895+src/ParserInterpreter.s: src/ParserInterpreter.cpp.s
2896+.PHONY : src/ParserInterpreter.s
2897+
2898+# target to generate assembly for a file
2899+src/ParserInterpreter.cpp.s:
2900+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/ParserInterpreter.cpp.s
2901+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/ParserInterpreter.cpp.s
2902+.PHONY : src/ParserInterpreter.cpp.s
2903+
2904+src/ParserRuleContext.o: src/ParserRuleContext.cpp.o
2905+.PHONY : src/ParserRuleContext.o
2906+
2907+# target to build an object file
2908+src/ParserRuleContext.cpp.o:
2909+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/ParserRuleContext.cpp.o
2910+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/ParserRuleContext.cpp.o
2911+.PHONY : src/ParserRuleContext.cpp.o
2912+
2913+src/ParserRuleContext.i: src/ParserRuleContext.cpp.i
2914+.PHONY : src/ParserRuleContext.i
2915+
2916+# target to preprocess a source file
2917+src/ParserRuleContext.cpp.i:
2918+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/ParserRuleContext.cpp.i
2919+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/ParserRuleContext.cpp.i
2920+.PHONY : src/ParserRuleContext.cpp.i
2921+
2922+src/ParserRuleContext.s: src/ParserRuleContext.cpp.s
2923+.PHONY : src/ParserRuleContext.s
2924+
2925+# target to generate assembly for a file
2926+src/ParserRuleContext.cpp.s:
2927+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/ParserRuleContext.cpp.s
2928+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/ParserRuleContext.cpp.s
2929+.PHONY : src/ParserRuleContext.cpp.s
2930+
2931+src/ProxyErrorListener.o: src/ProxyErrorListener.cpp.o
2932+.PHONY : src/ProxyErrorListener.o
2933+
2934+# target to build an object file
2935+src/ProxyErrorListener.cpp.o:
2936+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/ProxyErrorListener.cpp.o
2937+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/ProxyErrorListener.cpp.o
2938+.PHONY : src/ProxyErrorListener.cpp.o
2939+
2940+src/ProxyErrorListener.i: src/ProxyErrorListener.cpp.i
2941+.PHONY : src/ProxyErrorListener.i
2942+
2943+# target to preprocess a source file
2944+src/ProxyErrorListener.cpp.i:
2945+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/ProxyErrorListener.cpp.i
2946+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/ProxyErrorListener.cpp.i
2947+.PHONY : src/ProxyErrorListener.cpp.i
2948+
2949+src/ProxyErrorListener.s: src/ProxyErrorListener.cpp.s
2950+.PHONY : src/ProxyErrorListener.s
2951+
2952+# target to generate assembly for a file
2953+src/ProxyErrorListener.cpp.s:
2954+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/ProxyErrorListener.cpp.s
2955+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/ProxyErrorListener.cpp.s
2956+.PHONY : src/ProxyErrorListener.cpp.s
2957+
2958+src/RecognitionException.o: src/RecognitionException.cpp.o
2959+.PHONY : src/RecognitionException.o
2960+
2961+# target to build an object file
2962+src/RecognitionException.cpp.o:
2963+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/RecognitionException.cpp.o
2964+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/RecognitionException.cpp.o
2965+.PHONY : src/RecognitionException.cpp.o
2966+
2967+src/RecognitionException.i: src/RecognitionException.cpp.i
2968+.PHONY : src/RecognitionException.i
2969+
2970+# target to preprocess a source file
2971+src/RecognitionException.cpp.i:
2972+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/RecognitionException.cpp.i
2973+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/RecognitionException.cpp.i
2974+.PHONY : src/RecognitionException.cpp.i
2975+
2976+src/RecognitionException.s: src/RecognitionException.cpp.s
2977+.PHONY : src/RecognitionException.s
2978+
2979+# target to generate assembly for a file
2980+src/RecognitionException.cpp.s:
2981+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/RecognitionException.cpp.s
2982+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/RecognitionException.cpp.s
2983+.PHONY : src/RecognitionException.cpp.s
2984+
2985+src/Recognizer.o: src/Recognizer.cpp.o
2986+.PHONY : src/Recognizer.o
2987+
2988+# target to build an object file
2989+src/Recognizer.cpp.o:
2990+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/Recognizer.cpp.o
2991+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/Recognizer.cpp.o
2992+.PHONY : src/Recognizer.cpp.o
2993+
2994+src/Recognizer.i: src/Recognizer.cpp.i
2995+.PHONY : src/Recognizer.i
2996+
2997+# target to preprocess a source file
2998+src/Recognizer.cpp.i:
2999+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/Recognizer.cpp.i
3000+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/Recognizer.cpp.i
3001+.PHONY : src/Recognizer.cpp.i
3002+
3003+src/Recognizer.s: src/Recognizer.cpp.s
3004+.PHONY : src/Recognizer.s
3005+
3006+# target to generate assembly for a file
3007+src/Recognizer.cpp.s:
3008+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/Recognizer.cpp.s
3009+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/Recognizer.cpp.s
3010+.PHONY : src/Recognizer.cpp.s
3011+
3012+src/RuleContext.o: src/RuleContext.cpp.o
3013+.PHONY : src/RuleContext.o
3014+
3015+# target to build an object file
3016+src/RuleContext.cpp.o:
3017+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/RuleContext.cpp.o
3018+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/RuleContext.cpp.o
3019+.PHONY : src/RuleContext.cpp.o
3020+
3021+src/RuleContext.i: src/RuleContext.cpp.i
3022+.PHONY : src/RuleContext.i
3023+
3024+# target to preprocess a source file
3025+src/RuleContext.cpp.i:
3026+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/RuleContext.cpp.i
3027+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/RuleContext.cpp.i
3028+.PHONY : src/RuleContext.cpp.i
3029+
3030+src/RuleContext.s: src/RuleContext.cpp.s
3031+.PHONY : src/RuleContext.s
3032+
3033+# target to generate assembly for a file
3034+src/RuleContext.cpp.s:
3035+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/RuleContext.cpp.s
3036+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/RuleContext.cpp.s
3037+.PHONY : src/RuleContext.cpp.s
3038+
3039+src/RuleContextWithAltNum.o: src/RuleContextWithAltNum.cpp.o
3040+.PHONY : src/RuleContextWithAltNum.o
3041+
3042+# target to build an object file
3043+src/RuleContextWithAltNum.cpp.o:
3044+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/RuleContextWithAltNum.cpp.o
3045+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/RuleContextWithAltNum.cpp.o
3046+.PHONY : src/RuleContextWithAltNum.cpp.o
3047+
3048+src/RuleContextWithAltNum.i: src/RuleContextWithAltNum.cpp.i
3049+.PHONY : src/RuleContextWithAltNum.i
3050+
3051+# target to preprocess a source file
3052+src/RuleContextWithAltNum.cpp.i:
3053+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/RuleContextWithAltNum.cpp.i
3054+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/RuleContextWithAltNum.cpp.i
3055+.PHONY : src/RuleContextWithAltNum.cpp.i
3056+
3057+src/RuleContextWithAltNum.s: src/RuleContextWithAltNum.cpp.s
3058+.PHONY : src/RuleContextWithAltNum.s
3059+
3060+# target to generate assembly for a file
3061+src/RuleContextWithAltNum.cpp.s:
3062+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/RuleContextWithAltNum.cpp.s
3063+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/RuleContextWithAltNum.cpp.s
3064+.PHONY : src/RuleContextWithAltNum.cpp.s
3065+
3066+src/RuntimeMetaData.o: src/RuntimeMetaData.cpp.o
3067+.PHONY : src/RuntimeMetaData.o
3068+
3069+# target to build an object file
3070+src/RuntimeMetaData.cpp.o:
3071+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/RuntimeMetaData.cpp.o
3072+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/RuntimeMetaData.cpp.o
3073+.PHONY : src/RuntimeMetaData.cpp.o
3074+
3075+src/RuntimeMetaData.i: src/RuntimeMetaData.cpp.i
3076+.PHONY : src/RuntimeMetaData.i
3077+
3078+# target to preprocess a source file
3079+src/RuntimeMetaData.cpp.i:
3080+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/RuntimeMetaData.cpp.i
3081+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/RuntimeMetaData.cpp.i
3082+.PHONY : src/RuntimeMetaData.cpp.i
3083+
3084+src/RuntimeMetaData.s: src/RuntimeMetaData.cpp.s
3085+.PHONY : src/RuntimeMetaData.s
3086+
3087+# target to generate assembly for a file
3088+src/RuntimeMetaData.cpp.s:
3089+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/RuntimeMetaData.cpp.s
3090+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/RuntimeMetaData.cpp.s
3091+.PHONY : src/RuntimeMetaData.cpp.s
3092+
3093+src/Token.o: src/Token.cpp.o
3094+.PHONY : src/Token.o
3095+
3096+# target to build an object file
3097+src/Token.cpp.o:
3098+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/Token.cpp.o
3099+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/Token.cpp.o
3100+.PHONY : src/Token.cpp.o
3101+
3102+src/Token.i: src/Token.cpp.i
3103+.PHONY : src/Token.i
3104+
3105+# target to preprocess a source file
3106+src/Token.cpp.i:
3107+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/Token.cpp.i
3108+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/Token.cpp.i
3109+.PHONY : src/Token.cpp.i
3110+
3111+src/Token.s: src/Token.cpp.s
3112+.PHONY : src/Token.s
3113+
3114+# target to generate assembly for a file
3115+src/Token.cpp.s:
3116+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/Token.cpp.s
3117+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/Token.cpp.s
3118+.PHONY : src/Token.cpp.s
3119+
3120+src/TokenSource.o: src/TokenSource.cpp.o
3121+.PHONY : src/TokenSource.o
3122+
3123+# target to build an object file
3124+src/TokenSource.cpp.o:
3125+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/TokenSource.cpp.o
3126+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/TokenSource.cpp.o
3127+.PHONY : src/TokenSource.cpp.o
3128+
3129+src/TokenSource.i: src/TokenSource.cpp.i
3130+.PHONY : src/TokenSource.i
3131+
3132+# target to preprocess a source file
3133+src/TokenSource.cpp.i:
3134+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/TokenSource.cpp.i
3135+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/TokenSource.cpp.i
3136+.PHONY : src/TokenSource.cpp.i
3137+
3138+src/TokenSource.s: src/TokenSource.cpp.s
3139+.PHONY : src/TokenSource.s
3140+
3141+# target to generate assembly for a file
3142+src/TokenSource.cpp.s:
3143+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/TokenSource.cpp.s
3144+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/TokenSource.cpp.s
3145+.PHONY : src/TokenSource.cpp.s
3146+
3147+src/TokenStream.o: src/TokenStream.cpp.o
3148+.PHONY : src/TokenStream.o
3149+
3150+# target to build an object file
3151+src/TokenStream.cpp.o:
3152+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/TokenStream.cpp.o
3153+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/TokenStream.cpp.o
3154+.PHONY : src/TokenStream.cpp.o
3155+
3156+src/TokenStream.i: src/TokenStream.cpp.i
3157+.PHONY : src/TokenStream.i
3158+
3159+# target to preprocess a source file
3160+src/TokenStream.cpp.i:
3161+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/TokenStream.cpp.i
3162+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/TokenStream.cpp.i
3163+.PHONY : src/TokenStream.cpp.i
3164+
3165+src/TokenStream.s: src/TokenStream.cpp.s
3166+.PHONY : src/TokenStream.s
3167+
3168+# target to generate assembly for a file
3169+src/TokenStream.cpp.s:
3170+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/TokenStream.cpp.s
3171+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/TokenStream.cpp.s
3172+.PHONY : src/TokenStream.cpp.s
3173+
3174+src/TokenStreamRewriter.o: src/TokenStreamRewriter.cpp.o
3175+.PHONY : src/TokenStreamRewriter.o
3176+
3177+# target to build an object file
3178+src/TokenStreamRewriter.cpp.o:
3179+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/TokenStreamRewriter.cpp.o
3180+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/TokenStreamRewriter.cpp.o
3181+.PHONY : src/TokenStreamRewriter.cpp.o
3182+
3183+src/TokenStreamRewriter.i: src/TokenStreamRewriter.cpp.i
3184+.PHONY : src/TokenStreamRewriter.i
3185+
3186+# target to preprocess a source file
3187+src/TokenStreamRewriter.cpp.i:
3188+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/TokenStreamRewriter.cpp.i
3189+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/TokenStreamRewriter.cpp.i
3190+.PHONY : src/TokenStreamRewriter.cpp.i
3191+
3192+src/TokenStreamRewriter.s: src/TokenStreamRewriter.cpp.s
3193+.PHONY : src/TokenStreamRewriter.s
3194+
3195+# target to generate assembly for a file
3196+src/TokenStreamRewriter.cpp.s:
3197+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/TokenStreamRewriter.cpp.s
3198+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/TokenStreamRewriter.cpp.s
3199+.PHONY : src/TokenStreamRewriter.cpp.s
3200+
3201+src/UnbufferedCharStream.o: src/UnbufferedCharStream.cpp.o
3202+.PHONY : src/UnbufferedCharStream.o
3203+
3204+# target to build an object file
3205+src/UnbufferedCharStream.cpp.o:
3206+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/UnbufferedCharStream.cpp.o
3207+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/UnbufferedCharStream.cpp.o
3208+.PHONY : src/UnbufferedCharStream.cpp.o
3209+
3210+src/UnbufferedCharStream.i: src/UnbufferedCharStream.cpp.i
3211+.PHONY : src/UnbufferedCharStream.i
3212+
3213+# target to preprocess a source file
3214+src/UnbufferedCharStream.cpp.i:
3215+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/UnbufferedCharStream.cpp.i
3216+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/UnbufferedCharStream.cpp.i
3217+.PHONY : src/UnbufferedCharStream.cpp.i
3218+
3219+src/UnbufferedCharStream.s: src/UnbufferedCharStream.cpp.s
3220+.PHONY : src/UnbufferedCharStream.s
3221+
3222+# target to generate assembly for a file
3223+src/UnbufferedCharStream.cpp.s:
3224+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/UnbufferedCharStream.cpp.s
3225+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/UnbufferedCharStream.cpp.s
3226+.PHONY : src/UnbufferedCharStream.cpp.s
3227+
3228+src/UnbufferedTokenStream.o: src/UnbufferedTokenStream.cpp.o
3229+.PHONY : src/UnbufferedTokenStream.o
3230+
3231+# target to build an object file
3232+src/UnbufferedTokenStream.cpp.o:
3233+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/UnbufferedTokenStream.cpp.o
3234+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/UnbufferedTokenStream.cpp.o
3235+.PHONY : src/UnbufferedTokenStream.cpp.o
3236+
3237+src/UnbufferedTokenStream.i: src/UnbufferedTokenStream.cpp.i
3238+.PHONY : src/UnbufferedTokenStream.i
3239+
3240+# target to preprocess a source file
3241+src/UnbufferedTokenStream.cpp.i:
3242+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/UnbufferedTokenStream.cpp.i
3243+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/UnbufferedTokenStream.cpp.i
3244+.PHONY : src/UnbufferedTokenStream.cpp.i
3245+
3246+src/UnbufferedTokenStream.s: src/UnbufferedTokenStream.cpp.s
3247+.PHONY : src/UnbufferedTokenStream.s
3248+
3249+# target to generate assembly for a file
3250+src/UnbufferedTokenStream.cpp.s:
3251+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/UnbufferedTokenStream.cpp.s
3252+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/UnbufferedTokenStream.cpp.s
3253+.PHONY : src/UnbufferedTokenStream.cpp.s
3254+
3255+src/Vocabulary.o: src/Vocabulary.cpp.o
3256+.PHONY : src/Vocabulary.o
3257+
3258+# target to build an object file
3259+src/Vocabulary.cpp.o:
3260+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/Vocabulary.cpp.o
3261+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/Vocabulary.cpp.o
3262+.PHONY : src/Vocabulary.cpp.o
3263+
3264+src/Vocabulary.i: src/Vocabulary.cpp.i
3265+.PHONY : src/Vocabulary.i
3266+
3267+# target to preprocess a source file
3268+src/Vocabulary.cpp.i:
3269+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/Vocabulary.cpp.i
3270+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/Vocabulary.cpp.i
3271+.PHONY : src/Vocabulary.cpp.i
3272+
3273+src/Vocabulary.s: src/Vocabulary.cpp.s
3274+.PHONY : src/Vocabulary.s
3275+
3276+# target to generate assembly for a file
3277+src/Vocabulary.cpp.s:
3278+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/Vocabulary.cpp.s
3279+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/Vocabulary.cpp.s
3280+.PHONY : src/Vocabulary.cpp.s
3281+
3282+src/WritableToken.o: src/WritableToken.cpp.o
3283+.PHONY : src/WritableToken.o
3284+
3285+# target to build an object file
3286+src/WritableToken.cpp.o:
3287+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/WritableToken.cpp.o
3288+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/WritableToken.cpp.o
3289+.PHONY : src/WritableToken.cpp.o
3290+
3291+src/WritableToken.i: src/WritableToken.cpp.i
3292+.PHONY : src/WritableToken.i
3293+
3294+# target to preprocess a source file
3295+src/WritableToken.cpp.i:
3296+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/WritableToken.cpp.i
3297+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/WritableToken.cpp.i
3298+.PHONY : src/WritableToken.cpp.i
3299+
3300+src/WritableToken.s: src/WritableToken.cpp.s
3301+.PHONY : src/WritableToken.s
3302+
3303+# target to generate assembly for a file
3304+src/WritableToken.cpp.s:
3305+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/WritableToken.cpp.s
3306+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/WritableToken.cpp.s
3307+.PHONY : src/WritableToken.cpp.s
3308+
3309+src/atn/ATN.o: src/atn/ATN.cpp.o
3310+.PHONY : src/atn/ATN.o
3311+
3312+# target to build an object file
3313+src/atn/ATN.cpp.o:
3314+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/ATN.cpp.o
3315+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/ATN.cpp.o
3316+.PHONY : src/atn/ATN.cpp.o
3317+
3318+src/atn/ATN.i: src/atn/ATN.cpp.i
3319+.PHONY : src/atn/ATN.i
3320+
3321+# target to preprocess a source file
3322+src/atn/ATN.cpp.i:
3323+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/ATN.cpp.i
3324+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/ATN.cpp.i
3325+.PHONY : src/atn/ATN.cpp.i
3326+
3327+src/atn/ATN.s: src/atn/ATN.cpp.s
3328+.PHONY : src/atn/ATN.s
3329+
3330+# target to generate assembly for a file
3331+src/atn/ATN.cpp.s:
3332+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/ATN.cpp.s
3333+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/ATN.cpp.s
3334+.PHONY : src/atn/ATN.cpp.s
3335+
3336+src/atn/ATNConfig.o: src/atn/ATNConfig.cpp.o
3337+.PHONY : src/atn/ATNConfig.o
3338+
3339+# target to build an object file
3340+src/atn/ATNConfig.cpp.o:
3341+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/ATNConfig.cpp.o
3342+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/ATNConfig.cpp.o
3343+.PHONY : src/atn/ATNConfig.cpp.o
3344+
3345+src/atn/ATNConfig.i: src/atn/ATNConfig.cpp.i
3346+.PHONY : src/atn/ATNConfig.i
3347+
3348+# target to preprocess a source file
3349+src/atn/ATNConfig.cpp.i:
3350+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/ATNConfig.cpp.i
3351+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/ATNConfig.cpp.i
3352+.PHONY : src/atn/ATNConfig.cpp.i
3353+
3354+src/atn/ATNConfig.s: src/atn/ATNConfig.cpp.s
3355+.PHONY : src/atn/ATNConfig.s
3356+
3357+# target to generate assembly for a file
3358+src/atn/ATNConfig.cpp.s:
3359+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/ATNConfig.cpp.s
3360+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/ATNConfig.cpp.s
3361+.PHONY : src/atn/ATNConfig.cpp.s
3362+
3363+src/atn/ATNConfigSet.o: src/atn/ATNConfigSet.cpp.o
3364+.PHONY : src/atn/ATNConfigSet.o
3365+
3366+# target to build an object file
3367+src/atn/ATNConfigSet.cpp.o:
3368+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/ATNConfigSet.cpp.o
3369+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/ATNConfigSet.cpp.o
3370+.PHONY : src/atn/ATNConfigSet.cpp.o
3371+
3372+src/atn/ATNConfigSet.i: src/atn/ATNConfigSet.cpp.i
3373+.PHONY : src/atn/ATNConfigSet.i
3374+
3375+# target to preprocess a source file
3376+src/atn/ATNConfigSet.cpp.i:
3377+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/ATNConfigSet.cpp.i
3378+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/ATNConfigSet.cpp.i
3379+.PHONY : src/atn/ATNConfigSet.cpp.i
3380+
3381+src/atn/ATNConfigSet.s: src/atn/ATNConfigSet.cpp.s
3382+.PHONY : src/atn/ATNConfigSet.s
3383+
3384+# target to generate assembly for a file
3385+src/atn/ATNConfigSet.cpp.s:
3386+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/ATNConfigSet.cpp.s
3387+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/ATNConfigSet.cpp.s
3388+.PHONY : src/atn/ATNConfigSet.cpp.s
3389+
3390+src/atn/ATNDeserializationOptions.o: src/atn/ATNDeserializationOptions.cpp.o
3391+.PHONY : src/atn/ATNDeserializationOptions.o
3392+
3393+# target to build an object file
3394+src/atn/ATNDeserializationOptions.cpp.o:
3395+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/ATNDeserializationOptions.cpp.o
3396+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/ATNDeserializationOptions.cpp.o
3397+.PHONY : src/atn/ATNDeserializationOptions.cpp.o
3398+
3399+src/atn/ATNDeserializationOptions.i: src/atn/ATNDeserializationOptions.cpp.i
3400+.PHONY : src/atn/ATNDeserializationOptions.i
3401+
3402+# target to preprocess a source file
3403+src/atn/ATNDeserializationOptions.cpp.i:
3404+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/ATNDeserializationOptions.cpp.i
3405+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/ATNDeserializationOptions.cpp.i
3406+.PHONY : src/atn/ATNDeserializationOptions.cpp.i
3407+
3408+src/atn/ATNDeserializationOptions.s: src/atn/ATNDeserializationOptions.cpp.s
3409+.PHONY : src/atn/ATNDeserializationOptions.s
3410+
3411+# target to generate assembly for a file
3412+src/atn/ATNDeserializationOptions.cpp.s:
3413+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/ATNDeserializationOptions.cpp.s
3414+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/ATNDeserializationOptions.cpp.s
3415+.PHONY : src/atn/ATNDeserializationOptions.cpp.s
3416+
3417+src/atn/ATNDeserializer.o: src/atn/ATNDeserializer.cpp.o
3418+.PHONY : src/atn/ATNDeserializer.o
3419+
3420+# target to build an object file
3421+src/atn/ATNDeserializer.cpp.o:
3422+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/ATNDeserializer.cpp.o
3423+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/ATNDeserializer.cpp.o
3424+.PHONY : src/atn/ATNDeserializer.cpp.o
3425+
3426+src/atn/ATNDeserializer.i: src/atn/ATNDeserializer.cpp.i
3427+.PHONY : src/atn/ATNDeserializer.i
3428+
3429+# target to preprocess a source file
3430+src/atn/ATNDeserializer.cpp.i:
3431+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/ATNDeserializer.cpp.i
3432+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/ATNDeserializer.cpp.i
3433+.PHONY : src/atn/ATNDeserializer.cpp.i
3434+
3435+src/atn/ATNDeserializer.s: src/atn/ATNDeserializer.cpp.s
3436+.PHONY : src/atn/ATNDeserializer.s
3437+
3438+# target to generate assembly for a file
3439+src/atn/ATNDeserializer.cpp.s:
3440+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/ATNDeserializer.cpp.s
3441+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/ATNDeserializer.cpp.s
3442+.PHONY : src/atn/ATNDeserializer.cpp.s
3443+
3444+src/atn/ATNSimulator.o: src/atn/ATNSimulator.cpp.o
3445+.PHONY : src/atn/ATNSimulator.o
3446+
3447+# target to build an object file
3448+src/atn/ATNSimulator.cpp.o:
3449+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/ATNSimulator.cpp.o
3450+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/ATNSimulator.cpp.o
3451+.PHONY : src/atn/ATNSimulator.cpp.o
3452+
3453+src/atn/ATNSimulator.i: src/atn/ATNSimulator.cpp.i
3454+.PHONY : src/atn/ATNSimulator.i
3455+
3456+# target to preprocess a source file
3457+src/atn/ATNSimulator.cpp.i:
3458+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/ATNSimulator.cpp.i
3459+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/ATNSimulator.cpp.i
3460+.PHONY : src/atn/ATNSimulator.cpp.i
3461+
3462+src/atn/ATNSimulator.s: src/atn/ATNSimulator.cpp.s
3463+.PHONY : src/atn/ATNSimulator.s
3464+
3465+# target to generate assembly for a file
3466+src/atn/ATNSimulator.cpp.s:
3467+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/ATNSimulator.cpp.s
3468+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/ATNSimulator.cpp.s
3469+.PHONY : src/atn/ATNSimulator.cpp.s
3470+
3471+src/atn/ATNState.o: src/atn/ATNState.cpp.o
3472+.PHONY : src/atn/ATNState.o
3473+
3474+# target to build an object file
3475+src/atn/ATNState.cpp.o:
3476+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/ATNState.cpp.o
3477+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/ATNState.cpp.o
3478+.PHONY : src/atn/ATNState.cpp.o
3479+
3480+src/atn/ATNState.i: src/atn/ATNState.cpp.i
3481+.PHONY : src/atn/ATNState.i
3482+
3483+# target to preprocess a source file
3484+src/atn/ATNState.cpp.i:
3485+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/ATNState.cpp.i
3486+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/ATNState.cpp.i
3487+.PHONY : src/atn/ATNState.cpp.i
3488+
3489+src/atn/ATNState.s: src/atn/ATNState.cpp.s
3490+.PHONY : src/atn/ATNState.s
3491+
3492+# target to generate assembly for a file
3493+src/atn/ATNState.cpp.s:
3494+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/ATNState.cpp.s
3495+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/ATNState.cpp.s
3496+.PHONY : src/atn/ATNState.cpp.s
3497+
3498+src/atn/ATNStateType.o: src/atn/ATNStateType.cpp.o
3499+.PHONY : src/atn/ATNStateType.o
3500+
3501+# target to build an object file
3502+src/atn/ATNStateType.cpp.o:
3503+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/ATNStateType.cpp.o
3504+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/ATNStateType.cpp.o
3505+.PHONY : src/atn/ATNStateType.cpp.o
3506+
3507+src/atn/ATNStateType.i: src/atn/ATNStateType.cpp.i
3508+.PHONY : src/atn/ATNStateType.i
3509+
3510+# target to preprocess a source file
3511+src/atn/ATNStateType.cpp.i:
3512+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/ATNStateType.cpp.i
3513+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/ATNStateType.cpp.i
3514+.PHONY : src/atn/ATNStateType.cpp.i
3515+
3516+src/atn/ATNStateType.s: src/atn/ATNStateType.cpp.s
3517+.PHONY : src/atn/ATNStateType.s
3518+
3519+# target to generate assembly for a file
3520+src/atn/ATNStateType.cpp.s:
3521+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/ATNStateType.cpp.s
3522+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/ATNStateType.cpp.s
3523+.PHONY : src/atn/ATNStateType.cpp.s
3524+
3525+src/atn/ActionTransition.o: src/atn/ActionTransition.cpp.o
3526+.PHONY : src/atn/ActionTransition.o
3527+
3528+# target to build an object file
3529+src/atn/ActionTransition.cpp.o:
3530+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/ActionTransition.cpp.o
3531+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/ActionTransition.cpp.o
3532+.PHONY : src/atn/ActionTransition.cpp.o
3533+
3534+src/atn/ActionTransition.i: src/atn/ActionTransition.cpp.i
3535+.PHONY : src/atn/ActionTransition.i
3536+
3537+# target to preprocess a source file
3538+src/atn/ActionTransition.cpp.i:
3539+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/ActionTransition.cpp.i
3540+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/ActionTransition.cpp.i
3541+.PHONY : src/atn/ActionTransition.cpp.i
3542+
3543+src/atn/ActionTransition.s: src/atn/ActionTransition.cpp.s
3544+.PHONY : src/atn/ActionTransition.s
3545+
3546+# target to generate assembly for a file
3547+src/atn/ActionTransition.cpp.s:
3548+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/ActionTransition.cpp.s
3549+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/ActionTransition.cpp.s
3550+.PHONY : src/atn/ActionTransition.cpp.s
3551+
3552+src/atn/AmbiguityInfo.o: src/atn/AmbiguityInfo.cpp.o
3553+.PHONY : src/atn/AmbiguityInfo.o
3554+
3555+# target to build an object file
3556+src/atn/AmbiguityInfo.cpp.o:
3557+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/AmbiguityInfo.cpp.o
3558+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/AmbiguityInfo.cpp.o
3559+.PHONY : src/atn/AmbiguityInfo.cpp.o
3560+
3561+src/atn/AmbiguityInfo.i: src/atn/AmbiguityInfo.cpp.i
3562+.PHONY : src/atn/AmbiguityInfo.i
3563+
3564+# target to preprocess a source file
3565+src/atn/AmbiguityInfo.cpp.i:
3566+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/AmbiguityInfo.cpp.i
3567+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/AmbiguityInfo.cpp.i
3568+.PHONY : src/atn/AmbiguityInfo.cpp.i
3569+
3570+src/atn/AmbiguityInfo.s: src/atn/AmbiguityInfo.cpp.s
3571+.PHONY : src/atn/AmbiguityInfo.s
3572+
3573+# target to generate assembly for a file
3574+src/atn/AmbiguityInfo.cpp.s:
3575+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/AmbiguityInfo.cpp.s
3576+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/AmbiguityInfo.cpp.s
3577+.PHONY : src/atn/AmbiguityInfo.cpp.s
3578+
3579+src/atn/ArrayPredictionContext.o: src/atn/ArrayPredictionContext.cpp.o
3580+.PHONY : src/atn/ArrayPredictionContext.o
3581+
3582+# target to build an object file
3583+src/atn/ArrayPredictionContext.cpp.o:
3584+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/ArrayPredictionContext.cpp.o
3585+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/ArrayPredictionContext.cpp.o
3586+.PHONY : src/atn/ArrayPredictionContext.cpp.o
3587+
3588+src/atn/ArrayPredictionContext.i: src/atn/ArrayPredictionContext.cpp.i
3589+.PHONY : src/atn/ArrayPredictionContext.i
3590+
3591+# target to preprocess a source file
3592+src/atn/ArrayPredictionContext.cpp.i:
3593+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/ArrayPredictionContext.cpp.i
3594+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/ArrayPredictionContext.cpp.i
3595+.PHONY : src/atn/ArrayPredictionContext.cpp.i
3596+
3597+src/atn/ArrayPredictionContext.s: src/atn/ArrayPredictionContext.cpp.s
3598+.PHONY : src/atn/ArrayPredictionContext.s
3599+
3600+# target to generate assembly for a file
3601+src/atn/ArrayPredictionContext.cpp.s:
3602+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/ArrayPredictionContext.cpp.s
3603+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/ArrayPredictionContext.cpp.s
3604+.PHONY : src/atn/ArrayPredictionContext.cpp.s
3605+
3606+src/atn/AtomTransition.o: src/atn/AtomTransition.cpp.o
3607+.PHONY : src/atn/AtomTransition.o
3608+
3609+# target to build an object file
3610+src/atn/AtomTransition.cpp.o:
3611+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/AtomTransition.cpp.o
3612+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/AtomTransition.cpp.o
3613+.PHONY : src/atn/AtomTransition.cpp.o
3614+
3615+src/atn/AtomTransition.i: src/atn/AtomTransition.cpp.i
3616+.PHONY : src/atn/AtomTransition.i
3617+
3618+# target to preprocess a source file
3619+src/atn/AtomTransition.cpp.i:
3620+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/AtomTransition.cpp.i
3621+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/AtomTransition.cpp.i
3622+.PHONY : src/atn/AtomTransition.cpp.i
3623+
3624+src/atn/AtomTransition.s: src/atn/AtomTransition.cpp.s
3625+.PHONY : src/atn/AtomTransition.s
3626+
3627+# target to generate assembly for a file
3628+src/atn/AtomTransition.cpp.s:
3629+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/AtomTransition.cpp.s
3630+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/AtomTransition.cpp.s
3631+.PHONY : src/atn/AtomTransition.cpp.s
3632+
3633+src/atn/ContextSensitivityInfo.o: src/atn/ContextSensitivityInfo.cpp.o
3634+.PHONY : src/atn/ContextSensitivityInfo.o
3635+
3636+# target to build an object file
3637+src/atn/ContextSensitivityInfo.cpp.o:
3638+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/ContextSensitivityInfo.cpp.o
3639+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/ContextSensitivityInfo.cpp.o
3640+.PHONY : src/atn/ContextSensitivityInfo.cpp.o
3641+
3642+src/atn/ContextSensitivityInfo.i: src/atn/ContextSensitivityInfo.cpp.i
3643+.PHONY : src/atn/ContextSensitivityInfo.i
3644+
3645+# target to preprocess a source file
3646+src/atn/ContextSensitivityInfo.cpp.i:
3647+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/ContextSensitivityInfo.cpp.i
3648+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/ContextSensitivityInfo.cpp.i
3649+.PHONY : src/atn/ContextSensitivityInfo.cpp.i
3650+
3651+src/atn/ContextSensitivityInfo.s: src/atn/ContextSensitivityInfo.cpp.s
3652+.PHONY : src/atn/ContextSensitivityInfo.s
3653+
3654+# target to generate assembly for a file
3655+src/atn/ContextSensitivityInfo.cpp.s:
3656+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/ContextSensitivityInfo.cpp.s
3657+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/ContextSensitivityInfo.cpp.s
3658+.PHONY : src/atn/ContextSensitivityInfo.cpp.s
3659+
3660+src/atn/DecisionEventInfo.o: src/atn/DecisionEventInfo.cpp.o
3661+.PHONY : src/atn/DecisionEventInfo.o
3662+
3663+# target to build an object file
3664+src/atn/DecisionEventInfo.cpp.o:
3665+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/DecisionEventInfo.cpp.o
3666+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/DecisionEventInfo.cpp.o
3667+.PHONY : src/atn/DecisionEventInfo.cpp.o
3668+
3669+src/atn/DecisionEventInfo.i: src/atn/DecisionEventInfo.cpp.i
3670+.PHONY : src/atn/DecisionEventInfo.i
3671+
3672+# target to preprocess a source file
3673+src/atn/DecisionEventInfo.cpp.i:
3674+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/DecisionEventInfo.cpp.i
3675+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/DecisionEventInfo.cpp.i
3676+.PHONY : src/atn/DecisionEventInfo.cpp.i
3677+
3678+src/atn/DecisionEventInfo.s: src/atn/DecisionEventInfo.cpp.s
3679+.PHONY : src/atn/DecisionEventInfo.s
3680+
3681+# target to generate assembly for a file
3682+src/atn/DecisionEventInfo.cpp.s:
3683+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/DecisionEventInfo.cpp.s
3684+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/DecisionEventInfo.cpp.s
3685+.PHONY : src/atn/DecisionEventInfo.cpp.s
3686+
3687+src/atn/DecisionInfo.o: src/atn/DecisionInfo.cpp.o
3688+.PHONY : src/atn/DecisionInfo.o
3689+
3690+# target to build an object file
3691+src/atn/DecisionInfo.cpp.o:
3692+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/DecisionInfo.cpp.o
3693+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/DecisionInfo.cpp.o
3694+.PHONY : src/atn/DecisionInfo.cpp.o
3695+
3696+src/atn/DecisionInfo.i: src/atn/DecisionInfo.cpp.i
3697+.PHONY : src/atn/DecisionInfo.i
3698+
3699+# target to preprocess a source file
3700+src/atn/DecisionInfo.cpp.i:
3701+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/DecisionInfo.cpp.i
3702+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/DecisionInfo.cpp.i
3703+.PHONY : src/atn/DecisionInfo.cpp.i
3704+
3705+src/atn/DecisionInfo.s: src/atn/DecisionInfo.cpp.s
3706+.PHONY : src/atn/DecisionInfo.s
3707+
3708+# target to generate assembly for a file
3709+src/atn/DecisionInfo.cpp.s:
3710+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/DecisionInfo.cpp.s
3711+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/DecisionInfo.cpp.s
3712+.PHONY : src/atn/DecisionInfo.cpp.s
3713+
3714+src/atn/DecisionState.o: src/atn/DecisionState.cpp.o
3715+.PHONY : src/atn/DecisionState.o
3716+
3717+# target to build an object file
3718+src/atn/DecisionState.cpp.o:
3719+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/DecisionState.cpp.o
3720+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/DecisionState.cpp.o
3721+.PHONY : src/atn/DecisionState.cpp.o
3722+
3723+src/atn/DecisionState.i: src/atn/DecisionState.cpp.i
3724+.PHONY : src/atn/DecisionState.i
3725+
3726+# target to preprocess a source file
3727+src/atn/DecisionState.cpp.i:
3728+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/DecisionState.cpp.i
3729+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/DecisionState.cpp.i
3730+.PHONY : src/atn/DecisionState.cpp.i
3731+
3732+src/atn/DecisionState.s: src/atn/DecisionState.cpp.s
3733+.PHONY : src/atn/DecisionState.s
3734+
3735+# target to generate assembly for a file
3736+src/atn/DecisionState.cpp.s:
3737+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/DecisionState.cpp.s
3738+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/DecisionState.cpp.s
3739+.PHONY : src/atn/DecisionState.cpp.s
3740+
3741+src/atn/EpsilonTransition.o: src/atn/EpsilonTransition.cpp.o
3742+.PHONY : src/atn/EpsilonTransition.o
3743+
3744+# target to build an object file
3745+src/atn/EpsilonTransition.cpp.o:
3746+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/EpsilonTransition.cpp.o
3747+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/EpsilonTransition.cpp.o
3748+.PHONY : src/atn/EpsilonTransition.cpp.o
3749+
3750+src/atn/EpsilonTransition.i: src/atn/EpsilonTransition.cpp.i
3751+.PHONY : src/atn/EpsilonTransition.i
3752+
3753+# target to preprocess a source file
3754+src/atn/EpsilonTransition.cpp.i:
3755+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/EpsilonTransition.cpp.i
3756+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/EpsilonTransition.cpp.i
3757+.PHONY : src/atn/EpsilonTransition.cpp.i
3758+
3759+src/atn/EpsilonTransition.s: src/atn/EpsilonTransition.cpp.s
3760+.PHONY : src/atn/EpsilonTransition.s
3761+
3762+# target to generate assembly for a file
3763+src/atn/EpsilonTransition.cpp.s:
3764+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/EpsilonTransition.cpp.s
3765+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/EpsilonTransition.cpp.s
3766+.PHONY : src/atn/EpsilonTransition.cpp.s
3767+
3768+src/atn/ErrorInfo.o: src/atn/ErrorInfo.cpp.o
3769+.PHONY : src/atn/ErrorInfo.o
3770+
3771+# target to build an object file
3772+src/atn/ErrorInfo.cpp.o:
3773+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/ErrorInfo.cpp.o
3774+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/ErrorInfo.cpp.o
3775+.PHONY : src/atn/ErrorInfo.cpp.o
3776+
3777+src/atn/ErrorInfo.i: src/atn/ErrorInfo.cpp.i
3778+.PHONY : src/atn/ErrorInfo.i
3779+
3780+# target to preprocess a source file
3781+src/atn/ErrorInfo.cpp.i:
3782+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/ErrorInfo.cpp.i
3783+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/ErrorInfo.cpp.i
3784+.PHONY : src/atn/ErrorInfo.cpp.i
3785+
3786+src/atn/ErrorInfo.s: src/atn/ErrorInfo.cpp.s
3787+.PHONY : src/atn/ErrorInfo.s
3788+
3789+# target to generate assembly for a file
3790+src/atn/ErrorInfo.cpp.s:
3791+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/ErrorInfo.cpp.s
3792+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/ErrorInfo.cpp.s
3793+.PHONY : src/atn/ErrorInfo.cpp.s
3794+
3795+src/atn/LL1Analyzer.o: src/atn/LL1Analyzer.cpp.o
3796+.PHONY : src/atn/LL1Analyzer.o
3797+
3798+# target to build an object file
3799+src/atn/LL1Analyzer.cpp.o:
3800+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/LL1Analyzer.cpp.o
3801+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/LL1Analyzer.cpp.o
3802+.PHONY : src/atn/LL1Analyzer.cpp.o
3803+
3804+src/atn/LL1Analyzer.i: src/atn/LL1Analyzer.cpp.i
3805+.PHONY : src/atn/LL1Analyzer.i
3806+
3807+# target to preprocess a source file
3808+src/atn/LL1Analyzer.cpp.i:
3809+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/LL1Analyzer.cpp.i
3810+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/LL1Analyzer.cpp.i
3811+.PHONY : src/atn/LL1Analyzer.cpp.i
3812+
3813+src/atn/LL1Analyzer.s: src/atn/LL1Analyzer.cpp.s
3814+.PHONY : src/atn/LL1Analyzer.s
3815+
3816+# target to generate assembly for a file
3817+src/atn/LL1Analyzer.cpp.s:
3818+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/LL1Analyzer.cpp.s
3819+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/LL1Analyzer.cpp.s
3820+.PHONY : src/atn/LL1Analyzer.cpp.s
3821+
3822+src/atn/LexerATNConfig.o: src/atn/LexerATNConfig.cpp.o
3823+.PHONY : src/atn/LexerATNConfig.o
3824+
3825+# target to build an object file
3826+src/atn/LexerATNConfig.cpp.o:
3827+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/LexerATNConfig.cpp.o
3828+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/LexerATNConfig.cpp.o
3829+.PHONY : src/atn/LexerATNConfig.cpp.o
3830+
3831+src/atn/LexerATNConfig.i: src/atn/LexerATNConfig.cpp.i
3832+.PHONY : src/atn/LexerATNConfig.i
3833+
3834+# target to preprocess a source file
3835+src/atn/LexerATNConfig.cpp.i:
3836+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/LexerATNConfig.cpp.i
3837+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/LexerATNConfig.cpp.i
3838+.PHONY : src/atn/LexerATNConfig.cpp.i
3839+
3840+src/atn/LexerATNConfig.s: src/atn/LexerATNConfig.cpp.s
3841+.PHONY : src/atn/LexerATNConfig.s
3842+
3843+# target to generate assembly for a file
3844+src/atn/LexerATNConfig.cpp.s:
3845+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/LexerATNConfig.cpp.s
3846+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/LexerATNConfig.cpp.s
3847+.PHONY : src/atn/LexerATNConfig.cpp.s
3848+
3849+src/atn/LexerATNSimulator.o: src/atn/LexerATNSimulator.cpp.o
3850+.PHONY : src/atn/LexerATNSimulator.o
3851+
3852+# target to build an object file
3853+src/atn/LexerATNSimulator.cpp.o:
3854+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/LexerATNSimulator.cpp.o
3855+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/LexerATNSimulator.cpp.o
3856+.PHONY : src/atn/LexerATNSimulator.cpp.o
3857+
3858+src/atn/LexerATNSimulator.i: src/atn/LexerATNSimulator.cpp.i
3859+.PHONY : src/atn/LexerATNSimulator.i
3860+
3861+# target to preprocess a source file
3862+src/atn/LexerATNSimulator.cpp.i:
3863+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/LexerATNSimulator.cpp.i
3864+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/LexerATNSimulator.cpp.i
3865+.PHONY : src/atn/LexerATNSimulator.cpp.i
3866+
3867+src/atn/LexerATNSimulator.s: src/atn/LexerATNSimulator.cpp.s
3868+.PHONY : src/atn/LexerATNSimulator.s
3869+
3870+# target to generate assembly for a file
3871+src/atn/LexerATNSimulator.cpp.s:
3872+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/LexerATNSimulator.cpp.s
3873+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/LexerATNSimulator.cpp.s
3874+.PHONY : src/atn/LexerATNSimulator.cpp.s
3875+
3876+src/atn/LexerAction.o: src/atn/LexerAction.cpp.o
3877+.PHONY : src/atn/LexerAction.o
3878+
3879+# target to build an object file
3880+src/atn/LexerAction.cpp.o:
3881+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/LexerAction.cpp.o
3882+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/LexerAction.cpp.o
3883+.PHONY : src/atn/LexerAction.cpp.o
3884+
3885+src/atn/LexerAction.i: src/atn/LexerAction.cpp.i
3886+.PHONY : src/atn/LexerAction.i
3887+
3888+# target to preprocess a source file
3889+src/atn/LexerAction.cpp.i:
3890+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/LexerAction.cpp.i
3891+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/LexerAction.cpp.i
3892+.PHONY : src/atn/LexerAction.cpp.i
3893+
3894+src/atn/LexerAction.s: src/atn/LexerAction.cpp.s
3895+.PHONY : src/atn/LexerAction.s
3896+
3897+# target to generate assembly for a file
3898+src/atn/LexerAction.cpp.s:
3899+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/LexerAction.cpp.s
3900+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/LexerAction.cpp.s
3901+.PHONY : src/atn/LexerAction.cpp.s
3902+
3903+src/atn/LexerActionExecutor.o: src/atn/LexerActionExecutor.cpp.o
3904+.PHONY : src/atn/LexerActionExecutor.o
3905+
3906+# target to build an object file
3907+src/atn/LexerActionExecutor.cpp.o:
3908+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/LexerActionExecutor.cpp.o
3909+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/LexerActionExecutor.cpp.o
3910+.PHONY : src/atn/LexerActionExecutor.cpp.o
3911+
3912+src/atn/LexerActionExecutor.i: src/atn/LexerActionExecutor.cpp.i
3913+.PHONY : src/atn/LexerActionExecutor.i
3914+
3915+# target to preprocess a source file
3916+src/atn/LexerActionExecutor.cpp.i:
3917+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/LexerActionExecutor.cpp.i
3918+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/LexerActionExecutor.cpp.i
3919+.PHONY : src/atn/LexerActionExecutor.cpp.i
3920+
3921+src/atn/LexerActionExecutor.s: src/atn/LexerActionExecutor.cpp.s
3922+.PHONY : src/atn/LexerActionExecutor.s
3923+
3924+# target to generate assembly for a file
3925+src/atn/LexerActionExecutor.cpp.s:
3926+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/LexerActionExecutor.cpp.s
3927+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/LexerActionExecutor.cpp.s
3928+.PHONY : src/atn/LexerActionExecutor.cpp.s
3929+
3930+src/atn/LexerChannelAction.o: src/atn/LexerChannelAction.cpp.o
3931+.PHONY : src/atn/LexerChannelAction.o
3932+
3933+# target to build an object file
3934+src/atn/LexerChannelAction.cpp.o:
3935+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/LexerChannelAction.cpp.o
3936+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/LexerChannelAction.cpp.o
3937+.PHONY : src/atn/LexerChannelAction.cpp.o
3938+
3939+src/atn/LexerChannelAction.i: src/atn/LexerChannelAction.cpp.i
3940+.PHONY : src/atn/LexerChannelAction.i
3941+
3942+# target to preprocess a source file
3943+src/atn/LexerChannelAction.cpp.i:
3944+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/LexerChannelAction.cpp.i
3945+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/LexerChannelAction.cpp.i
3946+.PHONY : src/atn/LexerChannelAction.cpp.i
3947+
3948+src/atn/LexerChannelAction.s: src/atn/LexerChannelAction.cpp.s
3949+.PHONY : src/atn/LexerChannelAction.s
3950+
3951+# target to generate assembly for a file
3952+src/atn/LexerChannelAction.cpp.s:
3953+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/LexerChannelAction.cpp.s
3954+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/LexerChannelAction.cpp.s
3955+.PHONY : src/atn/LexerChannelAction.cpp.s
3956+
3957+src/atn/LexerCustomAction.o: src/atn/LexerCustomAction.cpp.o
3958+.PHONY : src/atn/LexerCustomAction.o
3959+
3960+# target to build an object file
3961+src/atn/LexerCustomAction.cpp.o:
3962+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/LexerCustomAction.cpp.o
3963+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/LexerCustomAction.cpp.o
3964+.PHONY : src/atn/LexerCustomAction.cpp.o
3965+
3966+src/atn/LexerCustomAction.i: src/atn/LexerCustomAction.cpp.i
3967+.PHONY : src/atn/LexerCustomAction.i
3968+
3969+# target to preprocess a source file
3970+src/atn/LexerCustomAction.cpp.i:
3971+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/LexerCustomAction.cpp.i
3972+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/LexerCustomAction.cpp.i
3973+.PHONY : src/atn/LexerCustomAction.cpp.i
3974+
3975+src/atn/LexerCustomAction.s: src/atn/LexerCustomAction.cpp.s
3976+.PHONY : src/atn/LexerCustomAction.s
3977+
3978+# target to generate assembly for a file
3979+src/atn/LexerCustomAction.cpp.s:
3980+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/LexerCustomAction.cpp.s
3981+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/LexerCustomAction.cpp.s
3982+.PHONY : src/atn/LexerCustomAction.cpp.s
3983+
3984+src/atn/LexerIndexedCustomAction.o: src/atn/LexerIndexedCustomAction.cpp.o
3985+.PHONY : src/atn/LexerIndexedCustomAction.o
3986+
3987+# target to build an object file
3988+src/atn/LexerIndexedCustomAction.cpp.o:
3989+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/LexerIndexedCustomAction.cpp.o
3990+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/LexerIndexedCustomAction.cpp.o
3991+.PHONY : src/atn/LexerIndexedCustomAction.cpp.o
3992+
3993+src/atn/LexerIndexedCustomAction.i: src/atn/LexerIndexedCustomAction.cpp.i
3994+.PHONY : src/atn/LexerIndexedCustomAction.i
3995+
3996+# target to preprocess a source file
3997+src/atn/LexerIndexedCustomAction.cpp.i:
3998+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/LexerIndexedCustomAction.cpp.i
3999+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/LexerIndexedCustomAction.cpp.i
4000+.PHONY : src/atn/LexerIndexedCustomAction.cpp.i
4001+
4002+src/atn/LexerIndexedCustomAction.s: src/atn/LexerIndexedCustomAction.cpp.s
4003+.PHONY : src/atn/LexerIndexedCustomAction.s
4004+
4005+# target to generate assembly for a file
4006+src/atn/LexerIndexedCustomAction.cpp.s:
4007+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/LexerIndexedCustomAction.cpp.s
4008+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/LexerIndexedCustomAction.cpp.s
4009+.PHONY : src/atn/LexerIndexedCustomAction.cpp.s
4010+
4011+src/atn/LexerModeAction.o: src/atn/LexerModeAction.cpp.o
4012+.PHONY : src/atn/LexerModeAction.o
4013+
4014+# target to build an object file
4015+src/atn/LexerModeAction.cpp.o:
4016+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/LexerModeAction.cpp.o
4017+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/LexerModeAction.cpp.o
4018+.PHONY : src/atn/LexerModeAction.cpp.o
4019+
4020+src/atn/LexerModeAction.i: src/atn/LexerModeAction.cpp.i
4021+.PHONY : src/atn/LexerModeAction.i
4022+
4023+# target to preprocess a source file
4024+src/atn/LexerModeAction.cpp.i:
4025+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/LexerModeAction.cpp.i
4026+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/LexerModeAction.cpp.i
4027+.PHONY : src/atn/LexerModeAction.cpp.i
4028+
4029+src/atn/LexerModeAction.s: src/atn/LexerModeAction.cpp.s
4030+.PHONY : src/atn/LexerModeAction.s
4031+
4032+# target to generate assembly for a file
4033+src/atn/LexerModeAction.cpp.s:
4034+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/LexerModeAction.cpp.s
4035+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/LexerModeAction.cpp.s
4036+.PHONY : src/atn/LexerModeAction.cpp.s
4037+
4038+src/atn/LexerMoreAction.o: src/atn/LexerMoreAction.cpp.o
4039+.PHONY : src/atn/LexerMoreAction.o
4040+
4041+# target to build an object file
4042+src/atn/LexerMoreAction.cpp.o:
4043+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/LexerMoreAction.cpp.o
4044+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/LexerMoreAction.cpp.o
4045+.PHONY : src/atn/LexerMoreAction.cpp.o
4046+
4047+src/atn/LexerMoreAction.i: src/atn/LexerMoreAction.cpp.i
4048+.PHONY : src/atn/LexerMoreAction.i
4049+
4050+# target to preprocess a source file
4051+src/atn/LexerMoreAction.cpp.i:
4052+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/LexerMoreAction.cpp.i
4053+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/LexerMoreAction.cpp.i
4054+.PHONY : src/atn/LexerMoreAction.cpp.i
4055+
4056+src/atn/LexerMoreAction.s: src/atn/LexerMoreAction.cpp.s
4057+.PHONY : src/atn/LexerMoreAction.s
4058+
4059+# target to generate assembly for a file
4060+src/atn/LexerMoreAction.cpp.s:
4061+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/LexerMoreAction.cpp.s
4062+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/LexerMoreAction.cpp.s
4063+.PHONY : src/atn/LexerMoreAction.cpp.s
4064+
4065+src/atn/LexerPopModeAction.o: src/atn/LexerPopModeAction.cpp.o
4066+.PHONY : src/atn/LexerPopModeAction.o
4067+
4068+# target to build an object file
4069+src/atn/LexerPopModeAction.cpp.o:
4070+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/LexerPopModeAction.cpp.o
4071+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/LexerPopModeAction.cpp.o
4072+.PHONY : src/atn/LexerPopModeAction.cpp.o
4073+
4074+src/atn/LexerPopModeAction.i: src/atn/LexerPopModeAction.cpp.i
4075+.PHONY : src/atn/LexerPopModeAction.i
4076+
4077+# target to preprocess a source file
4078+src/atn/LexerPopModeAction.cpp.i:
4079+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/LexerPopModeAction.cpp.i
4080+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/LexerPopModeAction.cpp.i
4081+.PHONY : src/atn/LexerPopModeAction.cpp.i
4082+
4083+src/atn/LexerPopModeAction.s: src/atn/LexerPopModeAction.cpp.s
4084+.PHONY : src/atn/LexerPopModeAction.s
4085+
4086+# target to generate assembly for a file
4087+src/atn/LexerPopModeAction.cpp.s:
4088+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/LexerPopModeAction.cpp.s
4089+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/LexerPopModeAction.cpp.s
4090+.PHONY : src/atn/LexerPopModeAction.cpp.s
4091+
4092+src/atn/LexerPushModeAction.o: src/atn/LexerPushModeAction.cpp.o
4093+.PHONY : src/atn/LexerPushModeAction.o
4094+
4095+# target to build an object file
4096+src/atn/LexerPushModeAction.cpp.o:
4097+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/LexerPushModeAction.cpp.o
4098+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/LexerPushModeAction.cpp.o
4099+.PHONY : src/atn/LexerPushModeAction.cpp.o
4100+
4101+src/atn/LexerPushModeAction.i: src/atn/LexerPushModeAction.cpp.i
4102+.PHONY : src/atn/LexerPushModeAction.i
4103+
4104+# target to preprocess a source file
4105+src/atn/LexerPushModeAction.cpp.i:
4106+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/LexerPushModeAction.cpp.i
4107+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/LexerPushModeAction.cpp.i
4108+.PHONY : src/atn/LexerPushModeAction.cpp.i
4109+
4110+src/atn/LexerPushModeAction.s: src/atn/LexerPushModeAction.cpp.s
4111+.PHONY : src/atn/LexerPushModeAction.s
4112+
4113+# target to generate assembly for a file
4114+src/atn/LexerPushModeAction.cpp.s:
4115+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/LexerPushModeAction.cpp.s
4116+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/LexerPushModeAction.cpp.s
4117+.PHONY : src/atn/LexerPushModeAction.cpp.s
4118+
4119+src/atn/LexerSkipAction.o: src/atn/LexerSkipAction.cpp.o
4120+.PHONY : src/atn/LexerSkipAction.o
4121+
4122+# target to build an object file
4123+src/atn/LexerSkipAction.cpp.o:
4124+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/LexerSkipAction.cpp.o
4125+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/LexerSkipAction.cpp.o
4126+.PHONY : src/atn/LexerSkipAction.cpp.o
4127+
4128+src/atn/LexerSkipAction.i: src/atn/LexerSkipAction.cpp.i
4129+.PHONY : src/atn/LexerSkipAction.i
4130+
4131+# target to preprocess a source file
4132+src/atn/LexerSkipAction.cpp.i:
4133+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/LexerSkipAction.cpp.i
4134+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/LexerSkipAction.cpp.i
4135+.PHONY : src/atn/LexerSkipAction.cpp.i
4136+
4137+src/atn/LexerSkipAction.s: src/atn/LexerSkipAction.cpp.s
4138+.PHONY : src/atn/LexerSkipAction.s
4139+
4140+# target to generate assembly for a file
4141+src/atn/LexerSkipAction.cpp.s:
4142+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/LexerSkipAction.cpp.s
4143+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/LexerSkipAction.cpp.s
4144+.PHONY : src/atn/LexerSkipAction.cpp.s
4145+
4146+src/atn/LexerTypeAction.o: src/atn/LexerTypeAction.cpp.o
4147+.PHONY : src/atn/LexerTypeAction.o
4148+
4149+# target to build an object file
4150+src/atn/LexerTypeAction.cpp.o:
4151+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/LexerTypeAction.cpp.o
4152+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/LexerTypeAction.cpp.o
4153+.PHONY : src/atn/LexerTypeAction.cpp.o
4154+
4155+src/atn/LexerTypeAction.i: src/atn/LexerTypeAction.cpp.i
4156+.PHONY : src/atn/LexerTypeAction.i
4157+
4158+# target to preprocess a source file
4159+src/atn/LexerTypeAction.cpp.i:
4160+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/LexerTypeAction.cpp.i
4161+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/LexerTypeAction.cpp.i
4162+.PHONY : src/atn/LexerTypeAction.cpp.i
4163+
4164+src/atn/LexerTypeAction.s: src/atn/LexerTypeAction.cpp.s
4165+.PHONY : src/atn/LexerTypeAction.s
4166+
4167+# target to generate assembly for a file
4168+src/atn/LexerTypeAction.cpp.s:
4169+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/LexerTypeAction.cpp.s
4170+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/LexerTypeAction.cpp.s
4171+.PHONY : src/atn/LexerTypeAction.cpp.s
4172+
4173+src/atn/LookaheadEventInfo.o: src/atn/LookaheadEventInfo.cpp.o
4174+.PHONY : src/atn/LookaheadEventInfo.o
4175+
4176+# target to build an object file
4177+src/atn/LookaheadEventInfo.cpp.o:
4178+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/LookaheadEventInfo.cpp.o
4179+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/LookaheadEventInfo.cpp.o
4180+.PHONY : src/atn/LookaheadEventInfo.cpp.o
4181+
4182+src/atn/LookaheadEventInfo.i: src/atn/LookaheadEventInfo.cpp.i
4183+.PHONY : src/atn/LookaheadEventInfo.i
4184+
4185+# target to preprocess a source file
4186+src/atn/LookaheadEventInfo.cpp.i:
4187+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/LookaheadEventInfo.cpp.i
4188+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/LookaheadEventInfo.cpp.i
4189+.PHONY : src/atn/LookaheadEventInfo.cpp.i
4190+
4191+src/atn/LookaheadEventInfo.s: src/atn/LookaheadEventInfo.cpp.s
4192+.PHONY : src/atn/LookaheadEventInfo.s
4193+
4194+# target to generate assembly for a file
4195+src/atn/LookaheadEventInfo.cpp.s:
4196+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/LookaheadEventInfo.cpp.s
4197+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/LookaheadEventInfo.cpp.s
4198+.PHONY : src/atn/LookaheadEventInfo.cpp.s
4199+
4200+src/atn/NotSetTransition.o: src/atn/NotSetTransition.cpp.o
4201+.PHONY : src/atn/NotSetTransition.o
4202+
4203+# target to build an object file
4204+src/atn/NotSetTransition.cpp.o:
4205+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/NotSetTransition.cpp.o
4206+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/NotSetTransition.cpp.o
4207+.PHONY : src/atn/NotSetTransition.cpp.o
4208+
4209+src/atn/NotSetTransition.i: src/atn/NotSetTransition.cpp.i
4210+.PHONY : src/atn/NotSetTransition.i
4211+
4212+# target to preprocess a source file
4213+src/atn/NotSetTransition.cpp.i:
4214+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/NotSetTransition.cpp.i
4215+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/NotSetTransition.cpp.i
4216+.PHONY : src/atn/NotSetTransition.cpp.i
4217+
4218+src/atn/NotSetTransition.s: src/atn/NotSetTransition.cpp.s
4219+.PHONY : src/atn/NotSetTransition.s
4220+
4221+# target to generate assembly for a file
4222+src/atn/NotSetTransition.cpp.s:
4223+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/NotSetTransition.cpp.s
4224+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/NotSetTransition.cpp.s
4225+.PHONY : src/atn/NotSetTransition.cpp.s
4226+
4227+src/atn/OrderedATNConfigSet.o: src/atn/OrderedATNConfigSet.cpp.o
4228+.PHONY : src/atn/OrderedATNConfigSet.o
4229+
4230+# target to build an object file
4231+src/atn/OrderedATNConfigSet.cpp.o:
4232+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/OrderedATNConfigSet.cpp.o
4233+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/OrderedATNConfigSet.cpp.o
4234+.PHONY : src/atn/OrderedATNConfigSet.cpp.o
4235+
4236+src/atn/OrderedATNConfigSet.i: src/atn/OrderedATNConfigSet.cpp.i
4237+.PHONY : src/atn/OrderedATNConfigSet.i
4238+
4239+# target to preprocess a source file
4240+src/atn/OrderedATNConfigSet.cpp.i:
4241+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/OrderedATNConfigSet.cpp.i
4242+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/OrderedATNConfigSet.cpp.i
4243+.PHONY : src/atn/OrderedATNConfigSet.cpp.i
4244+
4245+src/atn/OrderedATNConfigSet.s: src/atn/OrderedATNConfigSet.cpp.s
4246+.PHONY : src/atn/OrderedATNConfigSet.s
4247+
4248+# target to generate assembly for a file
4249+src/atn/OrderedATNConfigSet.cpp.s:
4250+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/OrderedATNConfigSet.cpp.s
4251+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/OrderedATNConfigSet.cpp.s
4252+.PHONY : src/atn/OrderedATNConfigSet.cpp.s
4253+
4254+src/atn/ParseInfo.o: src/atn/ParseInfo.cpp.o
4255+.PHONY : src/atn/ParseInfo.o
4256+
4257+# target to build an object file
4258+src/atn/ParseInfo.cpp.o:
4259+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/ParseInfo.cpp.o
4260+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/ParseInfo.cpp.o
4261+.PHONY : src/atn/ParseInfo.cpp.o
4262+
4263+src/atn/ParseInfo.i: src/atn/ParseInfo.cpp.i
4264+.PHONY : src/atn/ParseInfo.i
4265+
4266+# target to preprocess a source file
4267+src/atn/ParseInfo.cpp.i:
4268+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/ParseInfo.cpp.i
4269+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/ParseInfo.cpp.i
4270+.PHONY : src/atn/ParseInfo.cpp.i
4271+
4272+src/atn/ParseInfo.s: src/atn/ParseInfo.cpp.s
4273+.PHONY : src/atn/ParseInfo.s
4274+
4275+# target to generate assembly for a file
4276+src/atn/ParseInfo.cpp.s:
4277+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/ParseInfo.cpp.s
4278+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/ParseInfo.cpp.s
4279+.PHONY : src/atn/ParseInfo.cpp.s
4280+
4281+src/atn/ParserATNSimulator.o: src/atn/ParserATNSimulator.cpp.o
4282+.PHONY : src/atn/ParserATNSimulator.o
4283+
4284+# target to build an object file
4285+src/atn/ParserATNSimulator.cpp.o:
4286+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/ParserATNSimulator.cpp.o
4287+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/ParserATNSimulator.cpp.o
4288+.PHONY : src/atn/ParserATNSimulator.cpp.o
4289+
4290+src/atn/ParserATNSimulator.i: src/atn/ParserATNSimulator.cpp.i
4291+.PHONY : src/atn/ParserATNSimulator.i
4292+
4293+# target to preprocess a source file
4294+src/atn/ParserATNSimulator.cpp.i:
4295+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/ParserATNSimulator.cpp.i
4296+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/ParserATNSimulator.cpp.i
4297+.PHONY : src/atn/ParserATNSimulator.cpp.i
4298+
4299+src/atn/ParserATNSimulator.s: src/atn/ParserATNSimulator.cpp.s
4300+.PHONY : src/atn/ParserATNSimulator.s
4301+
4302+# target to generate assembly for a file
4303+src/atn/ParserATNSimulator.cpp.s:
4304+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/ParserATNSimulator.cpp.s
4305+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/ParserATNSimulator.cpp.s
4306+.PHONY : src/atn/ParserATNSimulator.cpp.s
4307+
4308+src/atn/PrecedencePredicateTransition.o: src/atn/PrecedencePredicateTransition.cpp.o
4309+.PHONY : src/atn/PrecedencePredicateTransition.o
4310+
4311+# target to build an object file
4312+src/atn/PrecedencePredicateTransition.cpp.o:
4313+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/PrecedencePredicateTransition.cpp.o
4314+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/PrecedencePredicateTransition.cpp.o
4315+.PHONY : src/atn/PrecedencePredicateTransition.cpp.o
4316+
4317+src/atn/PrecedencePredicateTransition.i: src/atn/PrecedencePredicateTransition.cpp.i
4318+.PHONY : src/atn/PrecedencePredicateTransition.i
4319+
4320+# target to preprocess a source file
4321+src/atn/PrecedencePredicateTransition.cpp.i:
4322+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/PrecedencePredicateTransition.cpp.i
4323+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/PrecedencePredicateTransition.cpp.i
4324+.PHONY : src/atn/PrecedencePredicateTransition.cpp.i
4325+
4326+src/atn/PrecedencePredicateTransition.s: src/atn/PrecedencePredicateTransition.cpp.s
4327+.PHONY : src/atn/PrecedencePredicateTransition.s
4328+
4329+# target to generate assembly for a file
4330+src/atn/PrecedencePredicateTransition.cpp.s:
4331+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/PrecedencePredicateTransition.cpp.s
4332+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/PrecedencePredicateTransition.cpp.s
4333+.PHONY : src/atn/PrecedencePredicateTransition.cpp.s
4334+
4335+src/atn/PredicateEvalInfo.o: src/atn/PredicateEvalInfo.cpp.o
4336+.PHONY : src/atn/PredicateEvalInfo.o
4337+
4338+# target to build an object file
4339+src/atn/PredicateEvalInfo.cpp.o:
4340+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/PredicateEvalInfo.cpp.o
4341+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/PredicateEvalInfo.cpp.o
4342+.PHONY : src/atn/PredicateEvalInfo.cpp.o
4343+
4344+src/atn/PredicateEvalInfo.i: src/atn/PredicateEvalInfo.cpp.i
4345+.PHONY : src/atn/PredicateEvalInfo.i
4346+
4347+# target to preprocess a source file
4348+src/atn/PredicateEvalInfo.cpp.i:
4349+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/PredicateEvalInfo.cpp.i
4350+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/PredicateEvalInfo.cpp.i
4351+.PHONY : src/atn/PredicateEvalInfo.cpp.i
4352+
4353+src/atn/PredicateEvalInfo.s: src/atn/PredicateEvalInfo.cpp.s
4354+.PHONY : src/atn/PredicateEvalInfo.s
4355+
4356+# target to generate assembly for a file
4357+src/atn/PredicateEvalInfo.cpp.s:
4358+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/PredicateEvalInfo.cpp.s
4359+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/PredicateEvalInfo.cpp.s
4360+.PHONY : src/atn/PredicateEvalInfo.cpp.s
4361+
4362+src/atn/PredicateTransition.o: src/atn/PredicateTransition.cpp.o
4363+.PHONY : src/atn/PredicateTransition.o
4364+
4365+# target to build an object file
4366+src/atn/PredicateTransition.cpp.o:
4367+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/PredicateTransition.cpp.o
4368+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/PredicateTransition.cpp.o
4369+.PHONY : src/atn/PredicateTransition.cpp.o
4370+
4371+src/atn/PredicateTransition.i: src/atn/PredicateTransition.cpp.i
4372+.PHONY : src/atn/PredicateTransition.i
4373+
4374+# target to preprocess a source file
4375+src/atn/PredicateTransition.cpp.i:
4376+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/PredicateTransition.cpp.i
4377+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/PredicateTransition.cpp.i
4378+.PHONY : src/atn/PredicateTransition.cpp.i
4379+
4380+src/atn/PredicateTransition.s: src/atn/PredicateTransition.cpp.s
4381+.PHONY : src/atn/PredicateTransition.s
4382+
4383+# target to generate assembly for a file
4384+src/atn/PredicateTransition.cpp.s:
4385+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/PredicateTransition.cpp.s
4386+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/PredicateTransition.cpp.s
4387+.PHONY : src/atn/PredicateTransition.cpp.s
4388+
4389+src/atn/PredictionContext.o: src/atn/PredictionContext.cpp.o
4390+.PHONY : src/atn/PredictionContext.o
4391+
4392+# target to build an object file
4393+src/atn/PredictionContext.cpp.o:
4394+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/PredictionContext.cpp.o
4395+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/PredictionContext.cpp.o
4396+.PHONY : src/atn/PredictionContext.cpp.o
4397+
4398+src/atn/PredictionContext.i: src/atn/PredictionContext.cpp.i
4399+.PHONY : src/atn/PredictionContext.i
4400+
4401+# target to preprocess a source file
4402+src/atn/PredictionContext.cpp.i:
4403+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/PredictionContext.cpp.i
4404+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/PredictionContext.cpp.i
4405+.PHONY : src/atn/PredictionContext.cpp.i
4406+
4407+src/atn/PredictionContext.s: src/atn/PredictionContext.cpp.s
4408+.PHONY : src/atn/PredictionContext.s
4409+
4410+# target to generate assembly for a file
4411+src/atn/PredictionContext.cpp.s:
4412+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/PredictionContext.cpp.s
4413+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/PredictionContext.cpp.s
4414+.PHONY : src/atn/PredictionContext.cpp.s
4415+
4416+src/atn/PredictionContextCache.o: src/atn/PredictionContextCache.cpp.o
4417+.PHONY : src/atn/PredictionContextCache.o
4418+
4419+# target to build an object file
4420+src/atn/PredictionContextCache.cpp.o:
4421+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/PredictionContextCache.cpp.o
4422+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/PredictionContextCache.cpp.o
4423+.PHONY : src/atn/PredictionContextCache.cpp.o
4424+
4425+src/atn/PredictionContextCache.i: src/atn/PredictionContextCache.cpp.i
4426+.PHONY : src/atn/PredictionContextCache.i
4427+
4428+# target to preprocess a source file
4429+src/atn/PredictionContextCache.cpp.i:
4430+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/PredictionContextCache.cpp.i
4431+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/PredictionContextCache.cpp.i
4432+.PHONY : src/atn/PredictionContextCache.cpp.i
4433+
4434+src/atn/PredictionContextCache.s: src/atn/PredictionContextCache.cpp.s
4435+.PHONY : src/atn/PredictionContextCache.s
4436+
4437+# target to generate assembly for a file
4438+src/atn/PredictionContextCache.cpp.s:
4439+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/PredictionContextCache.cpp.s
4440+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/PredictionContextCache.cpp.s
4441+.PHONY : src/atn/PredictionContextCache.cpp.s
4442+
4443+src/atn/PredictionContextMergeCache.o: src/atn/PredictionContextMergeCache.cpp.o
4444+.PHONY : src/atn/PredictionContextMergeCache.o
4445+
4446+# target to build an object file
4447+src/atn/PredictionContextMergeCache.cpp.o:
4448+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/PredictionContextMergeCache.cpp.o
4449+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/PredictionContextMergeCache.cpp.o
4450+.PHONY : src/atn/PredictionContextMergeCache.cpp.o
4451+
4452+src/atn/PredictionContextMergeCache.i: src/atn/PredictionContextMergeCache.cpp.i
4453+.PHONY : src/atn/PredictionContextMergeCache.i
4454+
4455+# target to preprocess a source file
4456+src/atn/PredictionContextMergeCache.cpp.i:
4457+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/PredictionContextMergeCache.cpp.i
4458+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/PredictionContextMergeCache.cpp.i
4459+.PHONY : src/atn/PredictionContextMergeCache.cpp.i
4460+
4461+src/atn/PredictionContextMergeCache.s: src/atn/PredictionContextMergeCache.cpp.s
4462+.PHONY : src/atn/PredictionContextMergeCache.s
4463+
4464+# target to generate assembly for a file
4465+src/atn/PredictionContextMergeCache.cpp.s:
4466+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/PredictionContextMergeCache.cpp.s
4467+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/PredictionContextMergeCache.cpp.s
4468+.PHONY : src/atn/PredictionContextMergeCache.cpp.s
4469+
4470+src/atn/PredictionMode.o: src/atn/PredictionMode.cpp.o
4471+.PHONY : src/atn/PredictionMode.o
4472+
4473+# target to build an object file
4474+src/atn/PredictionMode.cpp.o:
4475+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/PredictionMode.cpp.o
4476+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/PredictionMode.cpp.o
4477+.PHONY : src/atn/PredictionMode.cpp.o
4478+
4479+src/atn/PredictionMode.i: src/atn/PredictionMode.cpp.i
4480+.PHONY : src/atn/PredictionMode.i
4481+
4482+# target to preprocess a source file
4483+src/atn/PredictionMode.cpp.i:
4484+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/PredictionMode.cpp.i
4485+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/PredictionMode.cpp.i
4486+.PHONY : src/atn/PredictionMode.cpp.i
4487+
4488+src/atn/PredictionMode.s: src/atn/PredictionMode.cpp.s
4489+.PHONY : src/atn/PredictionMode.s
4490+
4491+# target to generate assembly for a file
4492+src/atn/PredictionMode.cpp.s:
4493+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/PredictionMode.cpp.s
4494+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/PredictionMode.cpp.s
4495+.PHONY : src/atn/PredictionMode.cpp.s
4496+
4497+src/atn/ProfilingATNSimulator.o: src/atn/ProfilingATNSimulator.cpp.o
4498+.PHONY : src/atn/ProfilingATNSimulator.o
4499+
4500+# target to build an object file
4501+src/atn/ProfilingATNSimulator.cpp.o:
4502+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/ProfilingATNSimulator.cpp.o
4503+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/ProfilingATNSimulator.cpp.o
4504+.PHONY : src/atn/ProfilingATNSimulator.cpp.o
4505+
4506+src/atn/ProfilingATNSimulator.i: src/atn/ProfilingATNSimulator.cpp.i
4507+.PHONY : src/atn/ProfilingATNSimulator.i
4508+
4509+# target to preprocess a source file
4510+src/atn/ProfilingATNSimulator.cpp.i:
4511+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/ProfilingATNSimulator.cpp.i
4512+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/ProfilingATNSimulator.cpp.i
4513+.PHONY : src/atn/ProfilingATNSimulator.cpp.i
4514+
4515+src/atn/ProfilingATNSimulator.s: src/atn/ProfilingATNSimulator.cpp.s
4516+.PHONY : src/atn/ProfilingATNSimulator.s
4517+
4518+# target to generate assembly for a file
4519+src/atn/ProfilingATNSimulator.cpp.s:
4520+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/ProfilingATNSimulator.cpp.s
4521+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/ProfilingATNSimulator.cpp.s
4522+.PHONY : src/atn/ProfilingATNSimulator.cpp.s
4523+
4524+src/atn/RangeTransition.o: src/atn/RangeTransition.cpp.o
4525+.PHONY : src/atn/RangeTransition.o
4526+
4527+# target to build an object file
4528+src/atn/RangeTransition.cpp.o:
4529+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/RangeTransition.cpp.o
4530+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/RangeTransition.cpp.o
4531+.PHONY : src/atn/RangeTransition.cpp.o
4532+
4533+src/atn/RangeTransition.i: src/atn/RangeTransition.cpp.i
4534+.PHONY : src/atn/RangeTransition.i
4535+
4536+# target to preprocess a source file
4537+src/atn/RangeTransition.cpp.i:
4538+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/RangeTransition.cpp.i
4539+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/RangeTransition.cpp.i
4540+.PHONY : src/atn/RangeTransition.cpp.i
4541+
4542+src/atn/RangeTransition.s: src/atn/RangeTransition.cpp.s
4543+.PHONY : src/atn/RangeTransition.s
4544+
4545+# target to generate assembly for a file
4546+src/atn/RangeTransition.cpp.s:
4547+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/RangeTransition.cpp.s
4548+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/RangeTransition.cpp.s
4549+.PHONY : src/atn/RangeTransition.cpp.s
4550+
4551+src/atn/RuleTransition.o: src/atn/RuleTransition.cpp.o
4552+.PHONY : src/atn/RuleTransition.o
4553+
4554+# target to build an object file
4555+src/atn/RuleTransition.cpp.o:
4556+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/RuleTransition.cpp.o
4557+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/RuleTransition.cpp.o
4558+.PHONY : src/atn/RuleTransition.cpp.o
4559+
4560+src/atn/RuleTransition.i: src/atn/RuleTransition.cpp.i
4561+.PHONY : src/atn/RuleTransition.i
4562+
4563+# target to preprocess a source file
4564+src/atn/RuleTransition.cpp.i:
4565+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/RuleTransition.cpp.i
4566+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/RuleTransition.cpp.i
4567+.PHONY : src/atn/RuleTransition.cpp.i
4568+
4569+src/atn/RuleTransition.s: src/atn/RuleTransition.cpp.s
4570+.PHONY : src/atn/RuleTransition.s
4571+
4572+# target to generate assembly for a file
4573+src/atn/RuleTransition.cpp.s:
4574+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/RuleTransition.cpp.s
4575+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/RuleTransition.cpp.s
4576+.PHONY : src/atn/RuleTransition.cpp.s
4577+
4578+src/atn/SemanticContext.o: src/atn/SemanticContext.cpp.o
4579+.PHONY : src/atn/SemanticContext.o
4580+
4581+# target to build an object file
4582+src/atn/SemanticContext.cpp.o:
4583+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/SemanticContext.cpp.o
4584+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/SemanticContext.cpp.o
4585+.PHONY : src/atn/SemanticContext.cpp.o
4586+
4587+src/atn/SemanticContext.i: src/atn/SemanticContext.cpp.i
4588+.PHONY : src/atn/SemanticContext.i
4589+
4590+# target to preprocess a source file
4591+src/atn/SemanticContext.cpp.i:
4592+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/SemanticContext.cpp.i
4593+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/SemanticContext.cpp.i
4594+.PHONY : src/atn/SemanticContext.cpp.i
4595+
4596+src/atn/SemanticContext.s: src/atn/SemanticContext.cpp.s
4597+.PHONY : src/atn/SemanticContext.s
4598+
4599+# target to generate assembly for a file
4600+src/atn/SemanticContext.cpp.s:
4601+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/SemanticContext.cpp.s
4602+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/SemanticContext.cpp.s
4603+.PHONY : src/atn/SemanticContext.cpp.s
4604+
4605+src/atn/SetTransition.o: src/atn/SetTransition.cpp.o
4606+.PHONY : src/atn/SetTransition.o
4607+
4608+# target to build an object file
4609+src/atn/SetTransition.cpp.o:
4610+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/SetTransition.cpp.o
4611+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/SetTransition.cpp.o
4612+.PHONY : src/atn/SetTransition.cpp.o
4613+
4614+src/atn/SetTransition.i: src/atn/SetTransition.cpp.i
4615+.PHONY : src/atn/SetTransition.i
4616+
4617+# target to preprocess a source file
4618+src/atn/SetTransition.cpp.i:
4619+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/SetTransition.cpp.i
4620+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/SetTransition.cpp.i
4621+.PHONY : src/atn/SetTransition.cpp.i
4622+
4623+src/atn/SetTransition.s: src/atn/SetTransition.cpp.s
4624+.PHONY : src/atn/SetTransition.s
4625+
4626+# target to generate assembly for a file
4627+src/atn/SetTransition.cpp.s:
4628+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/SetTransition.cpp.s
4629+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/SetTransition.cpp.s
4630+.PHONY : src/atn/SetTransition.cpp.s
4631+
4632+src/atn/SingletonPredictionContext.o: src/atn/SingletonPredictionContext.cpp.o
4633+.PHONY : src/atn/SingletonPredictionContext.o
4634+
4635+# target to build an object file
4636+src/atn/SingletonPredictionContext.cpp.o:
4637+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/SingletonPredictionContext.cpp.o
4638+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/SingletonPredictionContext.cpp.o
4639+.PHONY : src/atn/SingletonPredictionContext.cpp.o
4640+
4641+src/atn/SingletonPredictionContext.i: src/atn/SingletonPredictionContext.cpp.i
4642+.PHONY : src/atn/SingletonPredictionContext.i
4643+
4644+# target to preprocess a source file
4645+src/atn/SingletonPredictionContext.cpp.i:
4646+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/SingletonPredictionContext.cpp.i
4647+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/SingletonPredictionContext.cpp.i
4648+.PHONY : src/atn/SingletonPredictionContext.cpp.i
4649+
4650+src/atn/SingletonPredictionContext.s: src/atn/SingletonPredictionContext.cpp.s
4651+.PHONY : src/atn/SingletonPredictionContext.s
4652+
4653+# target to generate assembly for a file
4654+src/atn/SingletonPredictionContext.cpp.s:
4655+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/SingletonPredictionContext.cpp.s
4656+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/SingletonPredictionContext.cpp.s
4657+.PHONY : src/atn/SingletonPredictionContext.cpp.s
4658+
4659+src/atn/StarLoopbackState.o: src/atn/StarLoopbackState.cpp.o
4660+.PHONY : src/atn/StarLoopbackState.o
4661+
4662+# target to build an object file
4663+src/atn/StarLoopbackState.cpp.o:
4664+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/StarLoopbackState.cpp.o
4665+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/StarLoopbackState.cpp.o
4666+.PHONY : src/atn/StarLoopbackState.cpp.o
4667+
4668+src/atn/StarLoopbackState.i: src/atn/StarLoopbackState.cpp.i
4669+.PHONY : src/atn/StarLoopbackState.i
4670+
4671+# target to preprocess a source file
4672+src/atn/StarLoopbackState.cpp.i:
4673+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/StarLoopbackState.cpp.i
4674+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/StarLoopbackState.cpp.i
4675+.PHONY : src/atn/StarLoopbackState.cpp.i
4676+
4677+src/atn/StarLoopbackState.s: src/atn/StarLoopbackState.cpp.s
4678+.PHONY : src/atn/StarLoopbackState.s
4679+
4680+# target to generate assembly for a file
4681+src/atn/StarLoopbackState.cpp.s:
4682+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/StarLoopbackState.cpp.s
4683+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/StarLoopbackState.cpp.s
4684+.PHONY : src/atn/StarLoopbackState.cpp.s
4685+
4686+src/atn/Transition.o: src/atn/Transition.cpp.o
4687+.PHONY : src/atn/Transition.o
4688+
4689+# target to build an object file
4690+src/atn/Transition.cpp.o:
4691+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/Transition.cpp.o
4692+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/Transition.cpp.o
4693+.PHONY : src/atn/Transition.cpp.o
4694+
4695+src/atn/Transition.i: src/atn/Transition.cpp.i
4696+.PHONY : src/atn/Transition.i
4697+
4698+# target to preprocess a source file
4699+src/atn/Transition.cpp.i:
4700+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/Transition.cpp.i
4701+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/Transition.cpp.i
4702+.PHONY : src/atn/Transition.cpp.i
4703+
4704+src/atn/Transition.s: src/atn/Transition.cpp.s
4705+.PHONY : src/atn/Transition.s
4706+
4707+# target to generate assembly for a file
4708+src/atn/Transition.cpp.s:
4709+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/Transition.cpp.s
4710+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/Transition.cpp.s
4711+.PHONY : src/atn/Transition.cpp.s
4712+
4713+src/atn/TransitionType.o: src/atn/TransitionType.cpp.o
4714+.PHONY : src/atn/TransitionType.o
4715+
4716+# target to build an object file
4717+src/atn/TransitionType.cpp.o:
4718+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/TransitionType.cpp.o
4719+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/TransitionType.cpp.o
4720+.PHONY : src/atn/TransitionType.cpp.o
4721+
4722+src/atn/TransitionType.i: src/atn/TransitionType.cpp.i
4723+.PHONY : src/atn/TransitionType.i
4724+
4725+# target to preprocess a source file
4726+src/atn/TransitionType.cpp.i:
4727+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/TransitionType.cpp.i
4728+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/TransitionType.cpp.i
4729+.PHONY : src/atn/TransitionType.cpp.i
4730+
4731+src/atn/TransitionType.s: src/atn/TransitionType.cpp.s
4732+.PHONY : src/atn/TransitionType.s
4733+
4734+# target to generate assembly for a file
4735+src/atn/TransitionType.cpp.s:
4736+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/TransitionType.cpp.s
4737+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/TransitionType.cpp.s
4738+.PHONY : src/atn/TransitionType.cpp.s
4739+
4740+src/atn/WildcardTransition.o: src/atn/WildcardTransition.cpp.o
4741+.PHONY : src/atn/WildcardTransition.o
4742+
4743+# target to build an object file
4744+src/atn/WildcardTransition.cpp.o:
4745+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/WildcardTransition.cpp.o
4746+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/WildcardTransition.cpp.o
4747+.PHONY : src/atn/WildcardTransition.cpp.o
4748+
4749+src/atn/WildcardTransition.i: src/atn/WildcardTransition.cpp.i
4750+.PHONY : src/atn/WildcardTransition.i
4751+
4752+# target to preprocess a source file
4753+src/atn/WildcardTransition.cpp.i:
4754+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/WildcardTransition.cpp.i
4755+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/WildcardTransition.cpp.i
4756+.PHONY : src/atn/WildcardTransition.cpp.i
4757+
4758+src/atn/WildcardTransition.s: src/atn/WildcardTransition.cpp.s
4759+.PHONY : src/atn/WildcardTransition.s
4760+
4761+# target to generate assembly for a file
4762+src/atn/WildcardTransition.cpp.s:
4763+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/atn/WildcardTransition.cpp.s
4764+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/atn/WildcardTransition.cpp.s
4765+.PHONY : src/atn/WildcardTransition.cpp.s
4766+
4767+src/dfa/DFA.o: src/dfa/DFA.cpp.o
4768+.PHONY : src/dfa/DFA.o
4769+
4770+# target to build an object file
4771+src/dfa/DFA.cpp.o:
4772+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/dfa/DFA.cpp.o
4773+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/dfa/DFA.cpp.o
4774+.PHONY : src/dfa/DFA.cpp.o
4775+
4776+src/dfa/DFA.i: src/dfa/DFA.cpp.i
4777+.PHONY : src/dfa/DFA.i
4778+
4779+# target to preprocess a source file
4780+src/dfa/DFA.cpp.i:
4781+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/dfa/DFA.cpp.i
4782+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/dfa/DFA.cpp.i
4783+.PHONY : src/dfa/DFA.cpp.i
4784+
4785+src/dfa/DFA.s: src/dfa/DFA.cpp.s
4786+.PHONY : src/dfa/DFA.s
4787+
4788+# target to generate assembly for a file
4789+src/dfa/DFA.cpp.s:
4790+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/dfa/DFA.cpp.s
4791+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/dfa/DFA.cpp.s
4792+.PHONY : src/dfa/DFA.cpp.s
4793+
4794+src/dfa/DFASerializer.o: src/dfa/DFASerializer.cpp.o
4795+.PHONY : src/dfa/DFASerializer.o
4796+
4797+# target to build an object file
4798+src/dfa/DFASerializer.cpp.o:
4799+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/dfa/DFASerializer.cpp.o
4800+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/dfa/DFASerializer.cpp.o
4801+.PHONY : src/dfa/DFASerializer.cpp.o
4802+
4803+src/dfa/DFASerializer.i: src/dfa/DFASerializer.cpp.i
4804+.PHONY : src/dfa/DFASerializer.i
4805+
4806+# target to preprocess a source file
4807+src/dfa/DFASerializer.cpp.i:
4808+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/dfa/DFASerializer.cpp.i
4809+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/dfa/DFASerializer.cpp.i
4810+.PHONY : src/dfa/DFASerializer.cpp.i
4811+
4812+src/dfa/DFASerializer.s: src/dfa/DFASerializer.cpp.s
4813+.PHONY : src/dfa/DFASerializer.s
4814+
4815+# target to generate assembly for a file
4816+src/dfa/DFASerializer.cpp.s:
4817+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/dfa/DFASerializer.cpp.s
4818+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/dfa/DFASerializer.cpp.s
4819+.PHONY : src/dfa/DFASerializer.cpp.s
4820+
4821+src/dfa/DFAState.o: src/dfa/DFAState.cpp.o
4822+.PHONY : src/dfa/DFAState.o
4823+
4824+# target to build an object file
4825+src/dfa/DFAState.cpp.o:
4826+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/dfa/DFAState.cpp.o
4827+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/dfa/DFAState.cpp.o
4828+.PHONY : src/dfa/DFAState.cpp.o
4829+
4830+src/dfa/DFAState.i: src/dfa/DFAState.cpp.i
4831+.PHONY : src/dfa/DFAState.i
4832+
4833+# target to preprocess a source file
4834+src/dfa/DFAState.cpp.i:
4835+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/dfa/DFAState.cpp.i
4836+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/dfa/DFAState.cpp.i
4837+.PHONY : src/dfa/DFAState.cpp.i
4838+
4839+src/dfa/DFAState.s: src/dfa/DFAState.cpp.s
4840+.PHONY : src/dfa/DFAState.s
4841+
4842+# target to generate assembly for a file
4843+src/dfa/DFAState.cpp.s:
4844+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/dfa/DFAState.cpp.s
4845+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/dfa/DFAState.cpp.s
4846+.PHONY : src/dfa/DFAState.cpp.s
4847+
4848+src/dfa/LexerDFASerializer.o: src/dfa/LexerDFASerializer.cpp.o
4849+.PHONY : src/dfa/LexerDFASerializer.o
4850+
4851+# target to build an object file
4852+src/dfa/LexerDFASerializer.cpp.o:
4853+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/dfa/LexerDFASerializer.cpp.o
4854+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/dfa/LexerDFASerializer.cpp.o
4855+.PHONY : src/dfa/LexerDFASerializer.cpp.o
4856+
4857+src/dfa/LexerDFASerializer.i: src/dfa/LexerDFASerializer.cpp.i
4858+.PHONY : src/dfa/LexerDFASerializer.i
4859+
4860+# target to preprocess a source file
4861+src/dfa/LexerDFASerializer.cpp.i:
4862+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/dfa/LexerDFASerializer.cpp.i
4863+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/dfa/LexerDFASerializer.cpp.i
4864+.PHONY : src/dfa/LexerDFASerializer.cpp.i
4865+
4866+src/dfa/LexerDFASerializer.s: src/dfa/LexerDFASerializer.cpp.s
4867+.PHONY : src/dfa/LexerDFASerializer.s
4868+
4869+# target to generate assembly for a file
4870+src/dfa/LexerDFASerializer.cpp.s:
4871+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/dfa/LexerDFASerializer.cpp.s
4872+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/dfa/LexerDFASerializer.cpp.s
4873+.PHONY : src/dfa/LexerDFASerializer.cpp.s
4874+
4875+src/internal/Synchronization.o: src/internal/Synchronization.cpp.o
4876+.PHONY : src/internal/Synchronization.o
4877+
4878+# target to build an object file
4879+src/internal/Synchronization.cpp.o:
4880+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/internal/Synchronization.cpp.o
4881+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/internal/Synchronization.cpp.o
4882+.PHONY : src/internal/Synchronization.cpp.o
4883+
4884+src/internal/Synchronization.i: src/internal/Synchronization.cpp.i
4885+.PHONY : src/internal/Synchronization.i
4886+
4887+# target to preprocess a source file
4888+src/internal/Synchronization.cpp.i:
4889+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/internal/Synchronization.cpp.i
4890+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/internal/Synchronization.cpp.i
4891+.PHONY : src/internal/Synchronization.cpp.i
4892+
4893+src/internal/Synchronization.s: src/internal/Synchronization.cpp.s
4894+.PHONY : src/internal/Synchronization.s
4895+
4896+# target to generate assembly for a file
4897+src/internal/Synchronization.cpp.s:
4898+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/internal/Synchronization.cpp.s
4899+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/internal/Synchronization.cpp.s
4900+.PHONY : src/internal/Synchronization.cpp.s
4901+
4902+src/misc/InterpreterDataReader.o: src/misc/InterpreterDataReader.cpp.o
4903+.PHONY : src/misc/InterpreterDataReader.o
4904+
4905+# target to build an object file
4906+src/misc/InterpreterDataReader.cpp.o:
4907+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/misc/InterpreterDataReader.cpp.o
4908+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/misc/InterpreterDataReader.cpp.o
4909+.PHONY : src/misc/InterpreterDataReader.cpp.o
4910+
4911+src/misc/InterpreterDataReader.i: src/misc/InterpreterDataReader.cpp.i
4912+.PHONY : src/misc/InterpreterDataReader.i
4913+
4914+# target to preprocess a source file
4915+src/misc/InterpreterDataReader.cpp.i:
4916+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/misc/InterpreterDataReader.cpp.i
4917+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/misc/InterpreterDataReader.cpp.i
4918+.PHONY : src/misc/InterpreterDataReader.cpp.i
4919+
4920+src/misc/InterpreterDataReader.s: src/misc/InterpreterDataReader.cpp.s
4921+.PHONY : src/misc/InterpreterDataReader.s
4922+
4923+# target to generate assembly for a file
4924+src/misc/InterpreterDataReader.cpp.s:
4925+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/misc/InterpreterDataReader.cpp.s
4926+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/misc/InterpreterDataReader.cpp.s
4927+.PHONY : src/misc/InterpreterDataReader.cpp.s
4928+
4929+src/misc/Interval.o: src/misc/Interval.cpp.o
4930+.PHONY : src/misc/Interval.o
4931+
4932+# target to build an object file
4933+src/misc/Interval.cpp.o:
4934+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/misc/Interval.cpp.o
4935+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/misc/Interval.cpp.o
4936+.PHONY : src/misc/Interval.cpp.o
4937+
4938+src/misc/Interval.i: src/misc/Interval.cpp.i
4939+.PHONY : src/misc/Interval.i
4940+
4941+# target to preprocess a source file
4942+src/misc/Interval.cpp.i:
4943+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/misc/Interval.cpp.i
4944+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/misc/Interval.cpp.i
4945+.PHONY : src/misc/Interval.cpp.i
4946+
4947+src/misc/Interval.s: src/misc/Interval.cpp.s
4948+.PHONY : src/misc/Interval.s
4949+
4950+# target to generate assembly for a file
4951+src/misc/Interval.cpp.s:
4952+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/misc/Interval.cpp.s
4953+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/misc/Interval.cpp.s
4954+.PHONY : src/misc/Interval.cpp.s
4955+
4956+src/misc/IntervalSet.o: src/misc/IntervalSet.cpp.o
4957+.PHONY : src/misc/IntervalSet.o
4958+
4959+# target to build an object file
4960+src/misc/IntervalSet.cpp.o:
4961+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/misc/IntervalSet.cpp.o
4962+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/misc/IntervalSet.cpp.o
4963+.PHONY : src/misc/IntervalSet.cpp.o
4964+
4965+src/misc/IntervalSet.i: src/misc/IntervalSet.cpp.i
4966+.PHONY : src/misc/IntervalSet.i
4967+
4968+# target to preprocess a source file
4969+src/misc/IntervalSet.cpp.i:
4970+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/misc/IntervalSet.cpp.i
4971+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/misc/IntervalSet.cpp.i
4972+.PHONY : src/misc/IntervalSet.cpp.i
4973+
4974+src/misc/IntervalSet.s: src/misc/IntervalSet.cpp.s
4975+.PHONY : src/misc/IntervalSet.s
4976+
4977+# target to generate assembly for a file
4978+src/misc/IntervalSet.cpp.s:
4979+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/misc/IntervalSet.cpp.s
4980+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/misc/IntervalSet.cpp.s
4981+.PHONY : src/misc/IntervalSet.cpp.s
4982+
4983+src/misc/MurmurHash.o: src/misc/MurmurHash.cpp.o
4984+.PHONY : src/misc/MurmurHash.o
4985+
4986+# target to build an object file
4987+src/misc/MurmurHash.cpp.o:
4988+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/misc/MurmurHash.cpp.o
4989+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/misc/MurmurHash.cpp.o
4990+.PHONY : src/misc/MurmurHash.cpp.o
4991+
4992+src/misc/MurmurHash.i: src/misc/MurmurHash.cpp.i
4993+.PHONY : src/misc/MurmurHash.i
4994+
4995+# target to preprocess a source file
4996+src/misc/MurmurHash.cpp.i:
4997+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_shared.dir/build.make runtime/CMakeFiles/antlr4_shared.dir/src/misc/MurmurHash.cpp.i
4998+ cd /Users/parrt/antlr/code/antlr4/runtime/Cpp && $(MAKE) $(MAKESILENT) -f runtime/CMakeFiles/antlr4_static.dir/build.make runtime/CMakeFiles/antlr4_static.dir/src/misc/MurmurHash.cpp.i
4999+.PHONY : src/misc/MurmurHash.cpp.i
5000+
The diff has been truncated for viewing.

Subscribers

People subscribed via source and target branches

to all changes: