From e71726209967e1a3d48c962f05ee62bff7aa5639 Mon Sep 17 00:00:00 2001 From: "ajeffrey@roblox.com" Date: Fri, 25 Feb 2022 15:00:41 -0600 Subject: [PATCH] WIP --- Makefile | 3833 ++--------------------------------- prototyping/Luau/OpSem.agda | 10 +- 2 files changed, 174 insertions(+), 3669 deletions(-) diff --git a/Makefile b/Makefile index b8243479..d90dad87 100644 --- a/Makefile +++ b/Makefile @@ -1,3693 +1,190 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.22 - -# Default target executed when no arguments are given to make. -default_target: all -.PHONY : default_target - -# Allow only one "make -f Makefile2" at a time, but pass parallelism. -.NOTPARALLEL: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. +# This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details .SUFFIXES: +MAKEFLAGS+=-r -j8 +COMMA=, -# Disable VCS-based implicit rules. -% : %,v +config=debug -# Disable VCS-based implicit rules. -% : RCS/% +BUILD=build/$(config) -# Disable VCS-based implicit rules. -% : RCS/%,v +AST_SOURCES=$(wildcard Ast/src/*.cpp) +AST_OBJECTS=$(AST_SOURCES:%=$(BUILD)/%.o) +AST_TARGET=$(BUILD)/libluauast.a -# Disable VCS-based implicit rules. -% : SCCS/s.% +COMPILER_SOURCES=$(wildcard Compiler/src/*.cpp) +COMPILER_OBJECTS=$(COMPILER_SOURCES:%=$(BUILD)/%.o) +COMPILER_TARGET=$(BUILD)/libluaucompiler.a -# Disable VCS-based implicit rules. -% : s.% +ANALYSIS_SOURCES=$(wildcard Analysis/src/*.cpp) +ANALYSIS_OBJECTS=$(ANALYSIS_SOURCES:%=$(BUILD)/%.o) +ANALYSIS_TARGET=$(BUILD)/libluauanalysis.a -.SUFFIXES: .hpux_make_needs_suffix_list +VM_SOURCES=$(wildcard VM/src/*.cpp) +VM_OBJECTS=$(VM_SOURCES:%=$(BUILD)/%.o) +VM_TARGET=$(BUILD)/libluauvm.a -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s +ISOCLINE_SOURCES=extern/isocline/src/isocline.c +ISOCLINE_OBJECTS=$(ISOCLINE_SOURCES:%=$(BUILD)/%.o) +ISOCLINE_TARGET=$(BUILD)/libisocline.a -#Suppress display of executed commands. -$(VERBOSE).SILENT: +TESTS_SOURCES=$(wildcard tests/*.cpp) CLI/FileUtils.cpp CLI/Profiler.cpp CLI/Coverage.cpp CLI/Repl.cpp +TESTS_OBJECTS=$(TESTS_SOURCES:%=$(BUILD)/%.o) +TESTS_TARGET=$(BUILD)/luau-tests -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force +REPL_CLI_SOURCES=CLI/FileUtils.cpp CLI/Profiler.cpp CLI/Coverage.cpp CLI/Repl.cpp CLI/ReplEntry.cpp +REPL_CLI_OBJECTS=$(REPL_CLI_SOURCES:%=$(BUILD)/%.o) +REPL_CLI_TARGET=$(BUILD)/luau -#============================================================================= -# Set environment variables for the build. +ANALYZE_CLI_SOURCES=CLI/FileUtils.cpp CLI/Analyze.cpp +ANALYZE_CLI_OBJECTS=$(ANALYZE_CLI_SOURCES:%=$(BUILD)/%.o) +ANALYZE_CLI_TARGET=$(BUILD)/luau-analyze -# The shell in which to execute make rules. -SHELL = /bin/sh +FUZZ_SOURCES=$(wildcard fuzz/*.cpp) fuzz/luau.pb.cpp +FUZZ_OBJECTS=$(FUZZ_SOURCES:%=$(BUILD)/%.o) -# The CMake executable. -CMAKE_COMMAND = /usr/local/Cellar/cmake/3.22.2/bin/cmake +TESTS_ARGS= +ifneq ($(flags),) + TESTS_ARGS+=--fflags=$(flags) +endif -# The command to remove a file. -RM = /usr/local/Cellar/cmake/3.22.2/bin/cmake -E rm -f +OBJECTS=$(AST_OBJECTS) $(COMPILER_OBJECTS) $(ANALYSIS_OBJECTS) $(VM_OBJECTS) $(ISOCLINE_OBJECTS) $(TESTS_OBJECTS) $(CLI_OBJECTS) $(FUZZ_OBJECTS) -# Escaping for special characters. -EQUALS = = +# common flags +CXXFLAGS=-g -Wall +LDFLAGS= -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/ajeffrey/github/asajeffrey/luau +# some gcc versions treat var in `if (type var = val)` as unused +# some gcc versions treat variables used in constexpr if blocks as unused +ifeq ($(findstring g++,$(shell $(CXX) --version)),g++) + CXXFLAGS+=-Wno-unused +endif -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/ajeffrey/github/asajeffrey/luau +# enabled in CI; we should be warning free on our main compiler versions but don't guarantee being warning free everywhere +ifneq ($(werror),) + CXXFLAGS+=-Werror +endif -#============================================================================= -# Targets provided globally by CMake. +# configuration-specific flags +ifeq ($(config),release) + CXXFLAGS+=-O2 -DNDEBUG +endif -# Special rule for the target edit_cache -edit_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake cache editor..." - /usr/local/Cellar/cmake/3.22.2/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : edit_cache +ifeq ($(config),coverage) + CXXFLAGS+=-fprofile-instr-generate -fcoverage-mapping + LDFLAGS+=-fprofile-instr-generate +endif -# Special rule for the target edit_cache -edit_cache/fast: edit_cache -.PHONY : edit_cache/fast +ifeq ($(config),sanitize) + CXXFLAGS+=-fsanitize=address -O1 + LDFLAGS+=-fsanitize=address +endif -# Special rule for the target rebuild_cache -rebuild_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." - /usr/local/Cellar/cmake/3.22.2/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : rebuild_cache +ifeq ($(config),analyze) + CXXFLAGS+=--analyze +endif -# Special rule for the target rebuild_cache -rebuild_cache/fast: rebuild_cache -.PHONY : rebuild_cache/fast +ifeq ($(config),fuzz) + CXX=clang++ # our fuzzing infra relies on llvm fuzzer + CXXFLAGS+=-fsanitize=address,fuzzer -Ibuild/libprotobuf-mutator -Ibuild/libprotobuf-mutator/external.protobuf/include -O2 + LDFLAGS+=-fsanitize=address,fuzzer +endif -# The main all target -all: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/ajeffrey/github/asajeffrey/luau/CMakeFiles /Users/ajeffrey/github/asajeffrey/luau//CMakeFiles/progress.marks - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/ajeffrey/github/asajeffrey/luau/CMakeFiles 0 -.PHONY : all +# target-specific flags +$(AST_OBJECTS): CXXFLAGS+=-std=c++17 -IAst/include +$(COMPILER_OBJECTS): CXXFLAGS+=-std=c++17 -ICompiler/include -IAst/include +$(ANALYSIS_OBJECTS): CXXFLAGS+=-std=c++17 -IAst/include -IAnalysis/include +$(VM_OBJECTS): CXXFLAGS+=-std=c++11 -IVM/include +$(ISOCLINE_OBJECTS): CXXFLAGS+=-Wno-unused-function -Iextern/isocline/include +$(TESTS_OBJECTS): CXXFLAGS+=-std=c++17 -IAst/include -ICompiler/include -IAnalysis/include -IVM/include -ICLI -Iextern +$(REPL_CLI_OBJECTS): CXXFLAGS+=-std=c++17 -IAst/include -ICompiler/include -IVM/include -Iextern -Iextern/isocline/include +$(ANALYZE_CLI_OBJECTS): CXXFLAGS+=-std=c++17 -IAst/include -IAnalysis/include -Iextern +$(FUZZ_OBJECTS): CXXFLAGS+=-std=c++17 -IAst/include -ICompiler/include -IAnalysis/include -IVM/include + +$(TESTS_TARGET): LDFLAGS+=-lpthread +$(REPL_CLI_TARGET): LDFLAGS+=-lpthread +fuzz-proto fuzz-prototest: LDFLAGS+=build/libprotobuf-mutator/src/libfuzzer/libprotobuf-mutator-libfuzzer.a build/libprotobuf-mutator/src/libprotobuf-mutator.a build/libprotobuf-mutator/external.protobuf/lib/libprotobuf.a + +# pseudo targets +.PHONY: all test clean coverage format luau-size + +all: $(REPL_CLI_TARGET) $(ANALYZE_CLI_TARGET) $(TESTS_TARGET) + +test: $(TESTS_TARGET) + $(TESTS_TARGET) $(TESTS_ARGS) -# The main clean target clean: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 clean -.PHONY : clean - -# The main clean target -clean/fast: clean -.PHONY : clean/fast - -# Prepare targets for installation. -preinstall: all - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall -.PHONY : preinstall - -# Prepare targets for installation. -preinstall/fast: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall -.PHONY : preinstall/fast - -# clear depends -depend: - $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 -.PHONY : depend - -#============================================================================= -# Target rules for targets named Luau.Ast - -# Build rule for target. -Luau.Ast: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Luau.Ast -.PHONY : Luau.Ast - -# fast build rule for target. -Luau.Ast/fast: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Ast.dir/build.make CMakeFiles/Luau.Ast.dir/build -.PHONY : Luau.Ast/fast - -#============================================================================= -# Target rules for targets named Luau.Compiler - -# Build rule for target. -Luau.Compiler: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Luau.Compiler -.PHONY : Luau.Compiler - -# fast build rule for target. -Luau.Compiler/fast: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Compiler.dir/build.make CMakeFiles/Luau.Compiler.dir/build -.PHONY : Luau.Compiler/fast - -#============================================================================= -# Target rules for targets named Luau.Analysis - -# Build rule for target. -Luau.Analysis: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Luau.Analysis -.PHONY : Luau.Analysis - -# fast build rule for target. -Luau.Analysis/fast: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/build -.PHONY : Luau.Analysis/fast - -#============================================================================= -# Target rules for targets named Luau.VM - -# Build rule for target. -Luau.VM: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Luau.VM -.PHONY : Luau.VM - -# fast build rule for target. -Luau.VM/fast: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/build -.PHONY : Luau.VM/fast - -#============================================================================= -# Target rules for targets named isocline - -# Build rule for target. -isocline: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 isocline -.PHONY : isocline - -# fast build rule for target. -isocline/fast: - $(MAKE) $(MAKESILENT) -f CMakeFiles/isocline.dir/build.make CMakeFiles/isocline.dir/build -.PHONY : isocline/fast - -#============================================================================= -# Target rules for targets named Luau.Repl.CLI - -# Build rule for target. -Luau.Repl.CLI: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Luau.Repl.CLI -.PHONY : Luau.Repl.CLI - -# fast build rule for target. -Luau.Repl.CLI/fast: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Repl.CLI.dir/build.make CMakeFiles/Luau.Repl.CLI.dir/build -.PHONY : Luau.Repl.CLI/fast - -#============================================================================= -# Target rules for targets named Luau.Analyze.CLI - -# Build rule for target. -Luau.Analyze.CLI: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Luau.Analyze.CLI -.PHONY : Luau.Analyze.CLI - -# fast build rule for target. -Luau.Analyze.CLI/fast: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analyze.CLI.dir/build.make CMakeFiles/Luau.Analyze.CLI.dir/build -.PHONY : Luau.Analyze.CLI/fast - -#============================================================================= -# Target rules for targets named Luau.Ast.CLI - -# Build rule for target. -Luau.Ast.CLI: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Luau.Ast.CLI -.PHONY : Luau.Ast.CLI - -# fast build rule for target. -Luau.Ast.CLI/fast: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Ast.CLI.dir/build.make CMakeFiles/Luau.Ast.CLI.dir/build -.PHONY : Luau.Ast.CLI/fast - -#============================================================================= -# Target rules for targets named Luau.UnitTest - -# Build rule for target. -Luau.UnitTest: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Luau.UnitTest -.PHONY : Luau.UnitTest - -# fast build rule for target. -Luau.UnitTest/fast: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/build -.PHONY : Luau.UnitTest/fast - -#============================================================================= -# Target rules for targets named Luau.Conformance - -# Build rule for target. -Luau.Conformance: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Luau.Conformance -.PHONY : Luau.Conformance - -# fast build rule for target. -Luau.Conformance/fast: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Conformance.dir/build.make CMakeFiles/Luau.Conformance.dir/build -.PHONY : Luau.Conformance/fast - -#============================================================================= -# Target rules for targets named Luau.CLI.Test - -# Build rule for target. -Luau.CLI.Test: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Luau.CLI.Test -.PHONY : Luau.CLI.Test - -# fast build rule for target. -Luau.CLI.Test/fast: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.CLI.Test.dir/build.make CMakeFiles/Luau.CLI.Test.dir/build -.PHONY : Luau.CLI.Test/fast - -Analysis/src/AstQuery.o: Analysis/src/AstQuery.cpp.o -.PHONY : Analysis/src/AstQuery.o - -# target to build an object file -Analysis/src/AstQuery.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/AstQuery.cpp.o -.PHONY : Analysis/src/AstQuery.cpp.o - -Analysis/src/AstQuery.i: Analysis/src/AstQuery.cpp.i -.PHONY : Analysis/src/AstQuery.i - -# target to preprocess a source file -Analysis/src/AstQuery.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/AstQuery.cpp.i -.PHONY : Analysis/src/AstQuery.cpp.i - -Analysis/src/AstQuery.s: Analysis/src/AstQuery.cpp.s -.PHONY : Analysis/src/AstQuery.s - -# target to generate assembly for a file -Analysis/src/AstQuery.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/AstQuery.cpp.s -.PHONY : Analysis/src/AstQuery.cpp.s - -Analysis/src/Autocomplete.o: Analysis/src/Autocomplete.cpp.o -.PHONY : Analysis/src/Autocomplete.o - -# target to build an object file -Analysis/src/Autocomplete.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/Autocomplete.cpp.o -.PHONY : Analysis/src/Autocomplete.cpp.o - -Analysis/src/Autocomplete.i: Analysis/src/Autocomplete.cpp.i -.PHONY : Analysis/src/Autocomplete.i - -# target to preprocess a source file -Analysis/src/Autocomplete.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/Autocomplete.cpp.i -.PHONY : Analysis/src/Autocomplete.cpp.i - -Analysis/src/Autocomplete.s: Analysis/src/Autocomplete.cpp.s -.PHONY : Analysis/src/Autocomplete.s - -# target to generate assembly for a file -Analysis/src/Autocomplete.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/Autocomplete.cpp.s -.PHONY : Analysis/src/Autocomplete.cpp.s - -Analysis/src/BuiltinDefinitions.o: Analysis/src/BuiltinDefinitions.cpp.o -.PHONY : Analysis/src/BuiltinDefinitions.o - -# target to build an object file -Analysis/src/BuiltinDefinitions.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/BuiltinDefinitions.cpp.o -.PHONY : Analysis/src/BuiltinDefinitions.cpp.o - -Analysis/src/BuiltinDefinitions.i: Analysis/src/BuiltinDefinitions.cpp.i -.PHONY : Analysis/src/BuiltinDefinitions.i - -# target to preprocess a source file -Analysis/src/BuiltinDefinitions.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/BuiltinDefinitions.cpp.i -.PHONY : Analysis/src/BuiltinDefinitions.cpp.i - -Analysis/src/BuiltinDefinitions.s: Analysis/src/BuiltinDefinitions.cpp.s -.PHONY : Analysis/src/BuiltinDefinitions.s - -# target to generate assembly for a file -Analysis/src/BuiltinDefinitions.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/BuiltinDefinitions.cpp.s -.PHONY : Analysis/src/BuiltinDefinitions.cpp.s - -Analysis/src/Config.o: Analysis/src/Config.cpp.o -.PHONY : Analysis/src/Config.o - -# target to build an object file -Analysis/src/Config.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/Config.cpp.o -.PHONY : Analysis/src/Config.cpp.o - -Analysis/src/Config.i: Analysis/src/Config.cpp.i -.PHONY : Analysis/src/Config.i - -# target to preprocess a source file -Analysis/src/Config.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/Config.cpp.i -.PHONY : Analysis/src/Config.cpp.i - -Analysis/src/Config.s: Analysis/src/Config.cpp.s -.PHONY : Analysis/src/Config.s - -# target to generate assembly for a file -Analysis/src/Config.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/Config.cpp.s -.PHONY : Analysis/src/Config.cpp.s - -Analysis/src/EmbeddedBuiltinDefinitions.o: Analysis/src/EmbeddedBuiltinDefinitions.cpp.o -.PHONY : Analysis/src/EmbeddedBuiltinDefinitions.o - -# target to build an object file -Analysis/src/EmbeddedBuiltinDefinitions.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/EmbeddedBuiltinDefinitions.cpp.o -.PHONY : Analysis/src/EmbeddedBuiltinDefinitions.cpp.o - -Analysis/src/EmbeddedBuiltinDefinitions.i: Analysis/src/EmbeddedBuiltinDefinitions.cpp.i -.PHONY : Analysis/src/EmbeddedBuiltinDefinitions.i - -# target to preprocess a source file -Analysis/src/EmbeddedBuiltinDefinitions.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/EmbeddedBuiltinDefinitions.cpp.i -.PHONY : Analysis/src/EmbeddedBuiltinDefinitions.cpp.i - -Analysis/src/EmbeddedBuiltinDefinitions.s: Analysis/src/EmbeddedBuiltinDefinitions.cpp.s -.PHONY : Analysis/src/EmbeddedBuiltinDefinitions.s - -# target to generate assembly for a file -Analysis/src/EmbeddedBuiltinDefinitions.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/EmbeddedBuiltinDefinitions.cpp.s -.PHONY : Analysis/src/EmbeddedBuiltinDefinitions.cpp.s - -Analysis/src/Error.o: Analysis/src/Error.cpp.o -.PHONY : Analysis/src/Error.o - -# target to build an object file -Analysis/src/Error.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/Error.cpp.o -.PHONY : Analysis/src/Error.cpp.o - -Analysis/src/Error.i: Analysis/src/Error.cpp.i -.PHONY : Analysis/src/Error.i - -# target to preprocess a source file -Analysis/src/Error.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/Error.cpp.i -.PHONY : Analysis/src/Error.cpp.i - -Analysis/src/Error.s: Analysis/src/Error.cpp.s -.PHONY : Analysis/src/Error.s - -# target to generate assembly for a file -Analysis/src/Error.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/Error.cpp.s -.PHONY : Analysis/src/Error.cpp.s - -Analysis/src/Frontend.o: Analysis/src/Frontend.cpp.o -.PHONY : Analysis/src/Frontend.o - -# target to build an object file -Analysis/src/Frontend.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/Frontend.cpp.o -.PHONY : Analysis/src/Frontend.cpp.o - -Analysis/src/Frontend.i: Analysis/src/Frontend.cpp.i -.PHONY : Analysis/src/Frontend.i - -# target to preprocess a source file -Analysis/src/Frontend.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/Frontend.cpp.i -.PHONY : Analysis/src/Frontend.cpp.i - -Analysis/src/Frontend.s: Analysis/src/Frontend.cpp.s -.PHONY : Analysis/src/Frontend.s - -# target to generate assembly for a file -Analysis/src/Frontend.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/Frontend.cpp.s -.PHONY : Analysis/src/Frontend.cpp.s - -Analysis/src/IostreamHelpers.o: Analysis/src/IostreamHelpers.cpp.o -.PHONY : Analysis/src/IostreamHelpers.o - -# target to build an object file -Analysis/src/IostreamHelpers.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/IostreamHelpers.cpp.o -.PHONY : Analysis/src/IostreamHelpers.cpp.o - -Analysis/src/IostreamHelpers.i: Analysis/src/IostreamHelpers.cpp.i -.PHONY : Analysis/src/IostreamHelpers.i - -# target to preprocess a source file -Analysis/src/IostreamHelpers.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/IostreamHelpers.cpp.i -.PHONY : Analysis/src/IostreamHelpers.cpp.i - -Analysis/src/IostreamHelpers.s: Analysis/src/IostreamHelpers.cpp.s -.PHONY : Analysis/src/IostreamHelpers.s - -# target to generate assembly for a file -Analysis/src/IostreamHelpers.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/IostreamHelpers.cpp.s -.PHONY : Analysis/src/IostreamHelpers.cpp.s - -Analysis/src/JsonEncoder.o: Analysis/src/JsonEncoder.cpp.o -.PHONY : Analysis/src/JsonEncoder.o - -# target to build an object file -Analysis/src/JsonEncoder.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/JsonEncoder.cpp.o -.PHONY : Analysis/src/JsonEncoder.cpp.o - -Analysis/src/JsonEncoder.i: Analysis/src/JsonEncoder.cpp.i -.PHONY : Analysis/src/JsonEncoder.i - -# target to preprocess a source file -Analysis/src/JsonEncoder.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/JsonEncoder.cpp.i -.PHONY : Analysis/src/JsonEncoder.cpp.i - -Analysis/src/JsonEncoder.s: Analysis/src/JsonEncoder.cpp.s -.PHONY : Analysis/src/JsonEncoder.s - -# target to generate assembly for a file -Analysis/src/JsonEncoder.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/JsonEncoder.cpp.s -.PHONY : Analysis/src/JsonEncoder.cpp.s - -Analysis/src/LValue.o: Analysis/src/LValue.cpp.o -.PHONY : Analysis/src/LValue.o - -# target to build an object file -Analysis/src/LValue.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/LValue.cpp.o -.PHONY : Analysis/src/LValue.cpp.o - -Analysis/src/LValue.i: Analysis/src/LValue.cpp.i -.PHONY : Analysis/src/LValue.i - -# target to preprocess a source file -Analysis/src/LValue.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/LValue.cpp.i -.PHONY : Analysis/src/LValue.cpp.i - -Analysis/src/LValue.s: Analysis/src/LValue.cpp.s -.PHONY : Analysis/src/LValue.s - -# target to generate assembly for a file -Analysis/src/LValue.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/LValue.cpp.s -.PHONY : Analysis/src/LValue.cpp.s - -Analysis/src/Linter.o: Analysis/src/Linter.cpp.o -.PHONY : Analysis/src/Linter.o - -# target to build an object file -Analysis/src/Linter.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/Linter.cpp.o -.PHONY : Analysis/src/Linter.cpp.o - -Analysis/src/Linter.i: Analysis/src/Linter.cpp.i -.PHONY : Analysis/src/Linter.i - -# target to preprocess a source file -Analysis/src/Linter.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/Linter.cpp.i -.PHONY : Analysis/src/Linter.cpp.i - -Analysis/src/Linter.s: Analysis/src/Linter.cpp.s -.PHONY : Analysis/src/Linter.s - -# target to generate assembly for a file -Analysis/src/Linter.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/Linter.cpp.s -.PHONY : Analysis/src/Linter.cpp.s - -Analysis/src/Module.o: Analysis/src/Module.cpp.o -.PHONY : Analysis/src/Module.o - -# target to build an object file -Analysis/src/Module.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/Module.cpp.o -.PHONY : Analysis/src/Module.cpp.o - -Analysis/src/Module.i: Analysis/src/Module.cpp.i -.PHONY : Analysis/src/Module.i - -# target to preprocess a source file -Analysis/src/Module.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/Module.cpp.i -.PHONY : Analysis/src/Module.cpp.i - -Analysis/src/Module.s: Analysis/src/Module.cpp.s -.PHONY : Analysis/src/Module.s - -# target to generate assembly for a file -Analysis/src/Module.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/Module.cpp.s -.PHONY : Analysis/src/Module.cpp.s - -Analysis/src/Quantify.o: Analysis/src/Quantify.cpp.o -.PHONY : Analysis/src/Quantify.o - -# target to build an object file -Analysis/src/Quantify.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/Quantify.cpp.o -.PHONY : Analysis/src/Quantify.cpp.o - -Analysis/src/Quantify.i: Analysis/src/Quantify.cpp.i -.PHONY : Analysis/src/Quantify.i - -# target to preprocess a source file -Analysis/src/Quantify.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/Quantify.cpp.i -.PHONY : Analysis/src/Quantify.cpp.i - -Analysis/src/Quantify.s: Analysis/src/Quantify.cpp.s -.PHONY : Analysis/src/Quantify.s - -# target to generate assembly for a file -Analysis/src/Quantify.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/Quantify.cpp.s -.PHONY : Analysis/src/Quantify.cpp.s - -Analysis/src/RequireTracer.o: Analysis/src/RequireTracer.cpp.o -.PHONY : Analysis/src/RequireTracer.o - -# target to build an object file -Analysis/src/RequireTracer.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/RequireTracer.cpp.o -.PHONY : Analysis/src/RequireTracer.cpp.o - -Analysis/src/RequireTracer.i: Analysis/src/RequireTracer.cpp.i -.PHONY : Analysis/src/RequireTracer.i - -# target to preprocess a source file -Analysis/src/RequireTracer.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/RequireTracer.cpp.i -.PHONY : Analysis/src/RequireTracer.cpp.i - -Analysis/src/RequireTracer.s: Analysis/src/RequireTracer.cpp.s -.PHONY : Analysis/src/RequireTracer.s - -# target to generate assembly for a file -Analysis/src/RequireTracer.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/RequireTracer.cpp.s -.PHONY : Analysis/src/RequireTracer.cpp.s - -Analysis/src/Scope.o: Analysis/src/Scope.cpp.o -.PHONY : Analysis/src/Scope.o - -# target to build an object file -Analysis/src/Scope.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/Scope.cpp.o -.PHONY : Analysis/src/Scope.cpp.o - -Analysis/src/Scope.i: Analysis/src/Scope.cpp.i -.PHONY : Analysis/src/Scope.i - -# target to preprocess a source file -Analysis/src/Scope.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/Scope.cpp.i -.PHONY : Analysis/src/Scope.cpp.i - -Analysis/src/Scope.s: Analysis/src/Scope.cpp.s -.PHONY : Analysis/src/Scope.s - -# target to generate assembly for a file -Analysis/src/Scope.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/Scope.cpp.s -.PHONY : Analysis/src/Scope.cpp.s - -Analysis/src/Substitution.o: Analysis/src/Substitution.cpp.o -.PHONY : Analysis/src/Substitution.o - -# target to build an object file -Analysis/src/Substitution.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/Substitution.cpp.o -.PHONY : Analysis/src/Substitution.cpp.o - -Analysis/src/Substitution.i: Analysis/src/Substitution.cpp.i -.PHONY : Analysis/src/Substitution.i - -# target to preprocess a source file -Analysis/src/Substitution.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/Substitution.cpp.i -.PHONY : Analysis/src/Substitution.cpp.i - -Analysis/src/Substitution.s: Analysis/src/Substitution.cpp.s -.PHONY : Analysis/src/Substitution.s - -# target to generate assembly for a file -Analysis/src/Substitution.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/Substitution.cpp.s -.PHONY : Analysis/src/Substitution.cpp.s - -Analysis/src/Symbol.o: Analysis/src/Symbol.cpp.o -.PHONY : Analysis/src/Symbol.o - -# target to build an object file -Analysis/src/Symbol.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/Symbol.cpp.o -.PHONY : Analysis/src/Symbol.cpp.o - -Analysis/src/Symbol.i: Analysis/src/Symbol.cpp.i -.PHONY : Analysis/src/Symbol.i - -# target to preprocess a source file -Analysis/src/Symbol.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/Symbol.cpp.i -.PHONY : Analysis/src/Symbol.cpp.i - -Analysis/src/Symbol.s: Analysis/src/Symbol.cpp.s -.PHONY : Analysis/src/Symbol.s - -# target to generate assembly for a file -Analysis/src/Symbol.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/Symbol.cpp.s -.PHONY : Analysis/src/Symbol.cpp.s - -Analysis/src/ToDot.o: Analysis/src/ToDot.cpp.o -.PHONY : Analysis/src/ToDot.o - -# target to build an object file -Analysis/src/ToDot.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/ToDot.cpp.o -.PHONY : Analysis/src/ToDot.cpp.o - -Analysis/src/ToDot.i: Analysis/src/ToDot.cpp.i -.PHONY : Analysis/src/ToDot.i - -# target to preprocess a source file -Analysis/src/ToDot.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/ToDot.cpp.i -.PHONY : Analysis/src/ToDot.cpp.i - -Analysis/src/ToDot.s: Analysis/src/ToDot.cpp.s -.PHONY : Analysis/src/ToDot.s - -# target to generate assembly for a file -Analysis/src/ToDot.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/ToDot.cpp.s -.PHONY : Analysis/src/ToDot.cpp.s - -Analysis/src/ToString.o: Analysis/src/ToString.cpp.o -.PHONY : Analysis/src/ToString.o - -# target to build an object file -Analysis/src/ToString.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/ToString.cpp.o -.PHONY : Analysis/src/ToString.cpp.o - -Analysis/src/ToString.i: Analysis/src/ToString.cpp.i -.PHONY : Analysis/src/ToString.i - -# target to preprocess a source file -Analysis/src/ToString.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/ToString.cpp.i -.PHONY : Analysis/src/ToString.cpp.i - -Analysis/src/ToString.s: Analysis/src/ToString.cpp.s -.PHONY : Analysis/src/ToString.s - -# target to generate assembly for a file -Analysis/src/ToString.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/ToString.cpp.s -.PHONY : Analysis/src/ToString.cpp.s - -Analysis/src/TopoSortStatements.o: Analysis/src/TopoSortStatements.cpp.o -.PHONY : Analysis/src/TopoSortStatements.o - -# target to build an object file -Analysis/src/TopoSortStatements.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/TopoSortStatements.cpp.o -.PHONY : Analysis/src/TopoSortStatements.cpp.o - -Analysis/src/TopoSortStatements.i: Analysis/src/TopoSortStatements.cpp.i -.PHONY : Analysis/src/TopoSortStatements.i - -# target to preprocess a source file -Analysis/src/TopoSortStatements.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/TopoSortStatements.cpp.i -.PHONY : Analysis/src/TopoSortStatements.cpp.i - -Analysis/src/TopoSortStatements.s: Analysis/src/TopoSortStatements.cpp.s -.PHONY : Analysis/src/TopoSortStatements.s - -# target to generate assembly for a file -Analysis/src/TopoSortStatements.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/TopoSortStatements.cpp.s -.PHONY : Analysis/src/TopoSortStatements.cpp.s - -Analysis/src/Transpiler.o: Analysis/src/Transpiler.cpp.o -.PHONY : Analysis/src/Transpiler.o - -# target to build an object file -Analysis/src/Transpiler.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/Transpiler.cpp.o -.PHONY : Analysis/src/Transpiler.cpp.o - -Analysis/src/Transpiler.i: Analysis/src/Transpiler.cpp.i -.PHONY : Analysis/src/Transpiler.i - -# target to preprocess a source file -Analysis/src/Transpiler.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/Transpiler.cpp.i -.PHONY : Analysis/src/Transpiler.cpp.i - -Analysis/src/Transpiler.s: Analysis/src/Transpiler.cpp.s -.PHONY : Analysis/src/Transpiler.s - -# target to generate assembly for a file -Analysis/src/Transpiler.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/Transpiler.cpp.s -.PHONY : Analysis/src/Transpiler.cpp.s - -Analysis/src/TxnLog.o: Analysis/src/TxnLog.cpp.o -.PHONY : Analysis/src/TxnLog.o - -# target to build an object file -Analysis/src/TxnLog.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/TxnLog.cpp.o -.PHONY : Analysis/src/TxnLog.cpp.o - -Analysis/src/TxnLog.i: Analysis/src/TxnLog.cpp.i -.PHONY : Analysis/src/TxnLog.i - -# target to preprocess a source file -Analysis/src/TxnLog.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/TxnLog.cpp.i -.PHONY : Analysis/src/TxnLog.cpp.i - -Analysis/src/TxnLog.s: Analysis/src/TxnLog.cpp.s -.PHONY : Analysis/src/TxnLog.s - -# target to generate assembly for a file -Analysis/src/TxnLog.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/TxnLog.cpp.s -.PHONY : Analysis/src/TxnLog.cpp.s - -Analysis/src/TypeAttach.o: Analysis/src/TypeAttach.cpp.o -.PHONY : Analysis/src/TypeAttach.o - -# target to build an object file -Analysis/src/TypeAttach.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/TypeAttach.cpp.o -.PHONY : Analysis/src/TypeAttach.cpp.o - -Analysis/src/TypeAttach.i: Analysis/src/TypeAttach.cpp.i -.PHONY : Analysis/src/TypeAttach.i - -# target to preprocess a source file -Analysis/src/TypeAttach.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/TypeAttach.cpp.i -.PHONY : Analysis/src/TypeAttach.cpp.i - -Analysis/src/TypeAttach.s: Analysis/src/TypeAttach.cpp.s -.PHONY : Analysis/src/TypeAttach.s - -# target to generate assembly for a file -Analysis/src/TypeAttach.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/TypeAttach.cpp.s -.PHONY : Analysis/src/TypeAttach.cpp.s - -Analysis/src/TypeInfer.o: Analysis/src/TypeInfer.cpp.o -.PHONY : Analysis/src/TypeInfer.o - -# target to build an object file -Analysis/src/TypeInfer.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/TypeInfer.cpp.o -.PHONY : Analysis/src/TypeInfer.cpp.o - -Analysis/src/TypeInfer.i: Analysis/src/TypeInfer.cpp.i -.PHONY : Analysis/src/TypeInfer.i - -# target to preprocess a source file -Analysis/src/TypeInfer.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/TypeInfer.cpp.i -.PHONY : Analysis/src/TypeInfer.cpp.i - -Analysis/src/TypeInfer.s: Analysis/src/TypeInfer.cpp.s -.PHONY : Analysis/src/TypeInfer.s - -# target to generate assembly for a file -Analysis/src/TypeInfer.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/TypeInfer.cpp.s -.PHONY : Analysis/src/TypeInfer.cpp.s - -Analysis/src/TypePack.o: Analysis/src/TypePack.cpp.o -.PHONY : Analysis/src/TypePack.o - -# target to build an object file -Analysis/src/TypePack.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/TypePack.cpp.o -.PHONY : Analysis/src/TypePack.cpp.o - -Analysis/src/TypePack.i: Analysis/src/TypePack.cpp.i -.PHONY : Analysis/src/TypePack.i - -# target to preprocess a source file -Analysis/src/TypePack.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/TypePack.cpp.i -.PHONY : Analysis/src/TypePack.cpp.i - -Analysis/src/TypePack.s: Analysis/src/TypePack.cpp.s -.PHONY : Analysis/src/TypePack.s - -# target to generate assembly for a file -Analysis/src/TypePack.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/TypePack.cpp.s -.PHONY : Analysis/src/TypePack.cpp.s - -Analysis/src/TypeUtils.o: Analysis/src/TypeUtils.cpp.o -.PHONY : Analysis/src/TypeUtils.o - -# target to build an object file -Analysis/src/TypeUtils.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/TypeUtils.cpp.o -.PHONY : Analysis/src/TypeUtils.cpp.o - -Analysis/src/TypeUtils.i: Analysis/src/TypeUtils.cpp.i -.PHONY : Analysis/src/TypeUtils.i - -# target to preprocess a source file -Analysis/src/TypeUtils.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/TypeUtils.cpp.i -.PHONY : Analysis/src/TypeUtils.cpp.i - -Analysis/src/TypeUtils.s: Analysis/src/TypeUtils.cpp.s -.PHONY : Analysis/src/TypeUtils.s - -# target to generate assembly for a file -Analysis/src/TypeUtils.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/TypeUtils.cpp.s -.PHONY : Analysis/src/TypeUtils.cpp.s - -Analysis/src/TypeVar.o: Analysis/src/TypeVar.cpp.o -.PHONY : Analysis/src/TypeVar.o - -# target to build an object file -Analysis/src/TypeVar.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/TypeVar.cpp.o -.PHONY : Analysis/src/TypeVar.cpp.o - -Analysis/src/TypeVar.i: Analysis/src/TypeVar.cpp.i -.PHONY : Analysis/src/TypeVar.i - -# target to preprocess a source file -Analysis/src/TypeVar.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/TypeVar.cpp.i -.PHONY : Analysis/src/TypeVar.cpp.i - -Analysis/src/TypeVar.s: Analysis/src/TypeVar.cpp.s -.PHONY : Analysis/src/TypeVar.s - -# target to generate assembly for a file -Analysis/src/TypeVar.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/TypeVar.cpp.s -.PHONY : Analysis/src/TypeVar.cpp.s - -Analysis/src/TypedAllocator.o: Analysis/src/TypedAllocator.cpp.o -.PHONY : Analysis/src/TypedAllocator.o - -# target to build an object file -Analysis/src/TypedAllocator.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/TypedAllocator.cpp.o -.PHONY : Analysis/src/TypedAllocator.cpp.o - -Analysis/src/TypedAllocator.i: Analysis/src/TypedAllocator.cpp.i -.PHONY : Analysis/src/TypedAllocator.i - -# target to preprocess a source file -Analysis/src/TypedAllocator.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/TypedAllocator.cpp.i -.PHONY : Analysis/src/TypedAllocator.cpp.i - -Analysis/src/TypedAllocator.s: Analysis/src/TypedAllocator.cpp.s -.PHONY : Analysis/src/TypedAllocator.s - -# target to generate assembly for a file -Analysis/src/TypedAllocator.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/TypedAllocator.cpp.s -.PHONY : Analysis/src/TypedAllocator.cpp.s - -Analysis/src/Unifiable.o: Analysis/src/Unifiable.cpp.o -.PHONY : Analysis/src/Unifiable.o - -# target to build an object file -Analysis/src/Unifiable.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/Unifiable.cpp.o -.PHONY : Analysis/src/Unifiable.cpp.o - -Analysis/src/Unifiable.i: Analysis/src/Unifiable.cpp.i -.PHONY : Analysis/src/Unifiable.i - -# target to preprocess a source file -Analysis/src/Unifiable.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/Unifiable.cpp.i -.PHONY : Analysis/src/Unifiable.cpp.i - -Analysis/src/Unifiable.s: Analysis/src/Unifiable.cpp.s -.PHONY : Analysis/src/Unifiable.s - -# target to generate assembly for a file -Analysis/src/Unifiable.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/Unifiable.cpp.s -.PHONY : Analysis/src/Unifiable.cpp.s - -Analysis/src/Unifier.o: Analysis/src/Unifier.cpp.o -.PHONY : Analysis/src/Unifier.o - -# target to build an object file -Analysis/src/Unifier.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/Unifier.cpp.o -.PHONY : Analysis/src/Unifier.cpp.o - -Analysis/src/Unifier.i: Analysis/src/Unifier.cpp.i -.PHONY : Analysis/src/Unifier.i - -# target to preprocess a source file -Analysis/src/Unifier.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/Unifier.cpp.i -.PHONY : Analysis/src/Unifier.cpp.i - -Analysis/src/Unifier.s: Analysis/src/Unifier.cpp.s -.PHONY : Analysis/src/Unifier.s - -# target to generate assembly for a file -Analysis/src/Unifier.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analysis.dir/build.make CMakeFiles/Luau.Analysis.dir/Analysis/src/Unifier.cpp.s -.PHONY : Analysis/src/Unifier.cpp.s - -Ast/src/Ast.o: Ast/src/Ast.cpp.o -.PHONY : Ast/src/Ast.o - -# target to build an object file -Ast/src/Ast.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Ast.dir/build.make CMakeFiles/Luau.Ast.dir/Ast/src/Ast.cpp.o -.PHONY : Ast/src/Ast.cpp.o - -Ast/src/Ast.i: Ast/src/Ast.cpp.i -.PHONY : Ast/src/Ast.i - -# target to preprocess a source file -Ast/src/Ast.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Ast.dir/build.make CMakeFiles/Luau.Ast.dir/Ast/src/Ast.cpp.i -.PHONY : Ast/src/Ast.cpp.i - -Ast/src/Ast.s: Ast/src/Ast.cpp.s -.PHONY : Ast/src/Ast.s - -# target to generate assembly for a file -Ast/src/Ast.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Ast.dir/build.make CMakeFiles/Luau.Ast.dir/Ast/src/Ast.cpp.s -.PHONY : Ast/src/Ast.cpp.s - -Ast/src/Confusables.o: Ast/src/Confusables.cpp.o -.PHONY : Ast/src/Confusables.o - -# target to build an object file -Ast/src/Confusables.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Ast.dir/build.make CMakeFiles/Luau.Ast.dir/Ast/src/Confusables.cpp.o -.PHONY : Ast/src/Confusables.cpp.o - -Ast/src/Confusables.i: Ast/src/Confusables.cpp.i -.PHONY : Ast/src/Confusables.i - -# target to preprocess a source file -Ast/src/Confusables.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Ast.dir/build.make CMakeFiles/Luau.Ast.dir/Ast/src/Confusables.cpp.i -.PHONY : Ast/src/Confusables.cpp.i - -Ast/src/Confusables.s: Ast/src/Confusables.cpp.s -.PHONY : Ast/src/Confusables.s - -# target to generate assembly for a file -Ast/src/Confusables.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Ast.dir/build.make CMakeFiles/Luau.Ast.dir/Ast/src/Confusables.cpp.s -.PHONY : Ast/src/Confusables.cpp.s - -Ast/src/Lexer.o: Ast/src/Lexer.cpp.o -.PHONY : Ast/src/Lexer.o - -# target to build an object file -Ast/src/Lexer.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Ast.dir/build.make CMakeFiles/Luau.Ast.dir/Ast/src/Lexer.cpp.o -.PHONY : Ast/src/Lexer.cpp.o - -Ast/src/Lexer.i: Ast/src/Lexer.cpp.i -.PHONY : Ast/src/Lexer.i - -# target to preprocess a source file -Ast/src/Lexer.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Ast.dir/build.make CMakeFiles/Luau.Ast.dir/Ast/src/Lexer.cpp.i -.PHONY : Ast/src/Lexer.cpp.i - -Ast/src/Lexer.s: Ast/src/Lexer.cpp.s -.PHONY : Ast/src/Lexer.s - -# target to generate assembly for a file -Ast/src/Lexer.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Ast.dir/build.make CMakeFiles/Luau.Ast.dir/Ast/src/Lexer.cpp.s -.PHONY : Ast/src/Lexer.cpp.s - -Ast/src/Location.o: Ast/src/Location.cpp.o -.PHONY : Ast/src/Location.o - -# target to build an object file -Ast/src/Location.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Ast.dir/build.make CMakeFiles/Luau.Ast.dir/Ast/src/Location.cpp.o -.PHONY : Ast/src/Location.cpp.o - -Ast/src/Location.i: Ast/src/Location.cpp.i -.PHONY : Ast/src/Location.i - -# target to preprocess a source file -Ast/src/Location.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Ast.dir/build.make CMakeFiles/Luau.Ast.dir/Ast/src/Location.cpp.i -.PHONY : Ast/src/Location.cpp.i - -Ast/src/Location.s: Ast/src/Location.cpp.s -.PHONY : Ast/src/Location.s - -# target to generate assembly for a file -Ast/src/Location.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Ast.dir/build.make CMakeFiles/Luau.Ast.dir/Ast/src/Location.cpp.s -.PHONY : Ast/src/Location.cpp.s - -Ast/src/Parser.o: Ast/src/Parser.cpp.o -.PHONY : Ast/src/Parser.o - -# target to build an object file -Ast/src/Parser.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Ast.dir/build.make CMakeFiles/Luau.Ast.dir/Ast/src/Parser.cpp.o -.PHONY : Ast/src/Parser.cpp.o - -Ast/src/Parser.i: Ast/src/Parser.cpp.i -.PHONY : Ast/src/Parser.i - -# target to preprocess a source file -Ast/src/Parser.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Ast.dir/build.make CMakeFiles/Luau.Ast.dir/Ast/src/Parser.cpp.i -.PHONY : Ast/src/Parser.cpp.i - -Ast/src/Parser.s: Ast/src/Parser.cpp.s -.PHONY : Ast/src/Parser.s - -# target to generate assembly for a file -Ast/src/Parser.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Ast.dir/build.make CMakeFiles/Luau.Ast.dir/Ast/src/Parser.cpp.s -.PHONY : Ast/src/Parser.cpp.s - -Ast/src/StringUtils.o: Ast/src/StringUtils.cpp.o -.PHONY : Ast/src/StringUtils.o - -# target to build an object file -Ast/src/StringUtils.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Ast.dir/build.make CMakeFiles/Luau.Ast.dir/Ast/src/StringUtils.cpp.o -.PHONY : Ast/src/StringUtils.cpp.o - -Ast/src/StringUtils.i: Ast/src/StringUtils.cpp.i -.PHONY : Ast/src/StringUtils.i - -# target to preprocess a source file -Ast/src/StringUtils.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Ast.dir/build.make CMakeFiles/Luau.Ast.dir/Ast/src/StringUtils.cpp.i -.PHONY : Ast/src/StringUtils.cpp.i - -Ast/src/StringUtils.s: Ast/src/StringUtils.cpp.s -.PHONY : Ast/src/StringUtils.s - -# target to generate assembly for a file -Ast/src/StringUtils.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Ast.dir/build.make CMakeFiles/Luau.Ast.dir/Ast/src/StringUtils.cpp.s -.PHONY : Ast/src/StringUtils.cpp.s - -Ast/src/TimeTrace.o: Ast/src/TimeTrace.cpp.o -.PHONY : Ast/src/TimeTrace.o - -# target to build an object file -Ast/src/TimeTrace.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Ast.dir/build.make CMakeFiles/Luau.Ast.dir/Ast/src/TimeTrace.cpp.o -.PHONY : Ast/src/TimeTrace.cpp.o - -Ast/src/TimeTrace.i: Ast/src/TimeTrace.cpp.i -.PHONY : Ast/src/TimeTrace.i - -# target to preprocess a source file -Ast/src/TimeTrace.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Ast.dir/build.make CMakeFiles/Luau.Ast.dir/Ast/src/TimeTrace.cpp.i -.PHONY : Ast/src/TimeTrace.cpp.i - -Ast/src/TimeTrace.s: Ast/src/TimeTrace.cpp.s -.PHONY : Ast/src/TimeTrace.s - -# target to generate assembly for a file -Ast/src/TimeTrace.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Ast.dir/build.make CMakeFiles/Luau.Ast.dir/Ast/src/TimeTrace.cpp.s -.PHONY : Ast/src/TimeTrace.cpp.s - -CLI/Analyze.o: CLI/Analyze.cpp.o -.PHONY : CLI/Analyze.o - -# target to build an object file -CLI/Analyze.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analyze.CLI.dir/build.make CMakeFiles/Luau.Analyze.CLI.dir/CLI/Analyze.cpp.o -.PHONY : CLI/Analyze.cpp.o - -CLI/Analyze.i: CLI/Analyze.cpp.i -.PHONY : CLI/Analyze.i - -# target to preprocess a source file -CLI/Analyze.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analyze.CLI.dir/build.make CMakeFiles/Luau.Analyze.CLI.dir/CLI/Analyze.cpp.i -.PHONY : CLI/Analyze.cpp.i - -CLI/Analyze.s: CLI/Analyze.cpp.s -.PHONY : CLI/Analyze.s - -# target to generate assembly for a file -CLI/Analyze.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analyze.CLI.dir/build.make CMakeFiles/Luau.Analyze.CLI.dir/CLI/Analyze.cpp.s -.PHONY : CLI/Analyze.cpp.s - -CLI/Ast.o: CLI/Ast.cpp.o -.PHONY : CLI/Ast.o - -# target to build an object file -CLI/Ast.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Ast.CLI.dir/build.make CMakeFiles/Luau.Ast.CLI.dir/CLI/Ast.cpp.o -.PHONY : CLI/Ast.cpp.o - -CLI/Ast.i: CLI/Ast.cpp.i -.PHONY : CLI/Ast.i - -# target to preprocess a source file -CLI/Ast.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Ast.CLI.dir/build.make CMakeFiles/Luau.Ast.CLI.dir/CLI/Ast.cpp.i -.PHONY : CLI/Ast.cpp.i - -CLI/Ast.s: CLI/Ast.cpp.s -.PHONY : CLI/Ast.s - -# target to generate assembly for a file -CLI/Ast.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Ast.CLI.dir/build.make CMakeFiles/Luau.Ast.CLI.dir/CLI/Ast.cpp.s -.PHONY : CLI/Ast.cpp.s - -CLI/Coverage.o: CLI/Coverage.cpp.o -.PHONY : CLI/Coverage.o - -# target to build an object file -CLI/Coverage.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Repl.CLI.dir/build.make CMakeFiles/Luau.Repl.CLI.dir/CLI/Coverage.cpp.o - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.CLI.Test.dir/build.make CMakeFiles/Luau.CLI.Test.dir/CLI/Coverage.cpp.o -.PHONY : CLI/Coverage.cpp.o - -CLI/Coverage.i: CLI/Coverage.cpp.i -.PHONY : CLI/Coverage.i - -# target to preprocess a source file -CLI/Coverage.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Repl.CLI.dir/build.make CMakeFiles/Luau.Repl.CLI.dir/CLI/Coverage.cpp.i - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.CLI.Test.dir/build.make CMakeFiles/Luau.CLI.Test.dir/CLI/Coverage.cpp.i -.PHONY : CLI/Coverage.cpp.i - -CLI/Coverage.s: CLI/Coverage.cpp.s -.PHONY : CLI/Coverage.s - -# target to generate assembly for a file -CLI/Coverage.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Repl.CLI.dir/build.make CMakeFiles/Luau.Repl.CLI.dir/CLI/Coverage.cpp.s - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.CLI.Test.dir/build.make CMakeFiles/Luau.CLI.Test.dir/CLI/Coverage.cpp.s -.PHONY : CLI/Coverage.cpp.s - -CLI/FileUtils.o: CLI/FileUtils.cpp.o -.PHONY : CLI/FileUtils.o - -# target to build an object file -CLI/FileUtils.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Repl.CLI.dir/build.make CMakeFiles/Luau.Repl.CLI.dir/CLI/FileUtils.cpp.o - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analyze.CLI.dir/build.make CMakeFiles/Luau.Analyze.CLI.dir/CLI/FileUtils.cpp.o - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Ast.CLI.dir/build.make CMakeFiles/Luau.Ast.CLI.dir/CLI/FileUtils.cpp.o - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.CLI.Test.dir/build.make CMakeFiles/Luau.CLI.Test.dir/CLI/FileUtils.cpp.o -.PHONY : CLI/FileUtils.cpp.o - -CLI/FileUtils.i: CLI/FileUtils.cpp.i -.PHONY : CLI/FileUtils.i - -# target to preprocess a source file -CLI/FileUtils.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Repl.CLI.dir/build.make CMakeFiles/Luau.Repl.CLI.dir/CLI/FileUtils.cpp.i - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analyze.CLI.dir/build.make CMakeFiles/Luau.Analyze.CLI.dir/CLI/FileUtils.cpp.i - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Ast.CLI.dir/build.make CMakeFiles/Luau.Ast.CLI.dir/CLI/FileUtils.cpp.i - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.CLI.Test.dir/build.make CMakeFiles/Luau.CLI.Test.dir/CLI/FileUtils.cpp.i -.PHONY : CLI/FileUtils.cpp.i - -CLI/FileUtils.s: CLI/FileUtils.cpp.s -.PHONY : CLI/FileUtils.s - -# target to generate assembly for a file -CLI/FileUtils.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Repl.CLI.dir/build.make CMakeFiles/Luau.Repl.CLI.dir/CLI/FileUtils.cpp.s - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Analyze.CLI.dir/build.make CMakeFiles/Luau.Analyze.CLI.dir/CLI/FileUtils.cpp.s - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Ast.CLI.dir/build.make CMakeFiles/Luau.Ast.CLI.dir/CLI/FileUtils.cpp.s - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.CLI.Test.dir/build.make CMakeFiles/Luau.CLI.Test.dir/CLI/FileUtils.cpp.s -.PHONY : CLI/FileUtils.cpp.s - -CLI/Profiler.o: CLI/Profiler.cpp.o -.PHONY : CLI/Profiler.o - -# target to build an object file -CLI/Profiler.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Repl.CLI.dir/build.make CMakeFiles/Luau.Repl.CLI.dir/CLI/Profiler.cpp.o - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.CLI.Test.dir/build.make CMakeFiles/Luau.CLI.Test.dir/CLI/Profiler.cpp.o -.PHONY : CLI/Profiler.cpp.o - -CLI/Profiler.i: CLI/Profiler.cpp.i -.PHONY : CLI/Profiler.i - -# target to preprocess a source file -CLI/Profiler.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Repl.CLI.dir/build.make CMakeFiles/Luau.Repl.CLI.dir/CLI/Profiler.cpp.i - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.CLI.Test.dir/build.make CMakeFiles/Luau.CLI.Test.dir/CLI/Profiler.cpp.i -.PHONY : CLI/Profiler.cpp.i - -CLI/Profiler.s: CLI/Profiler.cpp.s -.PHONY : CLI/Profiler.s - -# target to generate assembly for a file -CLI/Profiler.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Repl.CLI.dir/build.make CMakeFiles/Luau.Repl.CLI.dir/CLI/Profiler.cpp.s - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.CLI.Test.dir/build.make CMakeFiles/Luau.CLI.Test.dir/CLI/Profiler.cpp.s -.PHONY : CLI/Profiler.cpp.s - -CLI/Repl.o: CLI/Repl.cpp.o -.PHONY : CLI/Repl.o - -# target to build an object file -CLI/Repl.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Repl.CLI.dir/build.make CMakeFiles/Luau.Repl.CLI.dir/CLI/Repl.cpp.o - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.CLI.Test.dir/build.make CMakeFiles/Luau.CLI.Test.dir/CLI/Repl.cpp.o -.PHONY : CLI/Repl.cpp.o - -CLI/Repl.i: CLI/Repl.cpp.i -.PHONY : CLI/Repl.i - -# target to preprocess a source file -CLI/Repl.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Repl.CLI.dir/build.make CMakeFiles/Luau.Repl.CLI.dir/CLI/Repl.cpp.i - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.CLI.Test.dir/build.make CMakeFiles/Luau.CLI.Test.dir/CLI/Repl.cpp.i -.PHONY : CLI/Repl.cpp.i - -CLI/Repl.s: CLI/Repl.cpp.s -.PHONY : CLI/Repl.s - -# target to generate assembly for a file -CLI/Repl.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Repl.CLI.dir/build.make CMakeFiles/Luau.Repl.CLI.dir/CLI/Repl.cpp.s - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.CLI.Test.dir/build.make CMakeFiles/Luau.CLI.Test.dir/CLI/Repl.cpp.s -.PHONY : CLI/Repl.cpp.s - -CLI/ReplEntry.o: CLI/ReplEntry.cpp.o -.PHONY : CLI/ReplEntry.o - -# target to build an object file -CLI/ReplEntry.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Repl.CLI.dir/build.make CMakeFiles/Luau.Repl.CLI.dir/CLI/ReplEntry.cpp.o -.PHONY : CLI/ReplEntry.cpp.o - -CLI/ReplEntry.i: CLI/ReplEntry.cpp.i -.PHONY : CLI/ReplEntry.i - -# target to preprocess a source file -CLI/ReplEntry.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Repl.CLI.dir/build.make CMakeFiles/Luau.Repl.CLI.dir/CLI/ReplEntry.cpp.i -.PHONY : CLI/ReplEntry.cpp.i - -CLI/ReplEntry.s: CLI/ReplEntry.cpp.s -.PHONY : CLI/ReplEntry.s - -# target to generate assembly for a file -CLI/ReplEntry.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Repl.CLI.dir/build.make CMakeFiles/Luau.Repl.CLI.dir/CLI/ReplEntry.cpp.s -.PHONY : CLI/ReplEntry.cpp.s - -Compiler/src/Builtins.o: Compiler/src/Builtins.cpp.o -.PHONY : Compiler/src/Builtins.o - -# target to build an object file -Compiler/src/Builtins.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Compiler.dir/build.make CMakeFiles/Luau.Compiler.dir/Compiler/src/Builtins.cpp.o -.PHONY : Compiler/src/Builtins.cpp.o - -Compiler/src/Builtins.i: Compiler/src/Builtins.cpp.i -.PHONY : Compiler/src/Builtins.i - -# target to preprocess a source file -Compiler/src/Builtins.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Compiler.dir/build.make CMakeFiles/Luau.Compiler.dir/Compiler/src/Builtins.cpp.i -.PHONY : Compiler/src/Builtins.cpp.i - -Compiler/src/Builtins.s: Compiler/src/Builtins.cpp.s -.PHONY : Compiler/src/Builtins.s - -# target to generate assembly for a file -Compiler/src/Builtins.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Compiler.dir/build.make CMakeFiles/Luau.Compiler.dir/Compiler/src/Builtins.cpp.s -.PHONY : Compiler/src/Builtins.cpp.s - -Compiler/src/BytecodeBuilder.o: Compiler/src/BytecodeBuilder.cpp.o -.PHONY : Compiler/src/BytecodeBuilder.o - -# target to build an object file -Compiler/src/BytecodeBuilder.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Compiler.dir/build.make CMakeFiles/Luau.Compiler.dir/Compiler/src/BytecodeBuilder.cpp.o -.PHONY : Compiler/src/BytecodeBuilder.cpp.o - -Compiler/src/BytecodeBuilder.i: Compiler/src/BytecodeBuilder.cpp.i -.PHONY : Compiler/src/BytecodeBuilder.i - -# target to preprocess a source file -Compiler/src/BytecodeBuilder.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Compiler.dir/build.make CMakeFiles/Luau.Compiler.dir/Compiler/src/BytecodeBuilder.cpp.i -.PHONY : Compiler/src/BytecodeBuilder.cpp.i - -Compiler/src/BytecodeBuilder.s: Compiler/src/BytecodeBuilder.cpp.s -.PHONY : Compiler/src/BytecodeBuilder.s - -# target to generate assembly for a file -Compiler/src/BytecodeBuilder.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Compiler.dir/build.make CMakeFiles/Luau.Compiler.dir/Compiler/src/BytecodeBuilder.cpp.s -.PHONY : Compiler/src/BytecodeBuilder.cpp.s - -Compiler/src/Compiler.o: Compiler/src/Compiler.cpp.o -.PHONY : Compiler/src/Compiler.o - -# target to build an object file -Compiler/src/Compiler.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Compiler.dir/build.make CMakeFiles/Luau.Compiler.dir/Compiler/src/Compiler.cpp.o -.PHONY : Compiler/src/Compiler.cpp.o - -Compiler/src/Compiler.i: Compiler/src/Compiler.cpp.i -.PHONY : Compiler/src/Compiler.i - -# target to preprocess a source file -Compiler/src/Compiler.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Compiler.dir/build.make CMakeFiles/Luau.Compiler.dir/Compiler/src/Compiler.cpp.i -.PHONY : Compiler/src/Compiler.cpp.i - -Compiler/src/Compiler.s: Compiler/src/Compiler.cpp.s -.PHONY : Compiler/src/Compiler.s - -# target to generate assembly for a file -Compiler/src/Compiler.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Compiler.dir/build.make CMakeFiles/Luau.Compiler.dir/Compiler/src/Compiler.cpp.s -.PHONY : Compiler/src/Compiler.cpp.s - -Compiler/src/ConstantFolding.o: Compiler/src/ConstantFolding.cpp.o -.PHONY : Compiler/src/ConstantFolding.o - -# target to build an object file -Compiler/src/ConstantFolding.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Compiler.dir/build.make CMakeFiles/Luau.Compiler.dir/Compiler/src/ConstantFolding.cpp.o -.PHONY : Compiler/src/ConstantFolding.cpp.o - -Compiler/src/ConstantFolding.i: Compiler/src/ConstantFolding.cpp.i -.PHONY : Compiler/src/ConstantFolding.i - -# target to preprocess a source file -Compiler/src/ConstantFolding.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Compiler.dir/build.make CMakeFiles/Luau.Compiler.dir/Compiler/src/ConstantFolding.cpp.i -.PHONY : Compiler/src/ConstantFolding.cpp.i - -Compiler/src/ConstantFolding.s: Compiler/src/ConstantFolding.cpp.s -.PHONY : Compiler/src/ConstantFolding.s - -# target to generate assembly for a file -Compiler/src/ConstantFolding.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Compiler.dir/build.make CMakeFiles/Luau.Compiler.dir/Compiler/src/ConstantFolding.cpp.s -.PHONY : Compiler/src/ConstantFolding.cpp.s - -Compiler/src/TableShape.o: Compiler/src/TableShape.cpp.o -.PHONY : Compiler/src/TableShape.o - -# target to build an object file -Compiler/src/TableShape.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Compiler.dir/build.make CMakeFiles/Luau.Compiler.dir/Compiler/src/TableShape.cpp.o -.PHONY : Compiler/src/TableShape.cpp.o - -Compiler/src/TableShape.i: Compiler/src/TableShape.cpp.i -.PHONY : Compiler/src/TableShape.i - -# target to preprocess a source file -Compiler/src/TableShape.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Compiler.dir/build.make CMakeFiles/Luau.Compiler.dir/Compiler/src/TableShape.cpp.i -.PHONY : Compiler/src/TableShape.cpp.i - -Compiler/src/TableShape.s: Compiler/src/TableShape.cpp.s -.PHONY : Compiler/src/TableShape.s - -# target to generate assembly for a file -Compiler/src/TableShape.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Compiler.dir/build.make CMakeFiles/Luau.Compiler.dir/Compiler/src/TableShape.cpp.s -.PHONY : Compiler/src/TableShape.cpp.s - -Compiler/src/ValueTracking.o: Compiler/src/ValueTracking.cpp.o -.PHONY : Compiler/src/ValueTracking.o - -# target to build an object file -Compiler/src/ValueTracking.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Compiler.dir/build.make CMakeFiles/Luau.Compiler.dir/Compiler/src/ValueTracking.cpp.o -.PHONY : Compiler/src/ValueTracking.cpp.o - -Compiler/src/ValueTracking.i: Compiler/src/ValueTracking.cpp.i -.PHONY : Compiler/src/ValueTracking.i - -# target to preprocess a source file -Compiler/src/ValueTracking.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Compiler.dir/build.make CMakeFiles/Luau.Compiler.dir/Compiler/src/ValueTracking.cpp.i -.PHONY : Compiler/src/ValueTracking.cpp.i - -Compiler/src/ValueTracking.s: Compiler/src/ValueTracking.cpp.s -.PHONY : Compiler/src/ValueTracking.s - -# target to generate assembly for a file -Compiler/src/ValueTracking.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Compiler.dir/build.make CMakeFiles/Luau.Compiler.dir/Compiler/src/ValueTracking.cpp.s -.PHONY : Compiler/src/ValueTracking.cpp.s - -Compiler/src/lcode.o: Compiler/src/lcode.cpp.o -.PHONY : Compiler/src/lcode.o - -# target to build an object file -Compiler/src/lcode.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Compiler.dir/build.make CMakeFiles/Luau.Compiler.dir/Compiler/src/lcode.cpp.o -.PHONY : Compiler/src/lcode.cpp.o - -Compiler/src/lcode.i: Compiler/src/lcode.cpp.i -.PHONY : Compiler/src/lcode.i - -# target to preprocess a source file -Compiler/src/lcode.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Compiler.dir/build.make CMakeFiles/Luau.Compiler.dir/Compiler/src/lcode.cpp.i -.PHONY : Compiler/src/lcode.cpp.i - -Compiler/src/lcode.s: Compiler/src/lcode.cpp.s -.PHONY : Compiler/src/lcode.s - -# target to generate assembly for a file -Compiler/src/lcode.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Compiler.dir/build.make CMakeFiles/Luau.Compiler.dir/Compiler/src/lcode.cpp.s -.PHONY : Compiler/src/lcode.cpp.s - -VM/src/lapi.o: VM/src/lapi.cpp.o -.PHONY : VM/src/lapi.o - -# target to build an object file -VM/src/lapi.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/lapi.cpp.o -.PHONY : VM/src/lapi.cpp.o - -VM/src/lapi.i: VM/src/lapi.cpp.i -.PHONY : VM/src/lapi.i - -# target to preprocess a source file -VM/src/lapi.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/lapi.cpp.i -.PHONY : VM/src/lapi.cpp.i - -VM/src/lapi.s: VM/src/lapi.cpp.s -.PHONY : VM/src/lapi.s - -# target to generate assembly for a file -VM/src/lapi.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/lapi.cpp.s -.PHONY : VM/src/lapi.cpp.s - -VM/src/laux.o: VM/src/laux.cpp.o -.PHONY : VM/src/laux.o - -# target to build an object file -VM/src/laux.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/laux.cpp.o -.PHONY : VM/src/laux.cpp.o - -VM/src/laux.i: VM/src/laux.cpp.i -.PHONY : VM/src/laux.i - -# target to preprocess a source file -VM/src/laux.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/laux.cpp.i -.PHONY : VM/src/laux.cpp.i - -VM/src/laux.s: VM/src/laux.cpp.s -.PHONY : VM/src/laux.s - -# target to generate assembly for a file -VM/src/laux.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/laux.cpp.s -.PHONY : VM/src/laux.cpp.s - -VM/src/lbaselib.o: VM/src/lbaselib.cpp.o -.PHONY : VM/src/lbaselib.o - -# target to build an object file -VM/src/lbaselib.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/lbaselib.cpp.o -.PHONY : VM/src/lbaselib.cpp.o - -VM/src/lbaselib.i: VM/src/lbaselib.cpp.i -.PHONY : VM/src/lbaselib.i - -# target to preprocess a source file -VM/src/lbaselib.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/lbaselib.cpp.i -.PHONY : VM/src/lbaselib.cpp.i - -VM/src/lbaselib.s: VM/src/lbaselib.cpp.s -.PHONY : VM/src/lbaselib.s - -# target to generate assembly for a file -VM/src/lbaselib.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/lbaselib.cpp.s -.PHONY : VM/src/lbaselib.cpp.s - -VM/src/lbitlib.o: VM/src/lbitlib.cpp.o -.PHONY : VM/src/lbitlib.o - -# target to build an object file -VM/src/lbitlib.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/lbitlib.cpp.o -.PHONY : VM/src/lbitlib.cpp.o - -VM/src/lbitlib.i: VM/src/lbitlib.cpp.i -.PHONY : VM/src/lbitlib.i - -# target to preprocess a source file -VM/src/lbitlib.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/lbitlib.cpp.i -.PHONY : VM/src/lbitlib.cpp.i - -VM/src/lbitlib.s: VM/src/lbitlib.cpp.s -.PHONY : VM/src/lbitlib.s - -# target to generate assembly for a file -VM/src/lbitlib.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/lbitlib.cpp.s -.PHONY : VM/src/lbitlib.cpp.s - -VM/src/lbuiltins.o: VM/src/lbuiltins.cpp.o -.PHONY : VM/src/lbuiltins.o - -# target to build an object file -VM/src/lbuiltins.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/lbuiltins.cpp.o -.PHONY : VM/src/lbuiltins.cpp.o - -VM/src/lbuiltins.i: VM/src/lbuiltins.cpp.i -.PHONY : VM/src/lbuiltins.i - -# target to preprocess a source file -VM/src/lbuiltins.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/lbuiltins.cpp.i -.PHONY : VM/src/lbuiltins.cpp.i - -VM/src/lbuiltins.s: VM/src/lbuiltins.cpp.s -.PHONY : VM/src/lbuiltins.s - -# target to generate assembly for a file -VM/src/lbuiltins.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/lbuiltins.cpp.s -.PHONY : VM/src/lbuiltins.cpp.s - -VM/src/lcorolib.o: VM/src/lcorolib.cpp.o -.PHONY : VM/src/lcorolib.o - -# target to build an object file -VM/src/lcorolib.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/lcorolib.cpp.o -.PHONY : VM/src/lcorolib.cpp.o - -VM/src/lcorolib.i: VM/src/lcorolib.cpp.i -.PHONY : VM/src/lcorolib.i - -# target to preprocess a source file -VM/src/lcorolib.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/lcorolib.cpp.i -.PHONY : VM/src/lcorolib.cpp.i - -VM/src/lcorolib.s: VM/src/lcorolib.cpp.s -.PHONY : VM/src/lcorolib.s - -# target to generate assembly for a file -VM/src/lcorolib.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/lcorolib.cpp.s -.PHONY : VM/src/lcorolib.cpp.s - -VM/src/ldblib.o: VM/src/ldblib.cpp.o -.PHONY : VM/src/ldblib.o - -# target to build an object file -VM/src/ldblib.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/ldblib.cpp.o -.PHONY : VM/src/ldblib.cpp.o - -VM/src/ldblib.i: VM/src/ldblib.cpp.i -.PHONY : VM/src/ldblib.i - -# target to preprocess a source file -VM/src/ldblib.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/ldblib.cpp.i -.PHONY : VM/src/ldblib.cpp.i - -VM/src/ldblib.s: VM/src/ldblib.cpp.s -.PHONY : VM/src/ldblib.s - -# target to generate assembly for a file -VM/src/ldblib.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/ldblib.cpp.s -.PHONY : VM/src/ldblib.cpp.s - -VM/src/ldebug.o: VM/src/ldebug.cpp.o -.PHONY : VM/src/ldebug.o - -# target to build an object file -VM/src/ldebug.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/ldebug.cpp.o -.PHONY : VM/src/ldebug.cpp.o - -VM/src/ldebug.i: VM/src/ldebug.cpp.i -.PHONY : VM/src/ldebug.i - -# target to preprocess a source file -VM/src/ldebug.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/ldebug.cpp.i -.PHONY : VM/src/ldebug.cpp.i - -VM/src/ldebug.s: VM/src/ldebug.cpp.s -.PHONY : VM/src/ldebug.s - -# target to generate assembly for a file -VM/src/ldebug.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/ldebug.cpp.s -.PHONY : VM/src/ldebug.cpp.s - -VM/src/ldo.o: VM/src/ldo.cpp.o -.PHONY : VM/src/ldo.o - -# target to build an object file -VM/src/ldo.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/ldo.cpp.o -.PHONY : VM/src/ldo.cpp.o - -VM/src/ldo.i: VM/src/ldo.cpp.i -.PHONY : VM/src/ldo.i - -# target to preprocess a source file -VM/src/ldo.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/ldo.cpp.i -.PHONY : VM/src/ldo.cpp.i - -VM/src/ldo.s: VM/src/ldo.cpp.s -.PHONY : VM/src/ldo.s - -# target to generate assembly for a file -VM/src/ldo.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/ldo.cpp.s -.PHONY : VM/src/ldo.cpp.s - -VM/src/lfunc.o: VM/src/lfunc.cpp.o -.PHONY : VM/src/lfunc.o - -# target to build an object file -VM/src/lfunc.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/lfunc.cpp.o -.PHONY : VM/src/lfunc.cpp.o - -VM/src/lfunc.i: VM/src/lfunc.cpp.i -.PHONY : VM/src/lfunc.i - -# target to preprocess a source file -VM/src/lfunc.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/lfunc.cpp.i -.PHONY : VM/src/lfunc.cpp.i - -VM/src/lfunc.s: VM/src/lfunc.cpp.s -.PHONY : VM/src/lfunc.s - -# target to generate assembly for a file -VM/src/lfunc.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/lfunc.cpp.s -.PHONY : VM/src/lfunc.cpp.s - -VM/src/lgc.o: VM/src/lgc.cpp.o -.PHONY : VM/src/lgc.o - -# target to build an object file -VM/src/lgc.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/lgc.cpp.o -.PHONY : VM/src/lgc.cpp.o - -VM/src/lgc.i: VM/src/lgc.cpp.i -.PHONY : VM/src/lgc.i - -# target to preprocess a source file -VM/src/lgc.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/lgc.cpp.i -.PHONY : VM/src/lgc.cpp.i - -VM/src/lgc.s: VM/src/lgc.cpp.s -.PHONY : VM/src/lgc.s - -# target to generate assembly for a file -VM/src/lgc.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/lgc.cpp.s -.PHONY : VM/src/lgc.cpp.s - -VM/src/lgcdebug.o: VM/src/lgcdebug.cpp.o -.PHONY : VM/src/lgcdebug.o - -# target to build an object file -VM/src/lgcdebug.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/lgcdebug.cpp.o -.PHONY : VM/src/lgcdebug.cpp.o - -VM/src/lgcdebug.i: VM/src/lgcdebug.cpp.i -.PHONY : VM/src/lgcdebug.i - -# target to preprocess a source file -VM/src/lgcdebug.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/lgcdebug.cpp.i -.PHONY : VM/src/lgcdebug.cpp.i - -VM/src/lgcdebug.s: VM/src/lgcdebug.cpp.s -.PHONY : VM/src/lgcdebug.s - -# target to generate assembly for a file -VM/src/lgcdebug.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/lgcdebug.cpp.s -.PHONY : VM/src/lgcdebug.cpp.s - -VM/src/linit.o: VM/src/linit.cpp.o -.PHONY : VM/src/linit.o - -# target to build an object file -VM/src/linit.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/linit.cpp.o -.PHONY : VM/src/linit.cpp.o - -VM/src/linit.i: VM/src/linit.cpp.i -.PHONY : VM/src/linit.i - -# target to preprocess a source file -VM/src/linit.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/linit.cpp.i -.PHONY : VM/src/linit.cpp.i - -VM/src/linit.s: VM/src/linit.cpp.s -.PHONY : VM/src/linit.s - -# target to generate assembly for a file -VM/src/linit.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/linit.cpp.s -.PHONY : VM/src/linit.cpp.s - -VM/src/lmathlib.o: VM/src/lmathlib.cpp.o -.PHONY : VM/src/lmathlib.o - -# target to build an object file -VM/src/lmathlib.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/lmathlib.cpp.o -.PHONY : VM/src/lmathlib.cpp.o - -VM/src/lmathlib.i: VM/src/lmathlib.cpp.i -.PHONY : VM/src/lmathlib.i - -# target to preprocess a source file -VM/src/lmathlib.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/lmathlib.cpp.i -.PHONY : VM/src/lmathlib.cpp.i - -VM/src/lmathlib.s: VM/src/lmathlib.cpp.s -.PHONY : VM/src/lmathlib.s - -# target to generate assembly for a file -VM/src/lmathlib.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/lmathlib.cpp.s -.PHONY : VM/src/lmathlib.cpp.s - -VM/src/lmem.o: VM/src/lmem.cpp.o -.PHONY : VM/src/lmem.o - -# target to build an object file -VM/src/lmem.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/lmem.cpp.o -.PHONY : VM/src/lmem.cpp.o - -VM/src/lmem.i: VM/src/lmem.cpp.i -.PHONY : VM/src/lmem.i - -# target to preprocess a source file -VM/src/lmem.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/lmem.cpp.i -.PHONY : VM/src/lmem.cpp.i - -VM/src/lmem.s: VM/src/lmem.cpp.s -.PHONY : VM/src/lmem.s - -# target to generate assembly for a file -VM/src/lmem.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/lmem.cpp.s -.PHONY : VM/src/lmem.cpp.s - -VM/src/lnumprint.o: VM/src/lnumprint.cpp.o -.PHONY : VM/src/lnumprint.o - -# target to build an object file -VM/src/lnumprint.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/lnumprint.cpp.o -.PHONY : VM/src/lnumprint.cpp.o - -VM/src/lnumprint.i: VM/src/lnumprint.cpp.i -.PHONY : VM/src/lnumprint.i - -# target to preprocess a source file -VM/src/lnumprint.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/lnumprint.cpp.i -.PHONY : VM/src/lnumprint.cpp.i - -VM/src/lnumprint.s: VM/src/lnumprint.cpp.s -.PHONY : VM/src/lnumprint.s - -# target to generate assembly for a file -VM/src/lnumprint.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/lnumprint.cpp.s -.PHONY : VM/src/lnumprint.cpp.s - -VM/src/lobject.o: VM/src/lobject.cpp.o -.PHONY : VM/src/lobject.o - -# target to build an object file -VM/src/lobject.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/lobject.cpp.o -.PHONY : VM/src/lobject.cpp.o - -VM/src/lobject.i: VM/src/lobject.cpp.i -.PHONY : VM/src/lobject.i - -# target to preprocess a source file -VM/src/lobject.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/lobject.cpp.i -.PHONY : VM/src/lobject.cpp.i - -VM/src/lobject.s: VM/src/lobject.cpp.s -.PHONY : VM/src/lobject.s - -# target to generate assembly for a file -VM/src/lobject.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/lobject.cpp.s -.PHONY : VM/src/lobject.cpp.s - -VM/src/loslib.o: VM/src/loslib.cpp.o -.PHONY : VM/src/loslib.o - -# target to build an object file -VM/src/loslib.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/loslib.cpp.o -.PHONY : VM/src/loslib.cpp.o - -VM/src/loslib.i: VM/src/loslib.cpp.i -.PHONY : VM/src/loslib.i - -# target to preprocess a source file -VM/src/loslib.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/loslib.cpp.i -.PHONY : VM/src/loslib.cpp.i - -VM/src/loslib.s: VM/src/loslib.cpp.s -.PHONY : VM/src/loslib.s - -# target to generate assembly for a file -VM/src/loslib.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/loslib.cpp.s -.PHONY : VM/src/loslib.cpp.s - -VM/src/lperf.o: VM/src/lperf.cpp.o -.PHONY : VM/src/lperf.o - -# target to build an object file -VM/src/lperf.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/lperf.cpp.o -.PHONY : VM/src/lperf.cpp.o - -VM/src/lperf.i: VM/src/lperf.cpp.i -.PHONY : VM/src/lperf.i - -# target to preprocess a source file -VM/src/lperf.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/lperf.cpp.i -.PHONY : VM/src/lperf.cpp.i - -VM/src/lperf.s: VM/src/lperf.cpp.s -.PHONY : VM/src/lperf.s - -# target to generate assembly for a file -VM/src/lperf.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/lperf.cpp.s -.PHONY : VM/src/lperf.cpp.s - -VM/src/lstate.o: VM/src/lstate.cpp.o -.PHONY : VM/src/lstate.o - -# target to build an object file -VM/src/lstate.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/lstate.cpp.o -.PHONY : VM/src/lstate.cpp.o - -VM/src/lstate.i: VM/src/lstate.cpp.i -.PHONY : VM/src/lstate.i - -# target to preprocess a source file -VM/src/lstate.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/lstate.cpp.i -.PHONY : VM/src/lstate.cpp.i - -VM/src/lstate.s: VM/src/lstate.cpp.s -.PHONY : VM/src/lstate.s - -# target to generate assembly for a file -VM/src/lstate.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/lstate.cpp.s -.PHONY : VM/src/lstate.cpp.s - -VM/src/lstring.o: VM/src/lstring.cpp.o -.PHONY : VM/src/lstring.o - -# target to build an object file -VM/src/lstring.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/lstring.cpp.o -.PHONY : VM/src/lstring.cpp.o - -VM/src/lstring.i: VM/src/lstring.cpp.i -.PHONY : VM/src/lstring.i - -# target to preprocess a source file -VM/src/lstring.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/lstring.cpp.i -.PHONY : VM/src/lstring.cpp.i - -VM/src/lstring.s: VM/src/lstring.cpp.s -.PHONY : VM/src/lstring.s - -# target to generate assembly for a file -VM/src/lstring.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/lstring.cpp.s -.PHONY : VM/src/lstring.cpp.s - -VM/src/lstrlib.o: VM/src/lstrlib.cpp.o -.PHONY : VM/src/lstrlib.o - -# target to build an object file -VM/src/lstrlib.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/lstrlib.cpp.o -.PHONY : VM/src/lstrlib.cpp.o - -VM/src/lstrlib.i: VM/src/lstrlib.cpp.i -.PHONY : VM/src/lstrlib.i - -# target to preprocess a source file -VM/src/lstrlib.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/lstrlib.cpp.i -.PHONY : VM/src/lstrlib.cpp.i - -VM/src/lstrlib.s: VM/src/lstrlib.cpp.s -.PHONY : VM/src/lstrlib.s - -# target to generate assembly for a file -VM/src/lstrlib.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/lstrlib.cpp.s -.PHONY : VM/src/lstrlib.cpp.s - -VM/src/ltable.o: VM/src/ltable.cpp.o -.PHONY : VM/src/ltable.o - -# target to build an object file -VM/src/ltable.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/ltable.cpp.o -.PHONY : VM/src/ltable.cpp.o - -VM/src/ltable.i: VM/src/ltable.cpp.i -.PHONY : VM/src/ltable.i - -# target to preprocess a source file -VM/src/ltable.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/ltable.cpp.i -.PHONY : VM/src/ltable.cpp.i - -VM/src/ltable.s: VM/src/ltable.cpp.s -.PHONY : VM/src/ltable.s - -# target to generate assembly for a file -VM/src/ltable.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/ltable.cpp.s -.PHONY : VM/src/ltable.cpp.s - -VM/src/ltablib.o: VM/src/ltablib.cpp.o -.PHONY : VM/src/ltablib.o - -# target to build an object file -VM/src/ltablib.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/ltablib.cpp.o -.PHONY : VM/src/ltablib.cpp.o - -VM/src/ltablib.i: VM/src/ltablib.cpp.i -.PHONY : VM/src/ltablib.i - -# target to preprocess a source file -VM/src/ltablib.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/ltablib.cpp.i -.PHONY : VM/src/ltablib.cpp.i - -VM/src/ltablib.s: VM/src/ltablib.cpp.s -.PHONY : VM/src/ltablib.s - -# target to generate assembly for a file -VM/src/ltablib.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/ltablib.cpp.s -.PHONY : VM/src/ltablib.cpp.s - -VM/src/ltm.o: VM/src/ltm.cpp.o -.PHONY : VM/src/ltm.o - -# target to build an object file -VM/src/ltm.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/ltm.cpp.o -.PHONY : VM/src/ltm.cpp.o - -VM/src/ltm.i: VM/src/ltm.cpp.i -.PHONY : VM/src/ltm.i - -# target to preprocess a source file -VM/src/ltm.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/ltm.cpp.i -.PHONY : VM/src/ltm.cpp.i - -VM/src/ltm.s: VM/src/ltm.cpp.s -.PHONY : VM/src/ltm.s - -# target to generate assembly for a file -VM/src/ltm.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/ltm.cpp.s -.PHONY : VM/src/ltm.cpp.s - -VM/src/ludata.o: VM/src/ludata.cpp.o -.PHONY : VM/src/ludata.o - -# target to build an object file -VM/src/ludata.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/ludata.cpp.o -.PHONY : VM/src/ludata.cpp.o - -VM/src/ludata.i: VM/src/ludata.cpp.i -.PHONY : VM/src/ludata.i - -# target to preprocess a source file -VM/src/ludata.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/ludata.cpp.i -.PHONY : VM/src/ludata.cpp.i - -VM/src/ludata.s: VM/src/ludata.cpp.s -.PHONY : VM/src/ludata.s - -# target to generate assembly for a file -VM/src/ludata.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/ludata.cpp.s -.PHONY : VM/src/ludata.cpp.s - -VM/src/lutf8lib.o: VM/src/lutf8lib.cpp.o -.PHONY : VM/src/lutf8lib.o - -# target to build an object file -VM/src/lutf8lib.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/lutf8lib.cpp.o -.PHONY : VM/src/lutf8lib.cpp.o - -VM/src/lutf8lib.i: VM/src/lutf8lib.cpp.i -.PHONY : VM/src/lutf8lib.i - -# target to preprocess a source file -VM/src/lutf8lib.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/lutf8lib.cpp.i -.PHONY : VM/src/lutf8lib.cpp.i - -VM/src/lutf8lib.s: VM/src/lutf8lib.cpp.s -.PHONY : VM/src/lutf8lib.s - -# target to generate assembly for a file -VM/src/lutf8lib.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/lutf8lib.cpp.s -.PHONY : VM/src/lutf8lib.cpp.s - -VM/src/lvmexecute.o: VM/src/lvmexecute.cpp.o -.PHONY : VM/src/lvmexecute.o - -# target to build an object file -VM/src/lvmexecute.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/lvmexecute.cpp.o -.PHONY : VM/src/lvmexecute.cpp.o - -VM/src/lvmexecute.i: VM/src/lvmexecute.cpp.i -.PHONY : VM/src/lvmexecute.i - -# target to preprocess a source file -VM/src/lvmexecute.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/lvmexecute.cpp.i -.PHONY : VM/src/lvmexecute.cpp.i - -VM/src/lvmexecute.s: VM/src/lvmexecute.cpp.s -.PHONY : VM/src/lvmexecute.s - -# target to generate assembly for a file -VM/src/lvmexecute.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/lvmexecute.cpp.s -.PHONY : VM/src/lvmexecute.cpp.s - -VM/src/lvmload.o: VM/src/lvmload.cpp.o -.PHONY : VM/src/lvmload.o - -# target to build an object file -VM/src/lvmload.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/lvmload.cpp.o -.PHONY : VM/src/lvmload.cpp.o - -VM/src/lvmload.i: VM/src/lvmload.cpp.i -.PHONY : VM/src/lvmload.i - -# target to preprocess a source file -VM/src/lvmload.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/lvmload.cpp.i -.PHONY : VM/src/lvmload.cpp.i - -VM/src/lvmload.s: VM/src/lvmload.cpp.s -.PHONY : VM/src/lvmload.s - -# target to generate assembly for a file -VM/src/lvmload.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/lvmload.cpp.s -.PHONY : VM/src/lvmload.cpp.s - -VM/src/lvmutils.o: VM/src/lvmutils.cpp.o -.PHONY : VM/src/lvmutils.o - -# target to build an object file -VM/src/lvmutils.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/lvmutils.cpp.o -.PHONY : VM/src/lvmutils.cpp.o - -VM/src/lvmutils.i: VM/src/lvmutils.cpp.i -.PHONY : VM/src/lvmutils.i - -# target to preprocess a source file -VM/src/lvmutils.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/lvmutils.cpp.i -.PHONY : VM/src/lvmutils.cpp.i - -VM/src/lvmutils.s: VM/src/lvmutils.cpp.s -.PHONY : VM/src/lvmutils.s - -# target to generate assembly for a file -VM/src/lvmutils.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.VM.dir/build.make CMakeFiles/Luau.VM.dir/VM/src/lvmutils.cpp.s -.PHONY : VM/src/lvmutils.cpp.s - -extern/isocline/src/isocline.o: extern/isocline/src/isocline.c.o -.PHONY : extern/isocline/src/isocline.o - -# target to build an object file -extern/isocline/src/isocline.c.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/isocline.dir/build.make CMakeFiles/isocline.dir/extern/isocline/src/isocline.c.o -.PHONY : extern/isocline/src/isocline.c.o - -extern/isocline/src/isocline.i: extern/isocline/src/isocline.c.i -.PHONY : extern/isocline/src/isocline.i - -# target to preprocess a source file -extern/isocline/src/isocline.c.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/isocline.dir/build.make CMakeFiles/isocline.dir/extern/isocline/src/isocline.c.i -.PHONY : extern/isocline/src/isocline.c.i - -extern/isocline/src/isocline.s: extern/isocline/src/isocline.c.s -.PHONY : extern/isocline/src/isocline.s - -# target to generate assembly for a file -extern/isocline/src/isocline.c.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/isocline.dir/build.make CMakeFiles/isocline.dir/extern/isocline/src/isocline.c.s -.PHONY : extern/isocline/src/isocline.c.s - -tests/AstQuery.test.o: tests/AstQuery.test.cpp.o -.PHONY : tests/AstQuery.test.o - -# target to build an object file -tests/AstQuery.test.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/AstQuery.test.cpp.o -.PHONY : tests/AstQuery.test.cpp.o - -tests/AstQuery.test.i: tests/AstQuery.test.cpp.i -.PHONY : tests/AstQuery.test.i - -# target to preprocess a source file -tests/AstQuery.test.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/AstQuery.test.cpp.i -.PHONY : tests/AstQuery.test.cpp.i - -tests/AstQuery.test.s: tests/AstQuery.test.cpp.s -.PHONY : tests/AstQuery.test.s - -# target to generate assembly for a file -tests/AstQuery.test.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/AstQuery.test.cpp.s -.PHONY : tests/AstQuery.test.cpp.s - -tests/AstVisitor.test.o: tests/AstVisitor.test.cpp.o -.PHONY : tests/AstVisitor.test.o - -# target to build an object file -tests/AstVisitor.test.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/AstVisitor.test.cpp.o -.PHONY : tests/AstVisitor.test.cpp.o - -tests/AstVisitor.test.i: tests/AstVisitor.test.cpp.i -.PHONY : tests/AstVisitor.test.i - -# target to preprocess a source file -tests/AstVisitor.test.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/AstVisitor.test.cpp.i -.PHONY : tests/AstVisitor.test.cpp.i - -tests/AstVisitor.test.s: tests/AstVisitor.test.cpp.s -.PHONY : tests/AstVisitor.test.s - -# target to generate assembly for a file -tests/AstVisitor.test.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/AstVisitor.test.cpp.s -.PHONY : tests/AstVisitor.test.cpp.s - -tests/Autocomplete.test.o: tests/Autocomplete.test.cpp.o -.PHONY : tests/Autocomplete.test.o - -# target to build an object file -tests/Autocomplete.test.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/Autocomplete.test.cpp.o -.PHONY : tests/Autocomplete.test.cpp.o - -tests/Autocomplete.test.i: tests/Autocomplete.test.cpp.i -.PHONY : tests/Autocomplete.test.i - -# target to preprocess a source file -tests/Autocomplete.test.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/Autocomplete.test.cpp.i -.PHONY : tests/Autocomplete.test.cpp.i - -tests/Autocomplete.test.s: tests/Autocomplete.test.cpp.s -.PHONY : tests/Autocomplete.test.s - -# target to generate assembly for a file -tests/Autocomplete.test.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/Autocomplete.test.cpp.s -.PHONY : tests/Autocomplete.test.cpp.s - -tests/BuiltinDefinitions.test.o: tests/BuiltinDefinitions.test.cpp.o -.PHONY : tests/BuiltinDefinitions.test.o - -# target to build an object file -tests/BuiltinDefinitions.test.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/BuiltinDefinitions.test.cpp.o -.PHONY : tests/BuiltinDefinitions.test.cpp.o - -tests/BuiltinDefinitions.test.i: tests/BuiltinDefinitions.test.cpp.i -.PHONY : tests/BuiltinDefinitions.test.i - -# target to preprocess a source file -tests/BuiltinDefinitions.test.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/BuiltinDefinitions.test.cpp.i -.PHONY : tests/BuiltinDefinitions.test.cpp.i - -tests/BuiltinDefinitions.test.s: tests/BuiltinDefinitions.test.cpp.s -.PHONY : tests/BuiltinDefinitions.test.s - -# target to generate assembly for a file -tests/BuiltinDefinitions.test.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/BuiltinDefinitions.test.cpp.s -.PHONY : tests/BuiltinDefinitions.test.cpp.s - -tests/Compiler.test.o: tests/Compiler.test.cpp.o -.PHONY : tests/Compiler.test.o - -# target to build an object file -tests/Compiler.test.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/Compiler.test.cpp.o -.PHONY : tests/Compiler.test.cpp.o - -tests/Compiler.test.i: tests/Compiler.test.cpp.i -.PHONY : tests/Compiler.test.i - -# target to preprocess a source file -tests/Compiler.test.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/Compiler.test.cpp.i -.PHONY : tests/Compiler.test.cpp.i - -tests/Compiler.test.s: tests/Compiler.test.cpp.s -.PHONY : tests/Compiler.test.s - -# target to generate assembly for a file -tests/Compiler.test.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/Compiler.test.cpp.s -.PHONY : tests/Compiler.test.cpp.s - -tests/Config.test.o: tests/Config.test.cpp.o -.PHONY : tests/Config.test.o - -# target to build an object file -tests/Config.test.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/Config.test.cpp.o -.PHONY : tests/Config.test.cpp.o - -tests/Config.test.i: tests/Config.test.cpp.i -.PHONY : tests/Config.test.i - -# target to preprocess a source file -tests/Config.test.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/Config.test.cpp.i -.PHONY : tests/Config.test.cpp.i - -tests/Config.test.s: tests/Config.test.cpp.s -.PHONY : tests/Config.test.s - -# target to generate assembly for a file -tests/Config.test.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/Config.test.cpp.s -.PHONY : tests/Config.test.cpp.s - -tests/Conformance.test.o: tests/Conformance.test.cpp.o -.PHONY : tests/Conformance.test.o - -# target to build an object file -tests/Conformance.test.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Conformance.dir/build.make CMakeFiles/Luau.Conformance.dir/tests/Conformance.test.cpp.o -.PHONY : tests/Conformance.test.cpp.o - -tests/Conformance.test.i: tests/Conformance.test.cpp.i -.PHONY : tests/Conformance.test.i - -# target to preprocess a source file -tests/Conformance.test.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Conformance.dir/build.make CMakeFiles/Luau.Conformance.dir/tests/Conformance.test.cpp.i -.PHONY : tests/Conformance.test.cpp.i - -tests/Conformance.test.s: tests/Conformance.test.cpp.s -.PHONY : tests/Conformance.test.s - -# target to generate assembly for a file -tests/Conformance.test.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Conformance.dir/build.make CMakeFiles/Luau.Conformance.dir/tests/Conformance.test.cpp.s -.PHONY : tests/Conformance.test.cpp.s - -tests/Error.test.o: tests/Error.test.cpp.o -.PHONY : tests/Error.test.o - -# target to build an object file -tests/Error.test.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/Error.test.cpp.o -.PHONY : tests/Error.test.cpp.o - -tests/Error.test.i: tests/Error.test.cpp.i -.PHONY : tests/Error.test.i - -# target to preprocess a source file -tests/Error.test.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/Error.test.cpp.i -.PHONY : tests/Error.test.cpp.i - -tests/Error.test.s: tests/Error.test.cpp.s -.PHONY : tests/Error.test.s - -# target to generate assembly for a file -tests/Error.test.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/Error.test.cpp.s -.PHONY : tests/Error.test.cpp.s - -tests/Fixture.o: tests/Fixture.cpp.o -.PHONY : tests/Fixture.o - -# target to build an object file -tests/Fixture.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/Fixture.cpp.o -.PHONY : tests/Fixture.cpp.o - -tests/Fixture.i: tests/Fixture.cpp.i -.PHONY : tests/Fixture.i - -# target to preprocess a source file -tests/Fixture.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/Fixture.cpp.i -.PHONY : tests/Fixture.cpp.i - -tests/Fixture.s: tests/Fixture.cpp.s -.PHONY : tests/Fixture.s - -# target to generate assembly for a file -tests/Fixture.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/Fixture.cpp.s -.PHONY : tests/Fixture.cpp.s - -tests/Frontend.test.o: tests/Frontend.test.cpp.o -.PHONY : tests/Frontend.test.o - -# target to build an object file -tests/Frontend.test.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/Frontend.test.cpp.o -.PHONY : tests/Frontend.test.cpp.o - -tests/Frontend.test.i: tests/Frontend.test.cpp.i -.PHONY : tests/Frontend.test.i - -# target to preprocess a source file -tests/Frontend.test.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/Frontend.test.cpp.i -.PHONY : tests/Frontend.test.cpp.i - -tests/Frontend.test.s: tests/Frontend.test.cpp.s -.PHONY : tests/Frontend.test.s - -# target to generate assembly for a file -tests/Frontend.test.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/Frontend.test.cpp.s -.PHONY : tests/Frontend.test.cpp.s - -tests/JsonEncoder.test.o: tests/JsonEncoder.test.cpp.o -.PHONY : tests/JsonEncoder.test.o - -# target to build an object file -tests/JsonEncoder.test.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/JsonEncoder.test.cpp.o -.PHONY : tests/JsonEncoder.test.cpp.o - -tests/JsonEncoder.test.i: tests/JsonEncoder.test.cpp.i -.PHONY : tests/JsonEncoder.test.i - -# target to preprocess a source file -tests/JsonEncoder.test.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/JsonEncoder.test.cpp.i -.PHONY : tests/JsonEncoder.test.cpp.i - -tests/JsonEncoder.test.s: tests/JsonEncoder.test.cpp.s -.PHONY : tests/JsonEncoder.test.s - -# target to generate assembly for a file -tests/JsonEncoder.test.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/JsonEncoder.test.cpp.s -.PHONY : tests/JsonEncoder.test.cpp.s - -tests/LValue.test.o: tests/LValue.test.cpp.o -.PHONY : tests/LValue.test.o - -# target to build an object file -tests/LValue.test.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/LValue.test.cpp.o -.PHONY : tests/LValue.test.cpp.o - -tests/LValue.test.i: tests/LValue.test.cpp.i -.PHONY : tests/LValue.test.i - -# target to preprocess a source file -tests/LValue.test.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/LValue.test.cpp.i -.PHONY : tests/LValue.test.cpp.i - -tests/LValue.test.s: tests/LValue.test.cpp.s -.PHONY : tests/LValue.test.s - -# target to generate assembly for a file -tests/LValue.test.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/LValue.test.cpp.s -.PHONY : tests/LValue.test.cpp.s - -tests/Linter.test.o: tests/Linter.test.cpp.o -.PHONY : tests/Linter.test.o - -# target to build an object file -tests/Linter.test.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/Linter.test.cpp.o -.PHONY : tests/Linter.test.cpp.o - -tests/Linter.test.i: tests/Linter.test.cpp.i -.PHONY : tests/Linter.test.i - -# target to preprocess a source file -tests/Linter.test.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/Linter.test.cpp.i -.PHONY : tests/Linter.test.cpp.i - -tests/Linter.test.s: tests/Linter.test.cpp.s -.PHONY : tests/Linter.test.s - -# target to generate assembly for a file -tests/Linter.test.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/Linter.test.cpp.s -.PHONY : tests/Linter.test.cpp.s - -tests/Module.test.o: tests/Module.test.cpp.o -.PHONY : tests/Module.test.o - -# target to build an object file -tests/Module.test.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/Module.test.cpp.o -.PHONY : tests/Module.test.cpp.o - -tests/Module.test.i: tests/Module.test.cpp.i -.PHONY : tests/Module.test.i - -# target to preprocess a source file -tests/Module.test.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/Module.test.cpp.i -.PHONY : tests/Module.test.cpp.i - -tests/Module.test.s: tests/Module.test.cpp.s -.PHONY : tests/Module.test.s - -# target to generate assembly for a file -tests/Module.test.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/Module.test.cpp.s -.PHONY : tests/Module.test.cpp.s - -tests/NonstrictMode.test.o: tests/NonstrictMode.test.cpp.o -.PHONY : tests/NonstrictMode.test.o - -# target to build an object file -tests/NonstrictMode.test.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/NonstrictMode.test.cpp.o -.PHONY : tests/NonstrictMode.test.cpp.o - -tests/NonstrictMode.test.i: tests/NonstrictMode.test.cpp.i -.PHONY : tests/NonstrictMode.test.i - -# target to preprocess a source file -tests/NonstrictMode.test.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/NonstrictMode.test.cpp.i -.PHONY : tests/NonstrictMode.test.cpp.i - -tests/NonstrictMode.test.s: tests/NonstrictMode.test.cpp.s -.PHONY : tests/NonstrictMode.test.s - -# target to generate assembly for a file -tests/NonstrictMode.test.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/NonstrictMode.test.cpp.s -.PHONY : tests/NonstrictMode.test.cpp.s - -tests/Parser.test.o: tests/Parser.test.cpp.o -.PHONY : tests/Parser.test.o - -# target to build an object file -tests/Parser.test.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/Parser.test.cpp.o -.PHONY : tests/Parser.test.cpp.o - -tests/Parser.test.i: tests/Parser.test.cpp.i -.PHONY : tests/Parser.test.i - -# target to preprocess a source file -tests/Parser.test.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/Parser.test.cpp.i -.PHONY : tests/Parser.test.cpp.i - -tests/Parser.test.s: tests/Parser.test.cpp.s -.PHONY : tests/Parser.test.s - -# target to generate assembly for a file -tests/Parser.test.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/Parser.test.cpp.s -.PHONY : tests/Parser.test.cpp.s - -tests/Repl.test.o: tests/Repl.test.cpp.o -.PHONY : tests/Repl.test.o - -# target to build an object file -tests/Repl.test.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.CLI.Test.dir/build.make CMakeFiles/Luau.CLI.Test.dir/tests/Repl.test.cpp.o -.PHONY : tests/Repl.test.cpp.o - -tests/Repl.test.i: tests/Repl.test.cpp.i -.PHONY : tests/Repl.test.i - -# target to preprocess a source file -tests/Repl.test.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.CLI.Test.dir/build.make CMakeFiles/Luau.CLI.Test.dir/tests/Repl.test.cpp.i -.PHONY : tests/Repl.test.cpp.i - -tests/Repl.test.s: tests/Repl.test.cpp.s -.PHONY : tests/Repl.test.s - -# target to generate assembly for a file -tests/Repl.test.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.CLI.Test.dir/build.make CMakeFiles/Luau.CLI.Test.dir/tests/Repl.test.cpp.s -.PHONY : tests/Repl.test.cpp.s - -tests/RequireTracer.test.o: tests/RequireTracer.test.cpp.o -.PHONY : tests/RequireTracer.test.o - -# target to build an object file -tests/RequireTracer.test.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/RequireTracer.test.cpp.o -.PHONY : tests/RequireTracer.test.cpp.o - -tests/RequireTracer.test.i: tests/RequireTracer.test.cpp.i -.PHONY : tests/RequireTracer.test.i - -# target to preprocess a source file -tests/RequireTracer.test.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/RequireTracer.test.cpp.i -.PHONY : tests/RequireTracer.test.cpp.i - -tests/RequireTracer.test.s: tests/RequireTracer.test.cpp.s -.PHONY : tests/RequireTracer.test.s - -# target to generate assembly for a file -tests/RequireTracer.test.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/RequireTracer.test.cpp.s -.PHONY : tests/RequireTracer.test.cpp.s - -tests/StringUtils.test.o: tests/StringUtils.test.cpp.o -.PHONY : tests/StringUtils.test.o - -# target to build an object file -tests/StringUtils.test.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/StringUtils.test.cpp.o -.PHONY : tests/StringUtils.test.cpp.o - -tests/StringUtils.test.i: tests/StringUtils.test.cpp.i -.PHONY : tests/StringUtils.test.i - -# target to preprocess a source file -tests/StringUtils.test.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/StringUtils.test.cpp.i -.PHONY : tests/StringUtils.test.cpp.i - -tests/StringUtils.test.s: tests/StringUtils.test.cpp.s -.PHONY : tests/StringUtils.test.s - -# target to generate assembly for a file -tests/StringUtils.test.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/StringUtils.test.cpp.s -.PHONY : tests/StringUtils.test.cpp.s - -tests/Symbol.test.o: tests/Symbol.test.cpp.o -.PHONY : tests/Symbol.test.o - -# target to build an object file -tests/Symbol.test.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/Symbol.test.cpp.o -.PHONY : tests/Symbol.test.cpp.o - -tests/Symbol.test.i: tests/Symbol.test.cpp.i -.PHONY : tests/Symbol.test.i - -# target to preprocess a source file -tests/Symbol.test.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/Symbol.test.cpp.i -.PHONY : tests/Symbol.test.cpp.i - -tests/Symbol.test.s: tests/Symbol.test.cpp.s -.PHONY : tests/Symbol.test.s - -# target to generate assembly for a file -tests/Symbol.test.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/Symbol.test.cpp.s -.PHONY : tests/Symbol.test.cpp.s - -tests/ToDot.test.o: tests/ToDot.test.cpp.o -.PHONY : tests/ToDot.test.o - -# target to build an object file -tests/ToDot.test.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/ToDot.test.cpp.o -.PHONY : tests/ToDot.test.cpp.o - -tests/ToDot.test.i: tests/ToDot.test.cpp.i -.PHONY : tests/ToDot.test.i - -# target to preprocess a source file -tests/ToDot.test.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/ToDot.test.cpp.i -.PHONY : tests/ToDot.test.cpp.i - -tests/ToDot.test.s: tests/ToDot.test.cpp.s -.PHONY : tests/ToDot.test.s - -# target to generate assembly for a file -tests/ToDot.test.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/ToDot.test.cpp.s -.PHONY : tests/ToDot.test.cpp.s - -tests/ToString.test.o: tests/ToString.test.cpp.o -.PHONY : tests/ToString.test.o - -# target to build an object file -tests/ToString.test.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/ToString.test.cpp.o -.PHONY : tests/ToString.test.cpp.o - -tests/ToString.test.i: tests/ToString.test.cpp.i -.PHONY : tests/ToString.test.i - -# target to preprocess a source file -tests/ToString.test.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/ToString.test.cpp.i -.PHONY : tests/ToString.test.cpp.i - -tests/ToString.test.s: tests/ToString.test.cpp.s -.PHONY : tests/ToString.test.s - -# target to generate assembly for a file -tests/ToString.test.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/ToString.test.cpp.s -.PHONY : tests/ToString.test.cpp.s - -tests/TopoSort.test.o: tests/TopoSort.test.cpp.o -.PHONY : tests/TopoSort.test.o - -# target to build an object file -tests/TopoSort.test.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/TopoSort.test.cpp.o -.PHONY : tests/TopoSort.test.cpp.o - -tests/TopoSort.test.i: tests/TopoSort.test.cpp.i -.PHONY : tests/TopoSort.test.i - -# target to preprocess a source file -tests/TopoSort.test.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/TopoSort.test.cpp.i -.PHONY : tests/TopoSort.test.cpp.i - -tests/TopoSort.test.s: tests/TopoSort.test.cpp.s -.PHONY : tests/TopoSort.test.s - -# target to generate assembly for a file -tests/TopoSort.test.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/TopoSort.test.cpp.s -.PHONY : tests/TopoSort.test.cpp.s - -tests/Transpiler.test.o: tests/Transpiler.test.cpp.o -.PHONY : tests/Transpiler.test.o - -# target to build an object file -tests/Transpiler.test.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/Transpiler.test.cpp.o -.PHONY : tests/Transpiler.test.cpp.o - -tests/Transpiler.test.i: tests/Transpiler.test.cpp.i -.PHONY : tests/Transpiler.test.i - -# target to preprocess a source file -tests/Transpiler.test.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/Transpiler.test.cpp.i -.PHONY : tests/Transpiler.test.cpp.i - -tests/Transpiler.test.s: tests/Transpiler.test.cpp.s -.PHONY : tests/Transpiler.test.s - -# target to generate assembly for a file -tests/Transpiler.test.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/Transpiler.test.cpp.s -.PHONY : tests/Transpiler.test.cpp.s - -tests/TypeInfer.aliases.test.o: tests/TypeInfer.aliases.test.cpp.o -.PHONY : tests/TypeInfer.aliases.test.o - -# target to build an object file -tests/TypeInfer.aliases.test.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/TypeInfer.aliases.test.cpp.o -.PHONY : tests/TypeInfer.aliases.test.cpp.o - -tests/TypeInfer.aliases.test.i: tests/TypeInfer.aliases.test.cpp.i -.PHONY : tests/TypeInfer.aliases.test.i - -# target to preprocess a source file -tests/TypeInfer.aliases.test.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/TypeInfer.aliases.test.cpp.i -.PHONY : tests/TypeInfer.aliases.test.cpp.i - -tests/TypeInfer.aliases.test.s: tests/TypeInfer.aliases.test.cpp.s -.PHONY : tests/TypeInfer.aliases.test.s - -# target to generate assembly for a file -tests/TypeInfer.aliases.test.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/TypeInfer.aliases.test.cpp.s -.PHONY : tests/TypeInfer.aliases.test.cpp.s - -tests/TypeInfer.annotations.test.o: tests/TypeInfer.annotations.test.cpp.o -.PHONY : tests/TypeInfer.annotations.test.o - -# target to build an object file -tests/TypeInfer.annotations.test.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/TypeInfer.annotations.test.cpp.o -.PHONY : tests/TypeInfer.annotations.test.cpp.o - -tests/TypeInfer.annotations.test.i: tests/TypeInfer.annotations.test.cpp.i -.PHONY : tests/TypeInfer.annotations.test.i - -# target to preprocess a source file -tests/TypeInfer.annotations.test.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/TypeInfer.annotations.test.cpp.i -.PHONY : tests/TypeInfer.annotations.test.cpp.i - -tests/TypeInfer.annotations.test.s: tests/TypeInfer.annotations.test.cpp.s -.PHONY : tests/TypeInfer.annotations.test.s - -# target to generate assembly for a file -tests/TypeInfer.annotations.test.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/TypeInfer.annotations.test.cpp.s -.PHONY : tests/TypeInfer.annotations.test.cpp.s - -tests/TypeInfer.builtins.test.o: tests/TypeInfer.builtins.test.cpp.o -.PHONY : tests/TypeInfer.builtins.test.o - -# target to build an object file -tests/TypeInfer.builtins.test.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/TypeInfer.builtins.test.cpp.o -.PHONY : tests/TypeInfer.builtins.test.cpp.o - -tests/TypeInfer.builtins.test.i: tests/TypeInfer.builtins.test.cpp.i -.PHONY : tests/TypeInfer.builtins.test.i - -# target to preprocess a source file -tests/TypeInfer.builtins.test.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/TypeInfer.builtins.test.cpp.i -.PHONY : tests/TypeInfer.builtins.test.cpp.i - -tests/TypeInfer.builtins.test.s: tests/TypeInfer.builtins.test.cpp.s -.PHONY : tests/TypeInfer.builtins.test.s - -# target to generate assembly for a file -tests/TypeInfer.builtins.test.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/TypeInfer.builtins.test.cpp.s -.PHONY : tests/TypeInfer.builtins.test.cpp.s - -tests/TypeInfer.classes.test.o: tests/TypeInfer.classes.test.cpp.o -.PHONY : tests/TypeInfer.classes.test.o - -# target to build an object file -tests/TypeInfer.classes.test.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/TypeInfer.classes.test.cpp.o -.PHONY : tests/TypeInfer.classes.test.cpp.o - -tests/TypeInfer.classes.test.i: tests/TypeInfer.classes.test.cpp.i -.PHONY : tests/TypeInfer.classes.test.i - -# target to preprocess a source file -tests/TypeInfer.classes.test.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/TypeInfer.classes.test.cpp.i -.PHONY : tests/TypeInfer.classes.test.cpp.i - -tests/TypeInfer.classes.test.s: tests/TypeInfer.classes.test.cpp.s -.PHONY : tests/TypeInfer.classes.test.s - -# target to generate assembly for a file -tests/TypeInfer.classes.test.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/TypeInfer.classes.test.cpp.s -.PHONY : tests/TypeInfer.classes.test.cpp.s - -tests/TypeInfer.definitions.test.o: tests/TypeInfer.definitions.test.cpp.o -.PHONY : tests/TypeInfer.definitions.test.o - -# target to build an object file -tests/TypeInfer.definitions.test.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/TypeInfer.definitions.test.cpp.o -.PHONY : tests/TypeInfer.definitions.test.cpp.o - -tests/TypeInfer.definitions.test.i: tests/TypeInfer.definitions.test.cpp.i -.PHONY : tests/TypeInfer.definitions.test.i - -# target to preprocess a source file -tests/TypeInfer.definitions.test.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/TypeInfer.definitions.test.cpp.i -.PHONY : tests/TypeInfer.definitions.test.cpp.i - -tests/TypeInfer.definitions.test.s: tests/TypeInfer.definitions.test.cpp.s -.PHONY : tests/TypeInfer.definitions.test.s - -# target to generate assembly for a file -tests/TypeInfer.definitions.test.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/TypeInfer.definitions.test.cpp.s -.PHONY : tests/TypeInfer.definitions.test.cpp.s - -tests/TypeInfer.generics.test.o: tests/TypeInfer.generics.test.cpp.o -.PHONY : tests/TypeInfer.generics.test.o - -# target to build an object file -tests/TypeInfer.generics.test.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/TypeInfer.generics.test.cpp.o -.PHONY : tests/TypeInfer.generics.test.cpp.o - -tests/TypeInfer.generics.test.i: tests/TypeInfer.generics.test.cpp.i -.PHONY : tests/TypeInfer.generics.test.i - -# target to preprocess a source file -tests/TypeInfer.generics.test.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/TypeInfer.generics.test.cpp.i -.PHONY : tests/TypeInfer.generics.test.cpp.i - -tests/TypeInfer.generics.test.s: tests/TypeInfer.generics.test.cpp.s -.PHONY : tests/TypeInfer.generics.test.s - -# target to generate assembly for a file -tests/TypeInfer.generics.test.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/TypeInfer.generics.test.cpp.s -.PHONY : tests/TypeInfer.generics.test.cpp.s - -tests/TypeInfer.intersectionTypes.test.o: tests/TypeInfer.intersectionTypes.test.cpp.o -.PHONY : tests/TypeInfer.intersectionTypes.test.o - -# target to build an object file -tests/TypeInfer.intersectionTypes.test.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/TypeInfer.intersectionTypes.test.cpp.o -.PHONY : tests/TypeInfer.intersectionTypes.test.cpp.o - -tests/TypeInfer.intersectionTypes.test.i: tests/TypeInfer.intersectionTypes.test.cpp.i -.PHONY : tests/TypeInfer.intersectionTypes.test.i - -# target to preprocess a source file -tests/TypeInfer.intersectionTypes.test.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/TypeInfer.intersectionTypes.test.cpp.i -.PHONY : tests/TypeInfer.intersectionTypes.test.cpp.i - -tests/TypeInfer.intersectionTypes.test.s: tests/TypeInfer.intersectionTypes.test.cpp.s -.PHONY : tests/TypeInfer.intersectionTypes.test.s - -# target to generate assembly for a file -tests/TypeInfer.intersectionTypes.test.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/TypeInfer.intersectionTypes.test.cpp.s -.PHONY : tests/TypeInfer.intersectionTypes.test.cpp.s - -tests/TypeInfer.provisional.test.o: tests/TypeInfer.provisional.test.cpp.o -.PHONY : tests/TypeInfer.provisional.test.o - -# target to build an object file -tests/TypeInfer.provisional.test.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/TypeInfer.provisional.test.cpp.o -.PHONY : tests/TypeInfer.provisional.test.cpp.o - -tests/TypeInfer.provisional.test.i: tests/TypeInfer.provisional.test.cpp.i -.PHONY : tests/TypeInfer.provisional.test.i - -# target to preprocess a source file -tests/TypeInfer.provisional.test.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/TypeInfer.provisional.test.cpp.i -.PHONY : tests/TypeInfer.provisional.test.cpp.i - -tests/TypeInfer.provisional.test.s: tests/TypeInfer.provisional.test.cpp.s -.PHONY : tests/TypeInfer.provisional.test.s - -# target to generate assembly for a file -tests/TypeInfer.provisional.test.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/TypeInfer.provisional.test.cpp.s -.PHONY : tests/TypeInfer.provisional.test.cpp.s - -tests/TypeInfer.refinements.test.o: tests/TypeInfer.refinements.test.cpp.o -.PHONY : tests/TypeInfer.refinements.test.o - -# target to build an object file -tests/TypeInfer.refinements.test.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/TypeInfer.refinements.test.cpp.o -.PHONY : tests/TypeInfer.refinements.test.cpp.o - -tests/TypeInfer.refinements.test.i: tests/TypeInfer.refinements.test.cpp.i -.PHONY : tests/TypeInfer.refinements.test.i - -# target to preprocess a source file -tests/TypeInfer.refinements.test.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/TypeInfer.refinements.test.cpp.i -.PHONY : tests/TypeInfer.refinements.test.cpp.i - -tests/TypeInfer.refinements.test.s: tests/TypeInfer.refinements.test.cpp.s -.PHONY : tests/TypeInfer.refinements.test.s - -# target to generate assembly for a file -tests/TypeInfer.refinements.test.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/TypeInfer.refinements.test.cpp.s -.PHONY : tests/TypeInfer.refinements.test.cpp.s - -tests/TypeInfer.singletons.test.o: tests/TypeInfer.singletons.test.cpp.o -.PHONY : tests/TypeInfer.singletons.test.o - -# target to build an object file -tests/TypeInfer.singletons.test.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/TypeInfer.singletons.test.cpp.o -.PHONY : tests/TypeInfer.singletons.test.cpp.o - -tests/TypeInfer.singletons.test.i: tests/TypeInfer.singletons.test.cpp.i -.PHONY : tests/TypeInfer.singletons.test.i - -# target to preprocess a source file -tests/TypeInfer.singletons.test.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/TypeInfer.singletons.test.cpp.i -.PHONY : tests/TypeInfer.singletons.test.cpp.i - -tests/TypeInfer.singletons.test.s: tests/TypeInfer.singletons.test.cpp.s -.PHONY : tests/TypeInfer.singletons.test.s - -# target to generate assembly for a file -tests/TypeInfer.singletons.test.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/TypeInfer.singletons.test.cpp.s -.PHONY : tests/TypeInfer.singletons.test.cpp.s - -tests/TypeInfer.tables.test.o: tests/TypeInfer.tables.test.cpp.o -.PHONY : tests/TypeInfer.tables.test.o - -# target to build an object file -tests/TypeInfer.tables.test.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/TypeInfer.tables.test.cpp.o -.PHONY : tests/TypeInfer.tables.test.cpp.o - -tests/TypeInfer.tables.test.i: tests/TypeInfer.tables.test.cpp.i -.PHONY : tests/TypeInfer.tables.test.i - -# target to preprocess a source file -tests/TypeInfer.tables.test.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/TypeInfer.tables.test.cpp.i -.PHONY : tests/TypeInfer.tables.test.cpp.i - -tests/TypeInfer.tables.test.s: tests/TypeInfer.tables.test.cpp.s -.PHONY : tests/TypeInfer.tables.test.s - -# target to generate assembly for a file -tests/TypeInfer.tables.test.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/TypeInfer.tables.test.cpp.s -.PHONY : tests/TypeInfer.tables.test.cpp.s - -tests/TypeInfer.test.o: tests/TypeInfer.test.cpp.o -.PHONY : tests/TypeInfer.test.o - -# target to build an object file -tests/TypeInfer.test.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/TypeInfer.test.cpp.o -.PHONY : tests/TypeInfer.test.cpp.o - -tests/TypeInfer.test.i: tests/TypeInfer.test.cpp.i -.PHONY : tests/TypeInfer.test.i - -# target to preprocess a source file -tests/TypeInfer.test.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/TypeInfer.test.cpp.i -.PHONY : tests/TypeInfer.test.cpp.i - -tests/TypeInfer.test.s: tests/TypeInfer.test.cpp.s -.PHONY : tests/TypeInfer.test.s - -# target to generate assembly for a file -tests/TypeInfer.test.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/TypeInfer.test.cpp.s -.PHONY : tests/TypeInfer.test.cpp.s - -tests/TypeInfer.tryUnify.test.o: tests/TypeInfer.tryUnify.test.cpp.o -.PHONY : tests/TypeInfer.tryUnify.test.o - -# target to build an object file -tests/TypeInfer.tryUnify.test.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/TypeInfer.tryUnify.test.cpp.o -.PHONY : tests/TypeInfer.tryUnify.test.cpp.o - -tests/TypeInfer.tryUnify.test.i: tests/TypeInfer.tryUnify.test.cpp.i -.PHONY : tests/TypeInfer.tryUnify.test.i - -# target to preprocess a source file -tests/TypeInfer.tryUnify.test.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/TypeInfer.tryUnify.test.cpp.i -.PHONY : tests/TypeInfer.tryUnify.test.cpp.i - -tests/TypeInfer.tryUnify.test.s: tests/TypeInfer.tryUnify.test.cpp.s -.PHONY : tests/TypeInfer.tryUnify.test.s - -# target to generate assembly for a file -tests/TypeInfer.tryUnify.test.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/TypeInfer.tryUnify.test.cpp.s -.PHONY : tests/TypeInfer.tryUnify.test.cpp.s - -tests/TypeInfer.typePacks.o: tests/TypeInfer.typePacks.cpp.o -.PHONY : tests/TypeInfer.typePacks.o - -# target to build an object file -tests/TypeInfer.typePacks.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/TypeInfer.typePacks.cpp.o -.PHONY : tests/TypeInfer.typePacks.cpp.o - -tests/TypeInfer.typePacks.i: tests/TypeInfer.typePacks.cpp.i -.PHONY : tests/TypeInfer.typePacks.i - -# target to preprocess a source file -tests/TypeInfer.typePacks.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/TypeInfer.typePacks.cpp.i -.PHONY : tests/TypeInfer.typePacks.cpp.i - -tests/TypeInfer.typePacks.s: tests/TypeInfer.typePacks.cpp.s -.PHONY : tests/TypeInfer.typePacks.s - -# target to generate assembly for a file -tests/TypeInfer.typePacks.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/TypeInfer.typePacks.cpp.s -.PHONY : tests/TypeInfer.typePacks.cpp.s - -tests/TypeInfer.unionTypes.test.o: tests/TypeInfer.unionTypes.test.cpp.o -.PHONY : tests/TypeInfer.unionTypes.test.o - -# target to build an object file -tests/TypeInfer.unionTypes.test.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/TypeInfer.unionTypes.test.cpp.o -.PHONY : tests/TypeInfer.unionTypes.test.cpp.o - -tests/TypeInfer.unionTypes.test.i: tests/TypeInfer.unionTypes.test.cpp.i -.PHONY : tests/TypeInfer.unionTypes.test.i - -# target to preprocess a source file -tests/TypeInfer.unionTypes.test.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/TypeInfer.unionTypes.test.cpp.i -.PHONY : tests/TypeInfer.unionTypes.test.cpp.i - -tests/TypeInfer.unionTypes.test.s: tests/TypeInfer.unionTypes.test.cpp.s -.PHONY : tests/TypeInfer.unionTypes.test.s - -# target to generate assembly for a file -tests/TypeInfer.unionTypes.test.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/TypeInfer.unionTypes.test.cpp.s -.PHONY : tests/TypeInfer.unionTypes.test.cpp.s - -tests/TypePack.test.o: tests/TypePack.test.cpp.o -.PHONY : tests/TypePack.test.o - -# target to build an object file -tests/TypePack.test.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/TypePack.test.cpp.o -.PHONY : tests/TypePack.test.cpp.o - -tests/TypePack.test.i: tests/TypePack.test.cpp.i -.PHONY : tests/TypePack.test.i - -# target to preprocess a source file -tests/TypePack.test.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/TypePack.test.cpp.i -.PHONY : tests/TypePack.test.cpp.i - -tests/TypePack.test.s: tests/TypePack.test.cpp.s -.PHONY : tests/TypePack.test.s - -# target to generate assembly for a file -tests/TypePack.test.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/TypePack.test.cpp.s -.PHONY : tests/TypePack.test.cpp.s - -tests/TypeVar.test.o: tests/TypeVar.test.cpp.o -.PHONY : tests/TypeVar.test.o - -# target to build an object file -tests/TypeVar.test.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/TypeVar.test.cpp.o -.PHONY : tests/TypeVar.test.cpp.o - -tests/TypeVar.test.i: tests/TypeVar.test.cpp.i -.PHONY : tests/TypeVar.test.i - -# target to preprocess a source file -tests/TypeVar.test.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/TypeVar.test.cpp.i -.PHONY : tests/TypeVar.test.cpp.i - -tests/TypeVar.test.s: tests/TypeVar.test.cpp.s -.PHONY : tests/TypeVar.test.s - -# target to generate assembly for a file -tests/TypeVar.test.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/TypeVar.test.cpp.s -.PHONY : tests/TypeVar.test.cpp.s - -tests/Variant.test.o: tests/Variant.test.cpp.o -.PHONY : tests/Variant.test.o - -# target to build an object file -tests/Variant.test.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/Variant.test.cpp.o -.PHONY : tests/Variant.test.cpp.o - -tests/Variant.test.i: tests/Variant.test.cpp.i -.PHONY : tests/Variant.test.i - -# target to preprocess a source file -tests/Variant.test.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/Variant.test.cpp.i -.PHONY : tests/Variant.test.cpp.i - -tests/Variant.test.s: tests/Variant.test.cpp.s -.PHONY : tests/Variant.test.s - -# target to generate assembly for a file -tests/Variant.test.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/Variant.test.cpp.s -.PHONY : tests/Variant.test.cpp.s - -tests/main.o: tests/main.cpp.o -.PHONY : tests/main.o - -# target to build an object file -tests/main.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/main.cpp.o - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Conformance.dir/build.make CMakeFiles/Luau.Conformance.dir/tests/main.cpp.o - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.CLI.Test.dir/build.make CMakeFiles/Luau.CLI.Test.dir/tests/main.cpp.o -.PHONY : tests/main.cpp.o - -tests/main.i: tests/main.cpp.i -.PHONY : tests/main.i - -# target to preprocess a source file -tests/main.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/main.cpp.i - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Conformance.dir/build.make CMakeFiles/Luau.Conformance.dir/tests/main.cpp.i - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.CLI.Test.dir/build.make CMakeFiles/Luau.CLI.Test.dir/tests/main.cpp.i -.PHONY : tests/main.cpp.i - -tests/main.s: tests/main.cpp.s -.PHONY : tests/main.s - -# target to generate assembly for a file -tests/main.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.UnitTest.dir/build.make CMakeFiles/Luau.UnitTest.dir/tests/main.cpp.s - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.Conformance.dir/build.make CMakeFiles/Luau.Conformance.dir/tests/main.cpp.s - $(MAKE) $(MAKESILENT) -f CMakeFiles/Luau.CLI.Test.dir/build.make CMakeFiles/Luau.CLI.Test.dir/tests/main.cpp.s -.PHONY : tests/main.cpp.s - -# Help Target -help: - @echo "The following are some of the valid targets for this Makefile:" - @echo "... all (the default if no target is provided)" - @echo "... clean" - @echo "... depend" - @echo "... edit_cache" - @echo "... rebuild_cache" - @echo "... Luau.Analysis" - @echo "... Luau.Analyze.CLI" - @echo "... Luau.Ast" - @echo "... Luau.Ast.CLI" - @echo "... Luau.CLI.Test" - @echo "... Luau.Compiler" - @echo "... Luau.Conformance" - @echo "... Luau.Repl.CLI" - @echo "... Luau.UnitTest" - @echo "... Luau.VM" - @echo "... isocline" - @echo "... Analysis/src/AstQuery.o" - @echo "... Analysis/src/AstQuery.i" - @echo "... Analysis/src/AstQuery.s" - @echo "... Analysis/src/Autocomplete.o" - @echo "... Analysis/src/Autocomplete.i" - @echo "... Analysis/src/Autocomplete.s" - @echo "... Analysis/src/BuiltinDefinitions.o" - @echo "... Analysis/src/BuiltinDefinitions.i" - @echo "... Analysis/src/BuiltinDefinitions.s" - @echo "... Analysis/src/Config.o" - @echo "... Analysis/src/Config.i" - @echo "... Analysis/src/Config.s" - @echo "... Analysis/src/EmbeddedBuiltinDefinitions.o" - @echo "... Analysis/src/EmbeddedBuiltinDefinitions.i" - @echo "... Analysis/src/EmbeddedBuiltinDefinitions.s" - @echo "... Analysis/src/Error.o" - @echo "... Analysis/src/Error.i" - @echo "... Analysis/src/Error.s" - @echo "... Analysis/src/Frontend.o" - @echo "... Analysis/src/Frontend.i" - @echo "... Analysis/src/Frontend.s" - @echo "... Analysis/src/IostreamHelpers.o" - @echo "... Analysis/src/IostreamHelpers.i" - @echo "... Analysis/src/IostreamHelpers.s" - @echo "... Analysis/src/JsonEncoder.o" - @echo "... Analysis/src/JsonEncoder.i" - @echo "... Analysis/src/JsonEncoder.s" - @echo "... Analysis/src/LValue.o" - @echo "... Analysis/src/LValue.i" - @echo "... Analysis/src/LValue.s" - @echo "... Analysis/src/Linter.o" - @echo "... Analysis/src/Linter.i" - @echo "... Analysis/src/Linter.s" - @echo "... Analysis/src/Module.o" - @echo "... Analysis/src/Module.i" - @echo "... Analysis/src/Module.s" - @echo "... Analysis/src/Quantify.o" - @echo "... Analysis/src/Quantify.i" - @echo "... Analysis/src/Quantify.s" - @echo "... Analysis/src/RequireTracer.o" - @echo "... Analysis/src/RequireTracer.i" - @echo "... Analysis/src/RequireTracer.s" - @echo "... Analysis/src/Scope.o" - @echo "... Analysis/src/Scope.i" - @echo "... Analysis/src/Scope.s" - @echo "... Analysis/src/Substitution.o" - @echo "... Analysis/src/Substitution.i" - @echo "... Analysis/src/Substitution.s" - @echo "... Analysis/src/Symbol.o" - @echo "... Analysis/src/Symbol.i" - @echo "... Analysis/src/Symbol.s" - @echo "... Analysis/src/ToDot.o" - @echo "... Analysis/src/ToDot.i" - @echo "... Analysis/src/ToDot.s" - @echo "... Analysis/src/ToString.o" - @echo "... Analysis/src/ToString.i" - @echo "... Analysis/src/ToString.s" - @echo "... Analysis/src/TopoSortStatements.o" - @echo "... Analysis/src/TopoSortStatements.i" - @echo "... Analysis/src/TopoSortStatements.s" - @echo "... Analysis/src/Transpiler.o" - @echo "... Analysis/src/Transpiler.i" - @echo "... Analysis/src/Transpiler.s" - @echo "... Analysis/src/TxnLog.o" - @echo "... Analysis/src/TxnLog.i" - @echo "... Analysis/src/TxnLog.s" - @echo "... Analysis/src/TypeAttach.o" - @echo "... Analysis/src/TypeAttach.i" - @echo "... Analysis/src/TypeAttach.s" - @echo "... Analysis/src/TypeInfer.o" - @echo "... Analysis/src/TypeInfer.i" - @echo "... Analysis/src/TypeInfer.s" - @echo "... Analysis/src/TypePack.o" - @echo "... Analysis/src/TypePack.i" - @echo "... Analysis/src/TypePack.s" - @echo "... Analysis/src/TypeUtils.o" - @echo "... Analysis/src/TypeUtils.i" - @echo "... Analysis/src/TypeUtils.s" - @echo "... Analysis/src/TypeVar.o" - @echo "... Analysis/src/TypeVar.i" - @echo "... Analysis/src/TypeVar.s" - @echo "... Analysis/src/TypedAllocator.o" - @echo "... Analysis/src/TypedAllocator.i" - @echo "... Analysis/src/TypedAllocator.s" - @echo "... Analysis/src/Unifiable.o" - @echo "... Analysis/src/Unifiable.i" - @echo "... Analysis/src/Unifiable.s" - @echo "... Analysis/src/Unifier.o" - @echo "... Analysis/src/Unifier.i" - @echo "... Analysis/src/Unifier.s" - @echo "... Ast/src/Ast.o" - @echo "... Ast/src/Ast.i" - @echo "... Ast/src/Ast.s" - @echo "... Ast/src/Confusables.o" - @echo "... Ast/src/Confusables.i" - @echo "... Ast/src/Confusables.s" - @echo "... Ast/src/Lexer.o" - @echo "... Ast/src/Lexer.i" - @echo "... Ast/src/Lexer.s" - @echo "... Ast/src/Location.o" - @echo "... Ast/src/Location.i" - @echo "... Ast/src/Location.s" - @echo "... Ast/src/Parser.o" - @echo "... Ast/src/Parser.i" - @echo "... Ast/src/Parser.s" - @echo "... Ast/src/StringUtils.o" - @echo "... Ast/src/StringUtils.i" - @echo "... Ast/src/StringUtils.s" - @echo "... Ast/src/TimeTrace.o" - @echo "... Ast/src/TimeTrace.i" - @echo "... Ast/src/TimeTrace.s" - @echo "... CLI/Analyze.o" - @echo "... CLI/Analyze.i" - @echo "... CLI/Analyze.s" - @echo "... CLI/Ast.o" - @echo "... CLI/Ast.i" - @echo "... CLI/Ast.s" - @echo "... CLI/Coverage.o" - @echo "... CLI/Coverage.i" - @echo "... CLI/Coverage.s" - @echo "... CLI/FileUtils.o" - @echo "... CLI/FileUtils.i" - @echo "... CLI/FileUtils.s" - @echo "... CLI/Profiler.o" - @echo "... CLI/Profiler.i" - @echo "... CLI/Profiler.s" - @echo "... CLI/Repl.o" - @echo "... CLI/Repl.i" - @echo "... CLI/Repl.s" - @echo "... CLI/ReplEntry.o" - @echo "... CLI/ReplEntry.i" - @echo "... CLI/ReplEntry.s" - @echo "... Compiler/src/Builtins.o" - @echo "... Compiler/src/Builtins.i" - @echo "... Compiler/src/Builtins.s" - @echo "... Compiler/src/BytecodeBuilder.o" - @echo "... Compiler/src/BytecodeBuilder.i" - @echo "... Compiler/src/BytecodeBuilder.s" - @echo "... Compiler/src/Compiler.o" - @echo "... Compiler/src/Compiler.i" - @echo "... Compiler/src/Compiler.s" - @echo "... Compiler/src/ConstantFolding.o" - @echo "... Compiler/src/ConstantFolding.i" - @echo "... Compiler/src/ConstantFolding.s" - @echo "... Compiler/src/TableShape.o" - @echo "... Compiler/src/TableShape.i" - @echo "... Compiler/src/TableShape.s" - @echo "... Compiler/src/ValueTracking.o" - @echo "... Compiler/src/ValueTracking.i" - @echo "... Compiler/src/ValueTracking.s" - @echo "... Compiler/src/lcode.o" - @echo "... Compiler/src/lcode.i" - @echo "... Compiler/src/lcode.s" - @echo "... VM/src/lapi.o" - @echo "... VM/src/lapi.i" - @echo "... VM/src/lapi.s" - @echo "... VM/src/laux.o" - @echo "... VM/src/laux.i" - @echo "... VM/src/laux.s" - @echo "... VM/src/lbaselib.o" - @echo "... VM/src/lbaselib.i" - @echo "... VM/src/lbaselib.s" - @echo "... VM/src/lbitlib.o" - @echo "... VM/src/lbitlib.i" - @echo "... VM/src/lbitlib.s" - @echo "... VM/src/lbuiltins.o" - @echo "... VM/src/lbuiltins.i" - @echo "... VM/src/lbuiltins.s" - @echo "... VM/src/lcorolib.o" - @echo "... VM/src/lcorolib.i" - @echo "... VM/src/lcorolib.s" - @echo "... VM/src/ldblib.o" - @echo "... VM/src/ldblib.i" - @echo "... VM/src/ldblib.s" - @echo "... VM/src/ldebug.o" - @echo "... VM/src/ldebug.i" - @echo "... VM/src/ldebug.s" - @echo "... VM/src/ldo.o" - @echo "... VM/src/ldo.i" - @echo "... VM/src/ldo.s" - @echo "... VM/src/lfunc.o" - @echo "... VM/src/lfunc.i" - @echo "... VM/src/lfunc.s" - @echo "... VM/src/lgc.o" - @echo "... VM/src/lgc.i" - @echo "... VM/src/lgc.s" - @echo "... VM/src/lgcdebug.o" - @echo "... VM/src/lgcdebug.i" - @echo "... VM/src/lgcdebug.s" - @echo "... VM/src/linit.o" - @echo "... VM/src/linit.i" - @echo "... VM/src/linit.s" - @echo "... VM/src/lmathlib.o" - @echo "... VM/src/lmathlib.i" - @echo "... VM/src/lmathlib.s" - @echo "... VM/src/lmem.o" - @echo "... VM/src/lmem.i" - @echo "... VM/src/lmem.s" - @echo "... VM/src/lnumprint.o" - @echo "... VM/src/lnumprint.i" - @echo "... VM/src/lnumprint.s" - @echo "... VM/src/lobject.o" - @echo "... VM/src/lobject.i" - @echo "... VM/src/lobject.s" - @echo "... VM/src/loslib.o" - @echo "... VM/src/loslib.i" - @echo "... VM/src/loslib.s" - @echo "... VM/src/lperf.o" - @echo "... VM/src/lperf.i" - @echo "... VM/src/lperf.s" - @echo "... VM/src/lstate.o" - @echo "... VM/src/lstate.i" - @echo "... VM/src/lstate.s" - @echo "... VM/src/lstring.o" - @echo "... VM/src/lstring.i" - @echo "... VM/src/lstring.s" - @echo "... VM/src/lstrlib.o" - @echo "... VM/src/lstrlib.i" - @echo "... VM/src/lstrlib.s" - @echo "... VM/src/ltable.o" - @echo "... VM/src/ltable.i" - @echo "... VM/src/ltable.s" - @echo "... VM/src/ltablib.o" - @echo "... VM/src/ltablib.i" - @echo "... VM/src/ltablib.s" - @echo "... VM/src/ltm.o" - @echo "... VM/src/ltm.i" - @echo "... VM/src/ltm.s" - @echo "... VM/src/ludata.o" - @echo "... VM/src/ludata.i" - @echo "... VM/src/ludata.s" - @echo "... VM/src/lutf8lib.o" - @echo "... VM/src/lutf8lib.i" - @echo "... VM/src/lutf8lib.s" - @echo "... VM/src/lvmexecute.o" - @echo "... VM/src/lvmexecute.i" - @echo "... VM/src/lvmexecute.s" - @echo "... VM/src/lvmload.o" - @echo "... VM/src/lvmload.i" - @echo "... VM/src/lvmload.s" - @echo "... VM/src/lvmutils.o" - @echo "... VM/src/lvmutils.i" - @echo "... VM/src/lvmutils.s" - @echo "... extern/isocline/src/isocline.o" - @echo "... extern/isocline/src/isocline.i" - @echo "... extern/isocline/src/isocline.s" - @echo "... tests/AstQuery.test.o" - @echo "... tests/AstQuery.test.i" - @echo "... tests/AstQuery.test.s" - @echo "... tests/AstVisitor.test.o" - @echo "... tests/AstVisitor.test.i" - @echo "... tests/AstVisitor.test.s" - @echo "... tests/Autocomplete.test.o" - @echo "... tests/Autocomplete.test.i" - @echo "... tests/Autocomplete.test.s" - @echo "... tests/BuiltinDefinitions.test.o" - @echo "... tests/BuiltinDefinitions.test.i" - @echo "... tests/BuiltinDefinitions.test.s" - @echo "... tests/Compiler.test.o" - @echo "... tests/Compiler.test.i" - @echo "... tests/Compiler.test.s" - @echo "... tests/Config.test.o" - @echo "... tests/Config.test.i" - @echo "... tests/Config.test.s" - @echo "... tests/Conformance.test.o" - @echo "... tests/Conformance.test.i" - @echo "... tests/Conformance.test.s" - @echo "... tests/Error.test.o" - @echo "... tests/Error.test.i" - @echo "... tests/Error.test.s" - @echo "... tests/Fixture.o" - @echo "... tests/Fixture.i" - @echo "... tests/Fixture.s" - @echo "... tests/Frontend.test.o" - @echo "... tests/Frontend.test.i" - @echo "... tests/Frontend.test.s" - @echo "... tests/JsonEncoder.test.o" - @echo "... tests/JsonEncoder.test.i" - @echo "... tests/JsonEncoder.test.s" - @echo "... tests/LValue.test.o" - @echo "... tests/LValue.test.i" - @echo "... tests/LValue.test.s" - @echo "... tests/Linter.test.o" - @echo "... tests/Linter.test.i" - @echo "... tests/Linter.test.s" - @echo "... tests/Module.test.o" - @echo "... tests/Module.test.i" - @echo "... tests/Module.test.s" - @echo "... tests/NonstrictMode.test.o" - @echo "... tests/NonstrictMode.test.i" - @echo "... tests/NonstrictMode.test.s" - @echo "... tests/Parser.test.o" - @echo "... tests/Parser.test.i" - @echo "... tests/Parser.test.s" - @echo "... tests/Repl.test.o" - @echo "... tests/Repl.test.i" - @echo "... tests/Repl.test.s" - @echo "... tests/RequireTracer.test.o" - @echo "... tests/RequireTracer.test.i" - @echo "... tests/RequireTracer.test.s" - @echo "... tests/StringUtils.test.o" - @echo "... tests/StringUtils.test.i" - @echo "... tests/StringUtils.test.s" - @echo "... tests/Symbol.test.o" - @echo "... tests/Symbol.test.i" - @echo "... tests/Symbol.test.s" - @echo "... tests/ToDot.test.o" - @echo "... tests/ToDot.test.i" - @echo "... tests/ToDot.test.s" - @echo "... tests/ToString.test.o" - @echo "... tests/ToString.test.i" - @echo "... tests/ToString.test.s" - @echo "... tests/TopoSort.test.o" - @echo "... tests/TopoSort.test.i" - @echo "... tests/TopoSort.test.s" - @echo "... tests/Transpiler.test.o" - @echo "... tests/Transpiler.test.i" - @echo "... tests/Transpiler.test.s" - @echo "... tests/TypeInfer.aliases.test.o" - @echo "... tests/TypeInfer.aliases.test.i" - @echo "... tests/TypeInfer.aliases.test.s" - @echo "... tests/TypeInfer.annotations.test.o" - @echo "... tests/TypeInfer.annotations.test.i" - @echo "... tests/TypeInfer.annotations.test.s" - @echo "... tests/TypeInfer.builtins.test.o" - @echo "... tests/TypeInfer.builtins.test.i" - @echo "... tests/TypeInfer.builtins.test.s" - @echo "... tests/TypeInfer.classes.test.o" - @echo "... tests/TypeInfer.classes.test.i" - @echo "... tests/TypeInfer.classes.test.s" - @echo "... tests/TypeInfer.definitions.test.o" - @echo "... tests/TypeInfer.definitions.test.i" - @echo "... tests/TypeInfer.definitions.test.s" - @echo "... tests/TypeInfer.generics.test.o" - @echo "... tests/TypeInfer.generics.test.i" - @echo "... tests/TypeInfer.generics.test.s" - @echo "... tests/TypeInfer.intersectionTypes.test.o" - @echo "... tests/TypeInfer.intersectionTypes.test.i" - @echo "... tests/TypeInfer.intersectionTypes.test.s" - @echo "... tests/TypeInfer.provisional.test.o" - @echo "... tests/TypeInfer.provisional.test.i" - @echo "... tests/TypeInfer.provisional.test.s" - @echo "... tests/TypeInfer.refinements.test.o" - @echo "... tests/TypeInfer.refinements.test.i" - @echo "... tests/TypeInfer.refinements.test.s" - @echo "... tests/TypeInfer.singletons.test.o" - @echo "... tests/TypeInfer.singletons.test.i" - @echo "... tests/TypeInfer.singletons.test.s" - @echo "... tests/TypeInfer.tables.test.o" - @echo "... tests/TypeInfer.tables.test.i" - @echo "... tests/TypeInfer.tables.test.s" - @echo "... tests/TypeInfer.test.o" - @echo "... tests/TypeInfer.test.i" - @echo "... tests/TypeInfer.test.s" - @echo "... tests/TypeInfer.tryUnify.test.o" - @echo "... tests/TypeInfer.tryUnify.test.i" - @echo "... tests/TypeInfer.tryUnify.test.s" - @echo "... tests/TypeInfer.typePacks.o" - @echo "... tests/TypeInfer.typePacks.i" - @echo "... tests/TypeInfer.typePacks.s" - @echo "... tests/TypeInfer.unionTypes.test.o" - @echo "... tests/TypeInfer.unionTypes.test.i" - @echo "... tests/TypeInfer.unionTypes.test.s" - @echo "... tests/TypePack.test.o" - @echo "... tests/TypePack.test.i" - @echo "... tests/TypePack.test.s" - @echo "... tests/TypeVar.test.o" - @echo "... tests/TypeVar.test.i" - @echo "... tests/TypeVar.test.s" - @echo "... tests/Variant.test.o" - @echo "... tests/Variant.test.i" - @echo "... tests/Variant.test.s" - @echo "... tests/main.o" - @echo "... tests/main.i" - @echo "... tests/main.s" -.PHONY : help - - - -#============================================================================= -# Special targets to cleanup operation of make. - -# Special rule to run CMake to check the build system integrity. -# No rule that depends on this can have commands that come from listfiles -# because they might be regenerated. -cmake_check_build_system: - $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 -.PHONY : cmake_check_build_system - + rm -rf $(BUILD) + +coverage: $(TESTS_TARGET) + $(TESTS_TARGET) --fflags=true + mv default.profraw default-flags.profraw + $(TESTS_TARGET) + llvm-profdata merge default.profraw default-flags.profraw -o default.profdata + rm default.profraw default-flags.profraw + llvm-cov show -format=html -show-instantiations=false -show-line-counts=true -show-region-summary=false -ignore-filename-regex=\(tests\|extern\|CLI\)/.* -output-dir=coverage --instr-profile default.profdata build/coverage/luau-tests + llvm-cov report -ignore-filename-regex=\(tests\|extern\|CLI\)/.* -show-region-summary=false --instr-profile default.profdata build/coverage/luau-tests + llvm-cov export -ignore-filename-regex=\(tests\|extern\|CLI\)/.* -format lcov --instr-profile default.profdata build/coverage/luau-tests >coverage.info + +format: + find . -name '*.h' -or -name '*.cpp' | xargs clang-format -i + +luau-size: luau + nm --print-size --demangle luau | grep ' t void luau_execute' | awk -F ' ' '{sum += strtonum("0x" $$2)} END {print sum " interpreter" }' + nm --print-size --demangle luau | grep ' t luauF_' | awk -F ' ' '{sum += strtonum("0x" $$2)} END {print sum " builtins" }' + +# executable target aliases +luau: $(REPL_CLI_TARGET) + ln -fs $^ $@ + +luau-analyze: $(ANALYZE_CLI_TARGET) + ln -fs $^ $@ + +# executable targets +$(TESTS_TARGET): $(TESTS_OBJECTS) $(ANALYSIS_TARGET) $(COMPILER_TARGET) $(AST_TARGET) $(VM_TARGET) $(ISOCLINE_TARGET) +$(REPL_CLI_TARGET): $(REPL_CLI_OBJECTS) $(COMPILER_TARGET) $(AST_TARGET) $(VM_TARGET) $(ISOCLINE_TARGET) +$(ANALYZE_CLI_TARGET): $(ANALYZE_CLI_OBJECTS) $(ANALYSIS_TARGET) $(AST_TARGET) + +$(TESTS_TARGET) $(REPL_CLI_TARGET) $(ANALYZE_CLI_TARGET): + $(CXX) $^ $(LDFLAGS) -o $@ + +# executable targets for fuzzing +fuzz-%: $(BUILD)/fuzz/%.cpp.o $(ANALYSIS_TARGET) $(COMPILER_TARGET) $(AST_TARGET) $(VM_TARGET) + $(CXX) $^ $(LDFLAGS) -o $@ + +fuzz-proto: $(BUILD)/fuzz/proto.cpp.o $(BUILD)/fuzz/protoprint.cpp.o $(BUILD)/fuzz/luau.pb.cpp.o $(ANALYSIS_TARGET) $(COMPILER_TARGET) $(AST_TARGET) $(VM_TARGET) | build/libprotobuf-mutator +fuzz-prototest: $(BUILD)/fuzz/prototest.cpp.o $(BUILD)/fuzz/protoprint.cpp.o $(BUILD)/fuzz/luau.pb.cpp.o $(ANALYSIS_TARGET) $(COMPILER_TARGET) $(AST_TARGET) $(VM_TARGET) | build/libprotobuf-mutator + +# static library targets +$(AST_TARGET): $(AST_OBJECTS) +$(COMPILER_TARGET): $(COMPILER_OBJECTS) +$(ANALYSIS_TARGET): $(ANALYSIS_OBJECTS) +$(VM_TARGET): $(VM_OBJECTS) +$(ISOCLINE_TARGET): $(ISOCLINE_OBJECTS) + +$(AST_TARGET) $(COMPILER_TARGET) $(ANALYSIS_TARGET) $(VM_TARGET) $(ISOCLINE_TARGET): + ar rcs $@ $^ + +# object file targets +$(BUILD)/%.cpp.o: %.cpp + @mkdir -p $(dir $@) + $(CXX) $< $(CXXFLAGS) -c -MMD -MP -o $@ + +$(BUILD)/%.c.o: %.c + @mkdir -p $(dir $@) + $(CXX) -x c $< $(CXXFLAGS) -c -MMD -MP -o $@ + +# protobuf fuzzer setup +fuzz/luau.pb.cpp: fuzz/luau.proto build/libprotobuf-mutator + cd fuzz && ../build/libprotobuf-mutator/external.protobuf/bin/protoc luau.proto --cpp_out=. + mv fuzz/luau.pb.cc fuzz/luau.pb.cpp + +$(BUILD)/fuzz/proto.cpp.o: fuzz/luau.pb.cpp +$(BUILD)/fuzz/protoprint.cpp.o: fuzz/luau.pb.cpp + +build/libprotobuf-mutator: + git clone https://github.com/google/libprotobuf-mutator build/libprotobuf-mutator + CXX= cmake -S build/libprotobuf-mutator -B build/libprotobuf-mutator -D CMAKE_BUILD_TYPE=Release -D LIB_PROTO_MUTATOR_DOWNLOAD_PROTOBUF=ON -D LIB_PROTO_MUTATOR_TESTING=OFF + make -C build/libprotobuf-mutator -j8 + +# picks up include dependencies for all object files +-include $(OBJECTS:.o=.d) diff --git a/prototyping/Luau/OpSem.agda b/prototyping/Luau/OpSem.agda index 96002aff..493a5e22 100644 --- a/prototyping/Luau/OpSem.agda +++ b/prototyping/Luau/OpSem.agda @@ -22,6 +22,14 @@ evalEqOp (bool true) (bool y) = y evalEqOp (bool false) (bool y) = not y evalEqOp _ _ = false +evalNeqOp : Value → Value → Bool +evalNeqOp Value.nil Value.nil = false +evalNeqOp (addr x) (addr y) = not (x ==ᴬ y) +evalNeqOp (number x) (number y) = primFloatInequality x y +evalNeqOp (bool true) (bool y) = not y +evalNeqOp (bool false) (bool y) = y +evalNeqOp _ _ = true + data _⟦_⟧_⟶_ : Value → BinaryOperator → Value → Value → Set where + : ∀ m n → (number m) ⟦ + ⟧ (number n) ⟶ number (primFloatPlus m n) - : ∀ m n → (number m) ⟦ - ⟧ (number n) ⟶ number (primFloatMinus m n) @@ -32,7 +40,7 @@ data _⟦_⟧_⟶_ : Value → BinaryOperator → Value → Value → Set where <= : ∀ m n → (number m) ⟦ <= ⟧ (number n) ⟶ bool ((primFloatLess m n) or (primFloatEquality m n)) >= : ∀ m n → (number m) ⟦ >= ⟧ (number n) ⟶ bool ((primFloatLess n m) or (primFloatEquality m n)) == : ∀ v w → v ⟦ == ⟧ w ⟶ bool (evalEqOp v w) - ~= : ∀ v w → v ⟦ ~= ⟧ w ⟶ bool (not (evalEqOp v w)) + ~= : ∀ v w → v ⟦ ~= ⟧ w ⟶ bool (evalNeqOp v w) data _⊢_⟶ᴮ_⊣_ {a} : Heap a → Block a → Block a → Heap a → Set data _⊢_⟶ᴱ_⊣_ {a} : Heap a → Expr a → Expr a → Heap a → Set