fix: 装备属性面板避让逻辑 + 多项功能更新
- item_tooltip_view.gd: 新增 avoid_rect 属性,tooltip 与装备窗口重叠时自动推到左侧 - inventory_ui.gd: 悬停装备时传入窗口矩形作为避让区域 - 包含其他累积的功能开发和测试文件
This commit is contained in:
@@ -0,0 +1,886 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 4.4
|
||||
|
||||
# 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.
|
||||
.SUFFIXES:
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : %,v
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : RCS/%
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : RCS/%,v
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : SCCS/s.%
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : s.%
|
||||
|
||||
.SUFFIXES: .hpux_make_needs_suffix_list
|
||||
|
||||
# Command-line flag to silence nested $(MAKE).
|
||||
$(VERBOSE)MAKESILENT = -s
|
||||
|
||||
#Suppress display of executed commands.
|
||||
$(VERBOSE).SILENT:
|
||||
|
||||
# A target that is always out of date.
|
||||
cmake_force:
|
||||
.PHONY : cmake_force
|
||||
|
||||
#=============================================================================
|
||||
# Set environment variables for the build.
|
||||
|
||||
# The shell in which to execute make rules.
|
||||
SHELL = /bin/sh
|
||||
|
||||
# The CMake executable.
|
||||
CMAKE_COMMAND = /opt/homebrew/bin/cmake
|
||||
|
||||
# The command to remove a file.
|
||||
RM = /opt/homebrew/bin/cmake -E rm -f
|
||||
|
||||
# Escaping for special characters.
|
||||
EQUALS = =
|
||||
|
||||
# The top-level source directory on which CMake was run.
|
||||
CMAKE_SOURCE_DIR = /Users/shen/Work/Code/Metin2/metin2-client
|
||||
|
||||
# The top-level build directory on which CMake was run.
|
||||
CMAKE_BINARY_DIR = /Users/shen/Work/Code/Metin2/metin2-client/build-debug
|
||||
|
||||
#=============================================================================
|
||||
# Targets provided globally by CMake.
|
||||
|
||||
# Special rule for the target test
|
||||
test:
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running tests..."
|
||||
/opt/homebrew/bin/ctest $(ARGS)
|
||||
.PHONY : test
|
||||
|
||||
# Special rule for the target test
|
||||
test/fast: test
|
||||
.PHONY : test/fast
|
||||
|
||||
# Special rule for the target edit_cache
|
||||
edit_cache:
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..."
|
||||
/opt/homebrew/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
|
||||
.PHONY : edit_cache
|
||||
|
||||
# Special rule for the target edit_cache
|
||||
edit_cache/fast: edit_cache
|
||||
.PHONY : edit_cache/fast
|
||||
|
||||
# Special rule for the target rebuild_cache
|
||||
rebuild_cache:
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..."
|
||||
/opt/homebrew/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
|
||||
.PHONY : rebuild_cache
|
||||
|
||||
# Special rule for the target rebuild_cache
|
||||
rebuild_cache/fast: rebuild_cache
|
||||
.PHONY : rebuild_cache/fast
|
||||
|
||||
# Special rule for the target list_install_components
|
||||
list_install_components:
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\""
|
||||
.PHONY : list_install_components
|
||||
|
||||
# Special rule for the target list_install_components
|
||||
list_install_components/fast: list_install_components
|
||||
.PHONY : list_install_components/fast
|
||||
|
||||
# Special rule for the target install
|
||||
install: preinstall
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..."
|
||||
/opt/homebrew/bin/cmake -P cmake_install.cmake
|
||||
.PHONY : install
|
||||
|
||||
# Special rule for the target install
|
||||
install/fast: preinstall/fast
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..."
|
||||
/opt/homebrew/bin/cmake -P cmake_install.cmake
|
||||
.PHONY : install/fast
|
||||
|
||||
# Special rule for the target install/local
|
||||
install/local: preinstall
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..."
|
||||
/opt/homebrew/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
|
||||
.PHONY : install/local
|
||||
|
||||
# Special rule for the target install/local
|
||||
install/local/fast: preinstall/fast
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..."
|
||||
/opt/homebrew/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
|
||||
.PHONY : install/local/fast
|
||||
|
||||
# Special rule for the target install/strip
|
||||
install/strip: preinstall
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..."
|
||||
/opt/homebrew/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
|
||||
.PHONY : install/strip
|
||||
|
||||
# Special rule for the target install/strip
|
||||
install/strip/fast: preinstall/fast
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..."
|
||||
/opt/homebrew/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
|
||||
.PHONY : install/strip/fast
|
||||
|
||||
# The main all target
|
||||
all: cmake_check_build_system
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(CMAKE_COMMAND) -E cmake_progress_start /Users/shen/Work/Code/Metin2/metin2-client/build-debug/CMakeFiles /Users/shen/Work/Code/Metin2/metin2-client/build-debug/formats//CMakeFiles/progress.marks
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 formats/all
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /Users/shen/Work/Code/Metin2/metin2-client/build-debug/CMakeFiles 0
|
||||
.PHONY : all
|
||||
|
||||
# The main clean target
|
||||
clean:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 formats/clean
|
||||
.PHONY : clean
|
||||
|
||||
# The main clean target
|
||||
clean/fast: clean
|
||||
.PHONY : clean/fast
|
||||
|
||||
# Prepare targets for installation.
|
||||
preinstall: all
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 formats/preinstall
|
||||
.PHONY : preinstall
|
||||
|
||||
# Prepare targets for installation.
|
||||
preinstall/fast:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 formats/preinstall
|
||||
.PHONY : preinstall/fast
|
||||
|
||||
# clear depends
|
||||
depend:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(CMAKE_COMMAND) -P /Users/shen/Work/Code/Metin2/metin2-client/build-debug/CMakeFiles/VerifyGlobs.cmake
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
|
||||
.PHONY : depend
|
||||
|
||||
# Convenience name for target.
|
||||
formats/CMakeFiles/xr_formats.dir/rule:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 formats/CMakeFiles/xr_formats.dir/rule
|
||||
.PHONY : formats/CMakeFiles/xr_formats.dir/rule
|
||||
|
||||
# Convenience name for target.
|
||||
xr_formats: formats/CMakeFiles/xr_formats.dir/rule
|
||||
.PHONY : xr_formats
|
||||
|
||||
# fast build rule for target.
|
||||
xr_formats/fast:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/xr_formats.dir/build.make formats/CMakeFiles/xr_formats.dir/build
|
||||
.PHONY : xr_formats/fast
|
||||
|
||||
# Convenience name for target.
|
||||
formats/CMakeFiles/formats_msa_test.dir/rule:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 formats/CMakeFiles/formats_msa_test.dir/rule
|
||||
.PHONY : formats/CMakeFiles/formats_msa_test.dir/rule
|
||||
|
||||
# Convenience name for target.
|
||||
formats_msa_test: formats/CMakeFiles/formats_msa_test.dir/rule
|
||||
.PHONY : formats_msa_test
|
||||
|
||||
# fast build rule for target.
|
||||
formats_msa_test/fast:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/formats_msa_test.dir/build.make formats/CMakeFiles/formats_msa_test.dir/build
|
||||
.PHONY : formats_msa_test/fast
|
||||
|
||||
# Convenience name for target.
|
||||
formats/CMakeFiles/formats_msm_test.dir/rule:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 formats/CMakeFiles/formats_msm_test.dir/rule
|
||||
.PHONY : formats/CMakeFiles/formats_msm_test.dir/rule
|
||||
|
||||
# Convenience name for target.
|
||||
formats_msm_test: formats/CMakeFiles/formats_msm_test.dir/rule
|
||||
.PHONY : formats_msm_test
|
||||
|
||||
# fast build rule for target.
|
||||
formats_msm_test/fast:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/formats_msm_test.dir/build.make formats/CMakeFiles/formats_msm_test.dir/build
|
||||
.PHONY : formats_msm_test/fast
|
||||
|
||||
# Convenience name for target.
|
||||
formats/CMakeFiles/formats_combo_table_test.dir/rule:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 formats/CMakeFiles/formats_combo_table_test.dir/rule
|
||||
.PHONY : formats/CMakeFiles/formats_combo_table_test.dir/rule
|
||||
|
||||
# Convenience name for target.
|
||||
formats_combo_table_test: formats/CMakeFiles/formats_combo_table_test.dir/rule
|
||||
.PHONY : formats_combo_table_test
|
||||
|
||||
# fast build rule for target.
|
||||
formats_combo_table_test/fast:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/formats_combo_table_test.dir/build.make formats/CMakeFiles/formats_combo_table_test.dir/build
|
||||
.PHONY : formats_combo_table_test/fast
|
||||
|
||||
# Convenience name for target.
|
||||
formats/CMakeFiles/formats_attribute_data_test.dir/rule:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 formats/CMakeFiles/formats_attribute_data_test.dir/rule
|
||||
.PHONY : formats/CMakeFiles/formats_attribute_data_test.dir/rule
|
||||
|
||||
# Convenience name for target.
|
||||
formats_attribute_data_test: formats/CMakeFiles/formats_attribute_data_test.dir/rule
|
||||
.PHONY : formats_attribute_data_test
|
||||
|
||||
# fast build rule for target.
|
||||
formats_attribute_data_test/fast:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/formats_attribute_data_test.dir/build.make formats/CMakeFiles/formats_attribute_data_test.dir/build
|
||||
.PHONY : formats_attribute_data_test/fast
|
||||
|
||||
# Convenience name for target.
|
||||
formats/CMakeFiles/formats_map_test.dir/rule:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 formats/CMakeFiles/formats_map_test.dir/rule
|
||||
.PHONY : formats/CMakeFiles/formats_map_test.dir/rule
|
||||
|
||||
# Convenience name for target.
|
||||
formats_map_test: formats/CMakeFiles/formats_map_test.dir/rule
|
||||
.PHONY : formats_map_test
|
||||
|
||||
# fast build rule for target.
|
||||
formats_map_test/fast:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/formats_map_test.dir/build.make formats/CMakeFiles/formats_map_test.dir/build
|
||||
.PHONY : formats_map_test/fast
|
||||
|
||||
area_data.o: area_data.cpp.o
|
||||
.PHONY : area_data.o
|
||||
|
||||
# target to build an object file
|
||||
area_data.cpp.o:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/xr_formats.dir/build.make formats/CMakeFiles/xr_formats.dir/area_data.cpp.o
|
||||
.PHONY : area_data.cpp.o
|
||||
|
||||
area_data.i: area_data.cpp.i
|
||||
.PHONY : area_data.i
|
||||
|
||||
# target to preprocess a source file
|
||||
area_data.cpp.i:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/xr_formats.dir/build.make formats/CMakeFiles/xr_formats.dir/area_data.cpp.i
|
||||
.PHONY : area_data.cpp.i
|
||||
|
||||
area_data.s: area_data.cpp.s
|
||||
.PHONY : area_data.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
area_data.cpp.s:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/xr_formats.dir/build.make formats/CMakeFiles/xr_formats.dir/area_data.cpp.s
|
||||
.PHONY : area_data.cpp.s
|
||||
|
||||
asset_resolver.o: asset_resolver.cpp.o
|
||||
.PHONY : asset_resolver.o
|
||||
|
||||
# target to build an object file
|
||||
asset_resolver.cpp.o:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/xr_formats.dir/build.make formats/CMakeFiles/xr_formats.dir/asset_resolver.cpp.o
|
||||
.PHONY : asset_resolver.cpp.o
|
||||
|
||||
asset_resolver.i: asset_resolver.cpp.i
|
||||
.PHONY : asset_resolver.i
|
||||
|
||||
# target to preprocess a source file
|
||||
asset_resolver.cpp.i:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/xr_formats.dir/build.make formats/CMakeFiles/xr_formats.dir/asset_resolver.cpp.i
|
||||
.PHONY : asset_resolver.cpp.i
|
||||
|
||||
asset_resolver.s: asset_resolver.cpp.s
|
||||
.PHONY : asset_resolver.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
asset_resolver.cpp.s:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/xr_formats.dir/build.make formats/CMakeFiles/xr_formats.dir/asset_resolver.cpp.s
|
||||
.PHONY : asset_resolver.cpp.s
|
||||
|
||||
attribute_data.o: attribute_data.cpp.o
|
||||
.PHONY : attribute_data.o
|
||||
|
||||
# target to build an object file
|
||||
attribute_data.cpp.o:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/xr_formats.dir/build.make formats/CMakeFiles/xr_formats.dir/attribute_data.cpp.o
|
||||
.PHONY : attribute_data.cpp.o
|
||||
|
||||
attribute_data.i: attribute_data.cpp.i
|
||||
.PHONY : attribute_data.i
|
||||
|
||||
# target to preprocess a source file
|
||||
attribute_data.cpp.i:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/xr_formats.dir/build.make formats/CMakeFiles/xr_formats.dir/attribute_data.cpp.i
|
||||
.PHONY : attribute_data.cpp.i
|
||||
|
||||
attribute_data.s: attribute_data.cpp.s
|
||||
.PHONY : attribute_data.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
attribute_data.cpp.s:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/xr_formats.dir/build.make formats/CMakeFiles/xr_formats.dir/attribute_data.cpp.s
|
||||
.PHONY : attribute_data.cpp.s
|
||||
|
||||
combo_table.o: combo_table.cpp.o
|
||||
.PHONY : combo_table.o
|
||||
|
||||
# target to build an object file
|
||||
combo_table.cpp.o:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/xr_formats.dir/build.make formats/CMakeFiles/xr_formats.dir/combo_table.cpp.o
|
||||
.PHONY : combo_table.cpp.o
|
||||
|
||||
combo_table.i: combo_table.cpp.i
|
||||
.PHONY : combo_table.i
|
||||
|
||||
# target to preprocess a source file
|
||||
combo_table.cpp.i:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/xr_formats.dir/build.make formats/CMakeFiles/xr_formats.dir/combo_table.cpp.i
|
||||
.PHONY : combo_table.cpp.i
|
||||
|
||||
combo_table.s: combo_table.cpp.s
|
||||
.PHONY : combo_table.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
combo_table.cpp.s:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/xr_formats.dir/build.make formats/CMakeFiles/xr_formats.dir/combo_table.cpp.s
|
||||
.PHONY : combo_table.cpp.s
|
||||
|
||||
environment.o: environment.cpp.o
|
||||
.PHONY : environment.o
|
||||
|
||||
# target to build an object file
|
||||
environment.cpp.o:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/xr_formats.dir/build.make formats/CMakeFiles/xr_formats.dir/environment.cpp.o
|
||||
.PHONY : environment.cpp.o
|
||||
|
||||
environment.i: environment.cpp.i
|
||||
.PHONY : environment.i
|
||||
|
||||
# target to preprocess a source file
|
||||
environment.cpp.i:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/xr_formats.dir/build.make formats/CMakeFiles/xr_formats.dir/environment.cpp.i
|
||||
.PHONY : environment.cpp.i
|
||||
|
||||
environment.s: environment.cpp.s
|
||||
.PHONY : environment.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
environment.cpp.s:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/xr_formats.dir/build.make formats/CMakeFiles/xr_formats.dir/environment.cpp.s
|
||||
.PHONY : environment.cpp.s
|
||||
|
||||
m2_coord.o: m2_coord.cpp.o
|
||||
.PHONY : m2_coord.o
|
||||
|
||||
# target to build an object file
|
||||
m2_coord.cpp.o:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/xr_formats.dir/build.make formats/CMakeFiles/xr_formats.dir/m2_coord.cpp.o
|
||||
.PHONY : m2_coord.cpp.o
|
||||
|
||||
m2_coord.i: m2_coord.cpp.i
|
||||
.PHONY : m2_coord.i
|
||||
|
||||
# target to preprocess a source file
|
||||
m2_coord.cpp.i:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/xr_formats.dir/build.make formats/CMakeFiles/xr_formats.dir/m2_coord.cpp.i
|
||||
.PHONY : m2_coord.cpp.i
|
||||
|
||||
m2_coord.s: m2_coord.cpp.s
|
||||
.PHONY : m2_coord.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
m2_coord.cpp.s:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/xr_formats.dir/build.make formats/CMakeFiles/xr_formats.dir/m2_coord.cpp.s
|
||||
.PHONY : m2_coord.cpp.s
|
||||
|
||||
m2_tokvec.o: m2_tokvec.cpp.o
|
||||
.PHONY : m2_tokvec.o
|
||||
|
||||
# target to build an object file
|
||||
m2_tokvec.cpp.o:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/xr_formats.dir/build.make formats/CMakeFiles/xr_formats.dir/m2_tokvec.cpp.o
|
||||
.PHONY : m2_tokvec.cpp.o
|
||||
|
||||
m2_tokvec.i: m2_tokvec.cpp.i
|
||||
.PHONY : m2_tokvec.i
|
||||
|
||||
# target to preprocess a source file
|
||||
m2_tokvec.cpp.i:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/xr_formats.dir/build.make formats/CMakeFiles/xr_formats.dir/m2_tokvec.cpp.i
|
||||
.PHONY : m2_tokvec.cpp.i
|
||||
|
||||
m2_tokvec.s: m2_tokvec.cpp.s
|
||||
.PHONY : m2_tokvec.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
m2_tokvec.cpp.s:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/xr_formats.dir/build.make formats/CMakeFiles/xr_formats.dir/m2_tokvec.cpp.s
|
||||
.PHONY : m2_tokvec.cpp.s
|
||||
|
||||
map_setting.o: map_setting.cpp.o
|
||||
.PHONY : map_setting.o
|
||||
|
||||
# target to build an object file
|
||||
map_setting.cpp.o:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/xr_formats.dir/build.make formats/CMakeFiles/xr_formats.dir/map_setting.cpp.o
|
||||
.PHONY : map_setting.cpp.o
|
||||
|
||||
map_setting.i: map_setting.cpp.i
|
||||
.PHONY : map_setting.i
|
||||
|
||||
# target to preprocess a source file
|
||||
map_setting.cpp.i:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/xr_formats.dir/build.make formats/CMakeFiles/xr_formats.dir/map_setting.cpp.i
|
||||
.PHONY : map_setting.cpp.i
|
||||
|
||||
map_setting.s: map_setting.cpp.s
|
||||
.PHONY : map_setting.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
map_setting.cpp.s:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/xr_formats.dir/build.make formats/CMakeFiles/xr_formats.dir/map_setting.cpp.s
|
||||
.PHONY : map_setting.cpp.s
|
||||
|
||||
msa.o: msa.cpp.o
|
||||
.PHONY : msa.o
|
||||
|
||||
# target to build an object file
|
||||
msa.cpp.o:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/xr_formats.dir/build.make formats/CMakeFiles/xr_formats.dir/msa.cpp.o
|
||||
.PHONY : msa.cpp.o
|
||||
|
||||
msa.i: msa.cpp.i
|
||||
.PHONY : msa.i
|
||||
|
||||
# target to preprocess a source file
|
||||
msa.cpp.i:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/xr_formats.dir/build.make formats/CMakeFiles/xr_formats.dir/msa.cpp.i
|
||||
.PHONY : msa.cpp.i
|
||||
|
||||
msa.s: msa.cpp.s
|
||||
.PHONY : msa.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
msa.cpp.s:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/xr_formats.dir/build.make formats/CMakeFiles/xr_formats.dir/msa.cpp.s
|
||||
.PHONY : msa.cpp.s
|
||||
|
||||
msm.o: msm.cpp.o
|
||||
.PHONY : msm.o
|
||||
|
||||
# target to build an object file
|
||||
msm.cpp.o:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/xr_formats.dir/build.make formats/CMakeFiles/xr_formats.dir/msm.cpp.o
|
||||
.PHONY : msm.cpp.o
|
||||
|
||||
msm.i: msm.cpp.i
|
||||
.PHONY : msm.i
|
||||
|
||||
# target to preprocess a source file
|
||||
msm.cpp.i:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/xr_formats.dir/build.make formats/CMakeFiles/xr_formats.dir/msm.cpp.i
|
||||
.PHONY : msm.cpp.i
|
||||
|
||||
msm.s: msm.cpp.s
|
||||
.PHONY : msm.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
msm.cpp.s:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/xr_formats.dir/build.make formats/CMakeFiles/xr_formats.dir/msm.cpp.s
|
||||
.PHONY : msm.cpp.s
|
||||
|
||||
property.o: property.cpp.o
|
||||
.PHONY : property.o
|
||||
|
||||
# target to build an object file
|
||||
property.cpp.o:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/xr_formats.dir/build.make formats/CMakeFiles/xr_formats.dir/property.cpp.o
|
||||
.PHONY : property.cpp.o
|
||||
|
||||
property.i: property.cpp.i
|
||||
.PHONY : property.i
|
||||
|
||||
# target to preprocess a source file
|
||||
property.cpp.i:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/xr_formats.dir/build.make formats/CMakeFiles/xr_formats.dir/property.cpp.i
|
||||
.PHONY : property.cpp.i
|
||||
|
||||
property.s: property.cpp.s
|
||||
.PHONY : property.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
property.cpp.s:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/xr_formats.dir/build.make formats/CMakeFiles/xr_formats.dir/property.cpp.s
|
||||
.PHONY : property.cpp.s
|
||||
|
||||
splat.o: splat.cpp.o
|
||||
.PHONY : splat.o
|
||||
|
||||
# target to build an object file
|
||||
splat.cpp.o:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/xr_formats.dir/build.make formats/CMakeFiles/xr_formats.dir/splat.cpp.o
|
||||
.PHONY : splat.cpp.o
|
||||
|
||||
splat.i: splat.cpp.i
|
||||
.PHONY : splat.i
|
||||
|
||||
# target to preprocess a source file
|
||||
splat.cpp.i:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/xr_formats.dir/build.make formats/CMakeFiles/xr_formats.dir/splat.cpp.i
|
||||
.PHONY : splat.cpp.i
|
||||
|
||||
splat.s: splat.cpp.s
|
||||
.PHONY : splat.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
splat.cpp.s:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/xr_formats.dir/build.make formats/CMakeFiles/xr_formats.dir/splat.cpp.s
|
||||
.PHONY : splat.cpp.s
|
||||
|
||||
spt.o: spt.cpp.o
|
||||
.PHONY : spt.o
|
||||
|
||||
# target to build an object file
|
||||
spt.cpp.o:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/xr_formats.dir/build.make formats/CMakeFiles/xr_formats.dir/spt.cpp.o
|
||||
.PHONY : spt.cpp.o
|
||||
|
||||
spt.i: spt.cpp.i
|
||||
.PHONY : spt.i
|
||||
|
||||
# target to preprocess a source file
|
||||
spt.cpp.i:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/xr_formats.dir/build.make formats/CMakeFiles/xr_formats.dir/spt.cpp.i
|
||||
.PHONY : spt.cpp.i
|
||||
|
||||
spt.s: spt.cpp.s
|
||||
.PHONY : spt.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
spt.cpp.s:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/xr_formats.dir/build.make formats/CMakeFiles/xr_formats.dir/spt.cpp.s
|
||||
.PHONY : spt.cpp.s
|
||||
|
||||
terrain_files.o: terrain_files.cpp.o
|
||||
.PHONY : terrain_files.o
|
||||
|
||||
# target to build an object file
|
||||
terrain_files.cpp.o:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/xr_formats.dir/build.make formats/CMakeFiles/xr_formats.dir/terrain_files.cpp.o
|
||||
.PHONY : terrain_files.cpp.o
|
||||
|
||||
terrain_files.i: terrain_files.cpp.i
|
||||
.PHONY : terrain_files.i
|
||||
|
||||
# target to preprocess a source file
|
||||
terrain_files.cpp.i:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/xr_formats.dir/build.make formats/CMakeFiles/xr_formats.dir/terrain_files.cpp.i
|
||||
.PHONY : terrain_files.cpp.i
|
||||
|
||||
terrain_files.s: terrain_files.cpp.s
|
||||
.PHONY : terrain_files.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
terrain_files.cpp.s:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/xr_formats.dir/build.make formats/CMakeFiles/xr_formats.dir/terrain_files.cpp.s
|
||||
.PHONY : terrain_files.cpp.s
|
||||
|
||||
terrain_mesh.o: terrain_mesh.cpp.o
|
||||
.PHONY : terrain_mesh.o
|
||||
|
||||
# target to build an object file
|
||||
terrain_mesh.cpp.o:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/xr_formats.dir/build.make formats/CMakeFiles/xr_formats.dir/terrain_mesh.cpp.o
|
||||
.PHONY : terrain_mesh.cpp.o
|
||||
|
||||
terrain_mesh.i: terrain_mesh.cpp.i
|
||||
.PHONY : terrain_mesh.i
|
||||
|
||||
# target to preprocess a source file
|
||||
terrain_mesh.cpp.i:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/xr_formats.dir/build.make formats/CMakeFiles/xr_formats.dir/terrain_mesh.cpp.i
|
||||
.PHONY : terrain_mesh.cpp.i
|
||||
|
||||
terrain_mesh.s: terrain_mesh.cpp.s
|
||||
.PHONY : terrain_mesh.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
terrain_mesh.cpp.s:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/xr_formats.dir/build.make formats/CMakeFiles/xr_formats.dir/terrain_mesh.cpp.s
|
||||
.PHONY : terrain_mesh.cpp.s
|
||||
|
||||
tests/attribute_data_test.o: tests/attribute_data_test.cpp.o
|
||||
.PHONY : tests/attribute_data_test.o
|
||||
|
||||
# target to build an object file
|
||||
tests/attribute_data_test.cpp.o:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/formats_attribute_data_test.dir/build.make formats/CMakeFiles/formats_attribute_data_test.dir/tests/attribute_data_test.cpp.o
|
||||
.PHONY : tests/attribute_data_test.cpp.o
|
||||
|
||||
tests/attribute_data_test.i: tests/attribute_data_test.cpp.i
|
||||
.PHONY : tests/attribute_data_test.i
|
||||
|
||||
# target to preprocess a source file
|
||||
tests/attribute_data_test.cpp.i:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/formats_attribute_data_test.dir/build.make formats/CMakeFiles/formats_attribute_data_test.dir/tests/attribute_data_test.cpp.i
|
||||
.PHONY : tests/attribute_data_test.cpp.i
|
||||
|
||||
tests/attribute_data_test.s: tests/attribute_data_test.cpp.s
|
||||
.PHONY : tests/attribute_data_test.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
tests/attribute_data_test.cpp.s:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/formats_attribute_data_test.dir/build.make formats/CMakeFiles/formats_attribute_data_test.dir/tests/attribute_data_test.cpp.s
|
||||
.PHONY : tests/attribute_data_test.cpp.s
|
||||
|
||||
tests/combo_table_test.o: tests/combo_table_test.cpp.o
|
||||
.PHONY : tests/combo_table_test.o
|
||||
|
||||
# target to build an object file
|
||||
tests/combo_table_test.cpp.o:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/formats_combo_table_test.dir/build.make formats/CMakeFiles/formats_combo_table_test.dir/tests/combo_table_test.cpp.o
|
||||
.PHONY : tests/combo_table_test.cpp.o
|
||||
|
||||
tests/combo_table_test.i: tests/combo_table_test.cpp.i
|
||||
.PHONY : tests/combo_table_test.i
|
||||
|
||||
# target to preprocess a source file
|
||||
tests/combo_table_test.cpp.i:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/formats_combo_table_test.dir/build.make formats/CMakeFiles/formats_combo_table_test.dir/tests/combo_table_test.cpp.i
|
||||
.PHONY : tests/combo_table_test.cpp.i
|
||||
|
||||
tests/combo_table_test.s: tests/combo_table_test.cpp.s
|
||||
.PHONY : tests/combo_table_test.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
tests/combo_table_test.cpp.s:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/formats_combo_table_test.dir/build.make formats/CMakeFiles/formats_combo_table_test.dir/tests/combo_table_test.cpp.s
|
||||
.PHONY : tests/combo_table_test.cpp.s
|
||||
|
||||
tests/map_formats_test.o: tests/map_formats_test.cpp.o
|
||||
.PHONY : tests/map_formats_test.o
|
||||
|
||||
# target to build an object file
|
||||
tests/map_formats_test.cpp.o:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/formats_map_test.dir/build.make formats/CMakeFiles/formats_map_test.dir/tests/map_formats_test.cpp.o
|
||||
.PHONY : tests/map_formats_test.cpp.o
|
||||
|
||||
tests/map_formats_test.i: tests/map_formats_test.cpp.i
|
||||
.PHONY : tests/map_formats_test.i
|
||||
|
||||
# target to preprocess a source file
|
||||
tests/map_formats_test.cpp.i:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/formats_map_test.dir/build.make formats/CMakeFiles/formats_map_test.dir/tests/map_formats_test.cpp.i
|
||||
.PHONY : tests/map_formats_test.cpp.i
|
||||
|
||||
tests/map_formats_test.s: tests/map_formats_test.cpp.s
|
||||
.PHONY : tests/map_formats_test.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
tests/map_formats_test.cpp.s:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/formats_map_test.dir/build.make formats/CMakeFiles/formats_map_test.dir/tests/map_formats_test.cpp.s
|
||||
.PHONY : tests/map_formats_test.cpp.s
|
||||
|
||||
tests/msa_test.o: tests/msa_test.cpp.o
|
||||
.PHONY : tests/msa_test.o
|
||||
|
||||
# target to build an object file
|
||||
tests/msa_test.cpp.o:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/formats_msa_test.dir/build.make formats/CMakeFiles/formats_msa_test.dir/tests/msa_test.cpp.o
|
||||
.PHONY : tests/msa_test.cpp.o
|
||||
|
||||
tests/msa_test.i: tests/msa_test.cpp.i
|
||||
.PHONY : tests/msa_test.i
|
||||
|
||||
# target to preprocess a source file
|
||||
tests/msa_test.cpp.i:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/formats_msa_test.dir/build.make formats/CMakeFiles/formats_msa_test.dir/tests/msa_test.cpp.i
|
||||
.PHONY : tests/msa_test.cpp.i
|
||||
|
||||
tests/msa_test.s: tests/msa_test.cpp.s
|
||||
.PHONY : tests/msa_test.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
tests/msa_test.cpp.s:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/formats_msa_test.dir/build.make formats/CMakeFiles/formats_msa_test.dir/tests/msa_test.cpp.s
|
||||
.PHONY : tests/msa_test.cpp.s
|
||||
|
||||
tests/msm_test.o: tests/msm_test.cpp.o
|
||||
.PHONY : tests/msm_test.o
|
||||
|
||||
# target to build an object file
|
||||
tests/msm_test.cpp.o:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/formats_msm_test.dir/build.make formats/CMakeFiles/formats_msm_test.dir/tests/msm_test.cpp.o
|
||||
.PHONY : tests/msm_test.cpp.o
|
||||
|
||||
tests/msm_test.i: tests/msm_test.cpp.i
|
||||
.PHONY : tests/msm_test.i
|
||||
|
||||
# target to preprocess a source file
|
||||
tests/msm_test.cpp.i:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/formats_msm_test.dir/build.make formats/CMakeFiles/formats_msm_test.dir/tests/msm_test.cpp.i
|
||||
.PHONY : tests/msm_test.cpp.i
|
||||
|
||||
tests/msm_test.s: tests/msm_test.cpp.s
|
||||
.PHONY : tests/msm_test.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
tests/msm_test.cpp.s:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/formats_msm_test.dir/build.make formats/CMakeFiles/formats_msm_test.dir/tests/msm_test.cpp.s
|
||||
.PHONY : tests/msm_test.cpp.s
|
||||
|
||||
textscript.o: textscript.cpp.o
|
||||
.PHONY : textscript.o
|
||||
|
||||
# target to build an object file
|
||||
textscript.cpp.o:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/xr_formats.dir/build.make formats/CMakeFiles/xr_formats.dir/textscript.cpp.o
|
||||
.PHONY : textscript.cpp.o
|
||||
|
||||
textscript.i: textscript.cpp.i
|
||||
.PHONY : textscript.i
|
||||
|
||||
# target to preprocess a source file
|
||||
textscript.cpp.i:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/xr_formats.dir/build.make formats/CMakeFiles/xr_formats.dir/textscript.cpp.i
|
||||
.PHONY : textscript.cpp.i
|
||||
|
||||
textscript.s: textscript.cpp.s
|
||||
.PHONY : textscript.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
textscript.cpp.s:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/xr_formats.dir/build.make formats/CMakeFiles/xr_formats.dir/textscript.cpp.s
|
||||
.PHONY : textscript.cpp.s
|
||||
|
||||
texture_set.o: texture_set.cpp.o
|
||||
.PHONY : texture_set.o
|
||||
|
||||
# target to build an object file
|
||||
texture_set.cpp.o:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/xr_formats.dir/build.make formats/CMakeFiles/xr_formats.dir/texture_set.cpp.o
|
||||
.PHONY : texture_set.cpp.o
|
||||
|
||||
texture_set.i: texture_set.cpp.i
|
||||
.PHONY : texture_set.i
|
||||
|
||||
# target to preprocess a source file
|
||||
texture_set.cpp.i:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/xr_formats.dir/build.make formats/CMakeFiles/xr_formats.dir/texture_set.cpp.i
|
||||
.PHONY : texture_set.cpp.i
|
||||
|
||||
texture_set.s: texture_set.cpp.s
|
||||
.PHONY : texture_set.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
texture_set.cpp.s:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(MAKE) $(MAKESILENT) -f formats/CMakeFiles/xr_formats.dir/build.make formats/CMakeFiles/xr_formats.dir/texture_set.cpp.s
|
||||
.PHONY : texture_set.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 "... install"
|
||||
@echo "... install/local"
|
||||
@echo "... install/strip"
|
||||
@echo "... list_install_components"
|
||||
@echo "... rebuild_cache"
|
||||
@echo "... test"
|
||||
@echo "... formats_attribute_data_test"
|
||||
@echo "... formats_combo_table_test"
|
||||
@echo "... formats_map_test"
|
||||
@echo "... formats_msa_test"
|
||||
@echo "... formats_msm_test"
|
||||
@echo "... xr_formats"
|
||||
@echo "... area_data.o"
|
||||
@echo "... area_data.i"
|
||||
@echo "... area_data.s"
|
||||
@echo "... asset_resolver.o"
|
||||
@echo "... asset_resolver.i"
|
||||
@echo "... asset_resolver.s"
|
||||
@echo "... attribute_data.o"
|
||||
@echo "... attribute_data.i"
|
||||
@echo "... attribute_data.s"
|
||||
@echo "... combo_table.o"
|
||||
@echo "... combo_table.i"
|
||||
@echo "... combo_table.s"
|
||||
@echo "... environment.o"
|
||||
@echo "... environment.i"
|
||||
@echo "... environment.s"
|
||||
@echo "... m2_coord.o"
|
||||
@echo "... m2_coord.i"
|
||||
@echo "... m2_coord.s"
|
||||
@echo "... m2_tokvec.o"
|
||||
@echo "... m2_tokvec.i"
|
||||
@echo "... m2_tokvec.s"
|
||||
@echo "... map_setting.o"
|
||||
@echo "... map_setting.i"
|
||||
@echo "... map_setting.s"
|
||||
@echo "... msa.o"
|
||||
@echo "... msa.i"
|
||||
@echo "... msa.s"
|
||||
@echo "... msm.o"
|
||||
@echo "... msm.i"
|
||||
@echo "... msm.s"
|
||||
@echo "... property.o"
|
||||
@echo "... property.i"
|
||||
@echo "... property.s"
|
||||
@echo "... splat.o"
|
||||
@echo "... splat.i"
|
||||
@echo "... splat.s"
|
||||
@echo "... spt.o"
|
||||
@echo "... spt.i"
|
||||
@echo "... spt.s"
|
||||
@echo "... terrain_files.o"
|
||||
@echo "... terrain_files.i"
|
||||
@echo "... terrain_files.s"
|
||||
@echo "... terrain_mesh.o"
|
||||
@echo "... terrain_mesh.i"
|
||||
@echo "... terrain_mesh.s"
|
||||
@echo "... tests/attribute_data_test.o"
|
||||
@echo "... tests/attribute_data_test.i"
|
||||
@echo "... tests/attribute_data_test.s"
|
||||
@echo "... tests/combo_table_test.o"
|
||||
@echo "... tests/combo_table_test.i"
|
||||
@echo "... tests/combo_table_test.s"
|
||||
@echo "... tests/map_formats_test.o"
|
||||
@echo "... tests/map_formats_test.i"
|
||||
@echo "... tests/map_formats_test.s"
|
||||
@echo "... tests/msa_test.o"
|
||||
@echo "... tests/msa_test.i"
|
||||
@echo "... tests/msa_test.s"
|
||||
@echo "... tests/msm_test.o"
|
||||
@echo "... tests/msm_test.i"
|
||||
@echo "... tests/msm_test.s"
|
||||
@echo "... textscript.o"
|
||||
@echo "... textscript.i"
|
||||
@echo "... textscript.s"
|
||||
@echo "... texture_set.o"
|
||||
@echo "... texture_set.i"
|
||||
@echo "... texture_set.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:
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(CMAKE_COMMAND) -P /Users/shen/Work/Code/Metin2/metin2-client/build-debug/CMakeFiles/VerifyGlobs.cmake
|
||||
cd /Users/shen/Work/Code/Metin2/metin2-client/build-debug && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
|
||||
.PHONY : cmake_check_build_system
|
||||
|
||||
Reference in New Issue
Block a user