diff --git a/MakeAM.sh b/MakeAM.sh index f478fc18..a2f877a3 100755 --- a/MakeAM.sh +++ b/MakeAM.sh @@ -13,7 +13,7 @@ AUTOMAKE_OPTIONS = subdir-objects bin_PROGRAMS = magicseteditor AM_CXXFLAGS = @WX_CXXFLAGS@ $(BOOST_CXXFLAGS) -I. -Wall -AM_LDFLAGS = @WX_LIBS@ $(BOOST_LDFLAGS) +AM_LDFLAGS = $(BOOST_LDFLAGS) .hpp.gch: target=`echo $@ | sed "s|.gch$$|.hpp|"`;\ @@ -24,7 +24,7 @@ AM_LDFLAGS = @WX_LIBS@ $(BOOST_LDFLAGS) .gch.o: gcc -x c - -c -o $@ <<<"" -magicseteditor_LDADD = $(BOOST_REGEX_LIB) +magicseteditor_LDADD = @WX_LIBS@ $(BOOST_REGEX_LIB) magicseteditor_CXXFLAGS = $(AM_CXXFLAGS) magicseteditor_SOURCES = @@ -40,3 +40,4 @@ endif # The script used to generate is MakeAM.sh' > Makefile.am; find . -name *.cpp | sed "s/\./magicseteditor_SOURCES += ./" >> Makefile.am; + diff --git a/Makefile.am b/Makefile.am index 49ae5570..de6b47cb 100644 --- a/Makefile.am +++ b/Makefile.am @@ -12,7 +12,7 @@ AUTOMAKE_OPTIONS = subdir-objects bin_PROGRAMS = magicseteditor AM_CXXFLAGS = @WX_CXXFLAGS@ $(BOOST_CXXFLAGS) -I. -Wall -AM_LDFLAGS = @WX_LIBS@ $(BOOST_LDFLAGS) +AM_LDFLAGS = $(BOOST_LDFLAGS) .hpp.gch: target=`echo $@ | sed "s|.gch$$|.hpp|"`;\ @@ -23,7 +23,7 @@ AM_LDFLAGS = @WX_LIBS@ $(BOOST_LDFLAGS) .gch.o: gcc -x c - -c -o $@ <<<"" -magicseteditor_LDADD = $(BOOST_REGEX_LIB) +magicseteditor_LDADD = @WX_LIBS@ $(BOOST_REGEX_LIB) magicseteditor_CXXFLAGS = $(AM_CXXFLAGS) magicseteditor_SOURCES = @@ -37,174 +37,174 @@ magicseteditor_CXXFLAGS += -fpch-deps endif # The script used to generate is MakeAM.sh -magicseteditor_SOURCES += ./src/main.cpp magicseteditor_SOURCES += ./src/cli/cli_main.cpp -magicseteditor_SOURCES += ./src/cli/win32_cli_wrapper.cpp magicseteditor_SOURCES += ./src/cli/text_io_handler.cpp -magicseteditor_SOURCES += ./src/gfx/rotate_image.cpp -magicseteditor_SOURCES += ./src/gfx/generated_image.cpp -magicseteditor_SOURCES += ./src/gfx/color.cpp -magicseteditor_SOURCES += ./src/gfx/polynomial.cpp -magicseteditor_SOURCES += ./src/gfx/combine_image.cpp -magicseteditor_SOURCES += ./src/gfx/bezier.cpp -magicseteditor_SOURCES += ./src/gfx/resample_text.cpp -magicseteditor_SOURCES += ./src/gfx/resample_image.cpp -magicseteditor_SOURCES += ./src/gfx/image_effects.cpp -magicseteditor_SOURCES += ./src/gfx/mask_image.cpp -magicseteditor_SOURCES += ./src/gfx/blend_image.cpp -magicseteditor_SOURCES += ./src/script/value.cpp -magicseteditor_SOURCES += ./src/script/script_manager.cpp -magicseteditor_SOURCES += ./src/script/functions/basic.cpp -magicseteditor_SOURCES += ./src/script/functions/regex.cpp -magicseteditor_SOURCES += ./src/script/functions/editor.cpp -magicseteditor_SOURCES += ./src/script/functions/construction.cpp -magicseteditor_SOURCES += ./src/script/functions/spelling.cpp -magicseteditor_SOURCES += ./src/script/functions/image.cpp -magicseteditor_SOURCES += ./src/script/functions/english.cpp -magicseteditor_SOURCES += ./src/script/functions/export.cpp -magicseteditor_SOURCES += ./src/script/dependency.cpp -magicseteditor_SOURCES += ./src/script/parser.cpp -magicseteditor_SOURCES += ./src/script/context.cpp -magicseteditor_SOURCES += ./src/script/image.cpp -magicseteditor_SOURCES += ./src/script/profiler.cpp -magicseteditor_SOURCES += ./src/script/scriptable.cpp -magicseteditor_SOURCES += ./src/script/script.cpp -magicseteditor_SOURCES += ./src/gui/preferences_window.cpp -magicseteditor_SOURCES += ./src/gui/profiler_window.cpp -magicseteditor_SOURCES += ./src/gui/symbol/basic_shape_editor.cpp -magicseteditor_SOURCES += ./src/gui/symbol/point_editor.cpp -magicseteditor_SOURCES += ./src/gui/symbol/part_list.cpp -magicseteditor_SOURCES += ./src/gui/symbol/symmetry_editor.cpp -magicseteditor_SOURCES += ./src/gui/symbol/selection.cpp -magicseteditor_SOURCES += ./src/gui/symbol/window.cpp -magicseteditor_SOURCES += ./src/gui/symbol/editor.cpp -magicseteditor_SOURCES += ./src/gui/symbol/select_editor.cpp -magicseteditor_SOURCES += ./src/gui/symbol/control.cpp -magicseteditor_SOURCES += ./src/gui/card_select_window.cpp -magicseteditor_SOURCES += ./src/gui/control/card_list.cpp -magicseteditor_SOURCES += ./src/gui/control/gallery_list.cpp -magicseteditor_SOURCES += ./src/gui/control/keyword_list.cpp -magicseteditor_SOURCES += ./src/gui/control/graph.cpp -magicseteditor_SOURCES += ./src/gui/control/image_card_list.cpp -magicseteditor_SOURCES += ./src/gui/control/card_viewer.cpp -magicseteditor_SOURCES += ./src/gui/control/native_look_editor.cpp -magicseteditor_SOURCES += ./src/gui/control/select_card_list.cpp -magicseteditor_SOURCES += ./src/gui/control/item_list.cpp -magicseteditor_SOURCES += ./src/gui/control/text_ctrl.cpp -magicseteditor_SOURCES += ./src/gui/control/card_editor.cpp -magicseteditor_SOURCES += ./src/gui/control/filtered_card_list.cpp -magicseteditor_SOURCES += ./src/gui/control/filter_ctrl.cpp -magicseteditor_SOURCES += ./src/gui/control/package_list.cpp -magicseteditor_SOURCES += ./src/gui/control/tree_list.cpp -magicseteditor_SOURCES += ./src/gui/control/card_list_column_select.cpp -magicseteditor_SOURCES += ./src/gui/package_update_list.cpp -magicseteditor_SOURCES += ./src/gui/drop_down_list.cpp -magicseteditor_SOURCES += ./src/gui/value/symbol.cpp -magicseteditor_SOURCES += ./src/gui/value/package_choice.cpp -magicseteditor_SOURCES += ./src/gui/value/color.cpp -magicseteditor_SOURCES += ./src/gui/value/text.cpp -magicseteditor_SOURCES += ./src/gui/value/multiple_choice.cpp -magicseteditor_SOURCES += ./src/gui/value/editor.cpp -magicseteditor_SOURCES += ./src/gui/value/information.cpp -magicseteditor_SOURCES += ./src/gui/value/choice.cpp -magicseteditor_SOURCES += ./src/gui/value/image.cpp -magicseteditor_SOURCES += ./src/gui/packages_window.cpp -magicseteditor_SOURCES += ./src/gui/set/keywords_panel.cpp -magicseteditor_SOURCES += ./src/gui/set/panel.cpp -magicseteditor_SOURCES += ./src/gui/set/random_pack_panel.cpp -magicseteditor_SOURCES += ./src/gui/set/window.cpp -magicseteditor_SOURCES += ./src/gui/set/stats_panel.cpp -magicseteditor_SOURCES += ./src/gui/set/cards_panel.cpp -magicseteditor_SOURCES += ./src/gui/set/style_panel.cpp -magicseteditor_SOURCES += ./src/gui/set/console_panel.cpp -magicseteditor_SOURCES += ./src/gui/set/set_info_panel.cpp -magicseteditor_SOURCES += ./src/gui/html_export_window.cpp -magicseteditor_SOURCES += ./src/gui/new_window.cpp -magicseteditor_SOURCES += ./src/gui/thumbnail_thread.cpp -magicseteditor_SOURCES += ./src/gui/util.cpp -magicseteditor_SOURCES += ./src/gui/welcome_window.cpp -magicseteditor_SOURCES += ./src/gui/auto_replace_window.cpp -magicseteditor_SOURCES += ./src/gui/image_slice_window.cpp -magicseteditor_SOURCES += ./src/gui/about_window.cpp -magicseteditor_SOURCES += ./src/gui/print_window.cpp -magicseteditor_SOURCES += ./src/gui/images_export_window.cpp -magicseteditor_SOURCES += ./src/gui/update_checker.cpp -magicseteditor_SOURCES += ./src/gui/icon_menu.cpp -magicseteditor_SOURCES += ./src/code_template.cpp -magicseteditor_SOURCES += ./src/util/error.cpp -magicseteditor_SOURCES += ./src/util/file_utils.cpp -magicseteditor_SOURCES += ./src/util/alignment.cpp -magicseteditor_SOURCES += ./src/util/string.cpp -magicseteditor_SOURCES += ./src/util/tagged_string.cpp -magicseteditor_SOURCES += ./src/util/age.cpp -magicseteditor_SOURCES += ./src/util/action_stack.cpp -magicseteditor_SOURCES += ./src/util/regex.cpp -magicseteditor_SOURCES += ./src/util/vcs.cpp -magicseteditor_SOURCES += ./src/util/rotation.cpp -magicseteditor_SOURCES += ./src/util/spec_sort.cpp -magicseteditor_SOURCES += ./src/util/spell_checker.cpp -magicseteditor_SOURCES += ./src/util/version.cpp -magicseteditor_SOURCES += ./src/util/io/get_member.cpp -magicseteditor_SOURCES += ./src/util/io/package_manager.cpp -magicseteditor_SOURCES += ./src/util/io/writer.cpp -magicseteditor_SOURCES += ./src/util/io/reader.cpp -magicseteditor_SOURCES += ./src/util/io/package.cpp -magicseteditor_SOURCES += ./src/util/vcs/subversion.cpp -magicseteditor_SOURCES += ./src/render/symbol/viewer.cpp -magicseteditor_SOURCES += ./src/render/symbol/filter.cpp -magicseteditor_SOURCES += ./src/render/value/symbol.cpp -magicseteditor_SOURCES += ./src/render/value/package_choice.cpp -magicseteditor_SOURCES += ./src/render/value/color.cpp -magicseteditor_SOURCES += ./src/render/value/viewer.cpp -magicseteditor_SOURCES += ./src/render/value/text.cpp -magicseteditor_SOURCES += ./src/render/value/multiple_choice.cpp -magicseteditor_SOURCES += ./src/render/value/information.cpp -magicseteditor_SOURCES += ./src/render/value/choice.cpp -magicseteditor_SOURCES += ./src/render/value/image.cpp -magicseteditor_SOURCES += ./src/render/text/symbol.cpp -magicseteditor_SOURCES += ./src/render/text/viewer.cpp -magicseteditor_SOURCES += ./src/render/text/element.cpp -magicseteditor_SOURCES += ./src/render/text/font.cpp -magicseteditor_SOURCES += ./src/render/text/compound.cpp -magicseteditor_SOURCES += ./src/render/card/viewer.cpp -magicseteditor_SOURCES += ./src/data/field.cpp -magicseteditor_SOURCES += ./src/data/keyword.cpp -magicseteditor_SOURCES += ./src/data/symbol.cpp -magicseteditor_SOURCES += ./src/data/game.cpp -magicseteditor_SOURCES += ./src/data/pack.cpp -magicseteditor_SOURCES += ./src/data/field/symbol.cpp -magicseteditor_SOURCES += ./src/data/field/package_choice.cpp -magicseteditor_SOURCES += ./src/data/field/color.cpp -magicseteditor_SOURCES += ./src/data/field/text.cpp -magicseteditor_SOURCES += ./src/data/field/multiple_choice.cpp +magicseteditor_SOURCES += ./src/cli/win32_cli_wrapper.cpp +magicseteditor_SOURCES += ./src/data/action/keyword.cpp +magicseteditor_SOURCES += ./src/data/action/set.cpp +magicseteditor_SOURCES += ./src/data/action/symbol.cpp +magicseteditor_SOURCES += ./src/data/action/symbol_part.cpp +magicseteditor_SOURCES += ./src/data/action/value.cpp magicseteditor_SOURCES += ./src/data/field/boolean.cpp -magicseteditor_SOURCES += ./src/data/field/information.cpp magicseteditor_SOURCES += ./src/data/field/choice.cpp +magicseteditor_SOURCES += ./src/data/field/color.cpp magicseteditor_SOURCES += ./src/data/field/image.cpp -magicseteditor_SOURCES += ./src/data/locale.cpp +magicseteditor_SOURCES += ./src/data/field/information.cpp +magicseteditor_SOURCES += ./src/data/field/multiple_choice.cpp +magicseteditor_SOURCES += ./src/data/field/package_choice.cpp +magicseteditor_SOURCES += ./src/data/field/symbol.cpp +magicseteditor_SOURCES += ./src/data/field/text.cpp +magicseteditor_SOURCES += ./src/data/format/apprentice.cpp +magicseteditor_SOURCES += ./src/data/format/clipboard.cpp +magicseteditor_SOURCES += ./src/data/format/formats.cpp +magicseteditor_SOURCES += ./src/data/format/html.cpp +magicseteditor_SOURCES += ./src/data/format/image.cpp +magicseteditor_SOURCES += ./src/data/format/image_to_symbol.cpp +magicseteditor_SOURCES += ./src/data/format/mse1.cpp +magicseteditor_SOURCES += ./src/data/format/mse2.cpp +magicseteditor_SOURCES += ./src/data/format/mtg_editor.cpp +magicseteditor_SOURCES += ./src/data/format/mws.cpp magicseteditor_SOURCES += ./src/data/add_cards_script.cpp magicseteditor_SOURCES += ./src/data/card.cpp magicseteditor_SOURCES += ./src/data/export_template.cpp -magicseteditor_SOURCES += ./src/data/symbol_font.cpp -magicseteditor_SOURCES += ./src/data/format/mtg_editor.cpp -magicseteditor_SOURCES += ./src/data/format/mse1.cpp -magicseteditor_SOURCES += ./src/data/format/clipboard.cpp -magicseteditor_SOURCES += ./src/data/format/image_to_symbol.cpp -magicseteditor_SOURCES += ./src/data/format/html.cpp -magicseteditor_SOURCES += ./src/data/format/apprentice.cpp -magicseteditor_SOURCES += ./src/data/format/formats.cpp -magicseteditor_SOURCES += ./src/data/format/image.cpp -magicseteditor_SOURCES += ./src/data/format/mws.cpp -magicseteditor_SOURCES += ./src/data/format/mse2.cpp -magicseteditor_SOURCES += ./src/data/set.cpp -magicseteditor_SOURCES += ./src/data/installer.cpp +magicseteditor_SOURCES += ./src/data/field.cpp magicseteditor_SOURCES += ./src/data/font.cpp -magicseteditor_SOURCES += ./src/data/statistics.cpp -magicseteditor_SOURCES += ./src/data/action/keyword.cpp -magicseteditor_SOURCES += ./src/data/action/symbol.cpp -magicseteditor_SOURCES += ./src/data/action/value.cpp -magicseteditor_SOURCES += ./src/data/action/symbol_part.cpp -magicseteditor_SOURCES += ./src/data/action/set.cpp -magicseteditor_SOURCES += ./src/data/stylesheet.cpp -magicseteditor_SOURCES += ./src/data/word_list.cpp +magicseteditor_SOURCES += ./src/data/game.cpp +magicseteditor_SOURCES += ./src/data/installer.cpp +magicseteditor_SOURCES += ./src/data/keyword.cpp +magicseteditor_SOURCES += ./src/data/locale.cpp +magicseteditor_SOURCES += ./src/data/pack.cpp +magicseteditor_SOURCES += ./src/data/set.cpp magicseteditor_SOURCES += ./src/data/settings.cpp +magicseteditor_SOURCES += ./src/data/statistics.cpp +magicseteditor_SOURCES += ./src/data/stylesheet.cpp +magicseteditor_SOURCES += ./src/data/symbol.cpp +magicseteditor_SOURCES += ./src/data/symbol_font.cpp +magicseteditor_SOURCES += ./src/data/word_list.cpp +magicseteditor_SOURCES += ./src/gfx/blend_image.cpp +magicseteditor_SOURCES += ./src/gfx/color.cpp +magicseteditor_SOURCES += ./src/gfx/combine_image.cpp +magicseteditor_SOURCES += ./src/gfx/generated_image.cpp +magicseteditor_SOURCES += ./src/gfx/image_effects.cpp +magicseteditor_SOURCES += ./src/gfx/mask_image.cpp +magicseteditor_SOURCES += ./src/gfx/polynomial.cpp +magicseteditor_SOURCES += ./src/gfx/resample_image.cpp +magicseteditor_SOURCES += ./src/gfx/resample_text.cpp +magicseteditor_SOURCES += ./src/gfx/rotate_image.cpp +magicseteditor_SOURCES += ./src/gfx/bezier.cpp +magicseteditor_SOURCES += ./src/gui/control/card_viewer.cpp +magicseteditor_SOURCES += ./src/gui/control/native_look_editor.cpp +magicseteditor_SOURCES += ./src/gui/control/card_list_column_select.cpp +magicseteditor_SOURCES += ./src/gui/control/filtered_card_list.cpp +magicseteditor_SOURCES += ./src/gui/control/item_list.cpp +magicseteditor_SOURCES += ./src/gui/control/package_list.cpp +magicseteditor_SOURCES += ./src/gui/control/text_ctrl.cpp +magicseteditor_SOURCES += ./src/gui/control/tree_list.cpp +magicseteditor_SOURCES += ./src/gui/control/card_editor.cpp +magicseteditor_SOURCES += ./src/gui/control/card_list.cpp +magicseteditor_SOURCES += ./src/gui/control/filter_ctrl.cpp +magicseteditor_SOURCES += ./src/gui/control/gallery_list.cpp +magicseteditor_SOURCES += ./src/gui/control/graph.cpp +magicseteditor_SOURCES += ./src/gui/control/image_card_list.cpp +magicseteditor_SOURCES += ./src/gui/control/keyword_list.cpp +magicseteditor_SOURCES += ./src/gui/control/select_card_list.cpp +magicseteditor_SOURCES += ./src/gui/package_update_list.cpp +magicseteditor_SOURCES += ./src/gui/packages_window.cpp +magicseteditor_SOURCES += ./src/gui/preferences_window.cpp +magicseteditor_SOURCES += ./src/gui/set/cards_panel.cpp +magicseteditor_SOURCES += ./src/gui/set/console_panel.cpp +magicseteditor_SOURCES += ./src/gui/set/keywords_panel.cpp +magicseteditor_SOURCES += ./src/gui/set/panel.cpp +magicseteditor_SOURCES += ./src/gui/set/random_pack_panel.cpp +magicseteditor_SOURCES += ./src/gui/set/set_info_panel.cpp +magicseteditor_SOURCES += ./src/gui/set/stats_panel.cpp +magicseteditor_SOURCES += ./src/gui/set/style_panel.cpp +magicseteditor_SOURCES += ./src/gui/set/window.cpp +magicseteditor_SOURCES += ./src/gui/symbol/basic_shape_editor.cpp +magicseteditor_SOURCES += ./src/gui/symbol/control.cpp +magicseteditor_SOURCES += ./src/gui/symbol/editor.cpp +magicseteditor_SOURCES += ./src/gui/symbol/part_list.cpp +magicseteditor_SOURCES += ./src/gui/symbol/point_editor.cpp +magicseteditor_SOURCES += ./src/gui/symbol/select_editor.cpp +magicseteditor_SOURCES += ./src/gui/symbol/selection.cpp +magicseteditor_SOURCES += ./src/gui/symbol/symmetry_editor.cpp +magicseteditor_SOURCES += ./src/gui/symbol/window.cpp +magicseteditor_SOURCES += ./src/gui/value/choice.cpp +magicseteditor_SOURCES += ./src/gui/value/color.cpp +magicseteditor_SOURCES += ./src/gui/value/editor.cpp +magicseteditor_SOURCES += ./src/gui/value/image.cpp +magicseteditor_SOURCES += ./src/gui/value/information.cpp +magicseteditor_SOURCES += ./src/gui/value/multiple_choice.cpp +magicseteditor_SOURCES += ./src/gui/value/package_choice.cpp +magicseteditor_SOURCES += ./src/gui/value/symbol.cpp +magicseteditor_SOURCES += ./src/gui/value/text.cpp +magicseteditor_SOURCES += ./src/gui/print_window.cpp +magicseteditor_SOURCES += ./src/gui/profiler_window.cpp +magicseteditor_SOURCES += ./src/gui/thumbnail_thread.cpp +magicseteditor_SOURCES += ./src/gui/update_checker.cpp +magicseteditor_SOURCES += ./src/gui/util.cpp +magicseteditor_SOURCES += ./src/gui/welcome_window.cpp +magicseteditor_SOURCES += ./src/gui/about_window.cpp +magicseteditor_SOURCES += ./src/gui/auto_replace_window.cpp +magicseteditor_SOURCES += ./src/gui/card_select_window.cpp +magicseteditor_SOURCES += ./src/gui/drop_down_list.cpp +magicseteditor_SOURCES += ./src/gui/html_export_window.cpp +magicseteditor_SOURCES += ./src/gui/icon_menu.cpp +magicseteditor_SOURCES += ./src/gui/image_slice_window.cpp +magicseteditor_SOURCES += ./src/gui/images_export_window.cpp +magicseteditor_SOURCES += ./src/gui/new_window.cpp +magicseteditor_SOURCES += ./src/render/card/viewer.cpp +magicseteditor_SOURCES += ./src/render/symbol/filter.cpp +magicseteditor_SOURCES += ./src/render/symbol/viewer.cpp +magicseteditor_SOURCES += ./src/render/text/compound.cpp +magicseteditor_SOURCES += ./src/render/text/element.cpp +magicseteditor_SOURCES += ./src/render/text/font.cpp +magicseteditor_SOURCES += ./src/render/text/symbol.cpp +magicseteditor_SOURCES += ./src/render/text/viewer.cpp +magicseteditor_SOURCES += ./src/render/value/choice.cpp +magicseteditor_SOURCES += ./src/render/value/color.cpp +magicseteditor_SOURCES += ./src/render/value/image.cpp +magicseteditor_SOURCES += ./src/render/value/information.cpp +magicseteditor_SOURCES += ./src/render/value/multiple_choice.cpp +magicseteditor_SOURCES += ./src/render/value/package_choice.cpp +magicseteditor_SOURCES += ./src/render/value/symbol.cpp +magicseteditor_SOURCES += ./src/render/value/text.cpp +magicseteditor_SOURCES += ./src/render/value/viewer.cpp +magicseteditor_SOURCES += ./src/script/functions/basic.cpp +magicseteditor_SOURCES += ./src/script/functions/construction.cpp +magicseteditor_SOURCES += ./src/script/functions/editor.cpp +magicseteditor_SOURCES += ./src/script/functions/english.cpp +magicseteditor_SOURCES += ./src/script/functions/export.cpp +magicseteditor_SOURCES += ./src/script/functions/image.cpp +magicseteditor_SOURCES += ./src/script/functions/regex.cpp +magicseteditor_SOURCES += ./src/script/functions/spelling.cpp +magicseteditor_SOURCES += ./src/script/context.cpp +magicseteditor_SOURCES += ./src/script/dependency.cpp +magicseteditor_SOURCES += ./src/script/image.cpp +magicseteditor_SOURCES += ./src/script/parser.cpp +magicseteditor_SOURCES += ./src/script/profiler.cpp +magicseteditor_SOURCES += ./src/script/script.cpp +magicseteditor_SOURCES += ./src/script/script_manager.cpp +magicseteditor_SOURCES += ./src/script/scriptable.cpp +magicseteditor_SOURCES += ./src/script/value.cpp +magicseteditor_SOURCES += ./src/util/io/get_member.cpp +magicseteditor_SOURCES += ./src/util/io/package.cpp +magicseteditor_SOURCES += ./src/util/io/package_manager.cpp +magicseteditor_SOURCES += ./src/util/io/reader.cpp +magicseteditor_SOURCES += ./src/util/io/writer.cpp +magicseteditor_SOURCES += ./src/util/vcs/subversion.cpp +magicseteditor_SOURCES += ./src/util/spec_sort.cpp +magicseteditor_SOURCES += ./src/util/spell_checker.cpp +magicseteditor_SOURCES += ./src/util/string.cpp +magicseteditor_SOURCES += ./src/util/tagged_string.cpp +magicseteditor_SOURCES += ./src/util/vcs.cpp +magicseteditor_SOURCES += ./src/util/version.cpp +magicseteditor_SOURCES += ./src/util/action_stack.cpp +magicseteditor_SOURCES += ./src/util/age.cpp +magicseteditor_SOURCES += ./src/util/alignment.cpp +magicseteditor_SOURCES += ./src/util/error.cpp +magicseteditor_SOURCES += ./src/util/file_utils.cpp +magicseteditor_SOURCES += ./src/util/regex.cpp +magicseteditor_SOURCES += ./src/util/rotation.cpp +magicseteditor_SOURCES += ./src/code_template.cpp +magicseteditor_SOURCES += ./src/main.cpp diff --git a/Makefile.in b/Makefile.in index 05cc9c5a..23dda01d 100644 --- a/Makefile.in +++ b/Makefile.in @@ -114,282 +114,285 @@ CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = am__installdirs = "$(DESTDIR)$(bindir)" PROGRAMS = $(bin_PROGRAMS) -am__magicseteditor_SOURCES_DIST = ./src/util/prec.gch ./src/main.cpp \ - ./src/cli/cli_main.cpp ./src/cli/win32_cli_wrapper.cpp \ - ./src/cli/text_io_handler.cpp ./src/gfx/rotate_image.cpp \ - ./src/gfx/generated_image.cpp ./src/gfx/color.cpp \ - ./src/gfx/polynomial.cpp ./src/gfx/combine_image.cpp \ - ./src/gfx/bezier.cpp ./src/gfx/resample_text.cpp \ - ./src/gfx/resample_image.cpp ./src/gfx/image_effects.cpp \ - ./src/gfx/mask_image.cpp ./src/gfx/blend_image.cpp \ - ./src/script/value.cpp ./src/script/script_manager.cpp \ - ./src/script/functions/basic.cpp \ - ./src/script/functions/regex.cpp \ - ./src/script/functions/editor.cpp \ - ./src/script/functions/construction.cpp \ - ./src/script/functions/spelling.cpp \ - ./src/script/functions/image.cpp \ - ./src/script/functions/english.cpp \ - ./src/script/functions/export.cpp ./src/script/dependency.cpp \ - ./src/script/parser.cpp ./src/script/context.cpp \ - ./src/script/image.cpp ./src/script/profiler.cpp \ - ./src/script/scriptable.cpp ./src/script/script.cpp \ - ./src/gui/preferences_window.cpp ./src/gui/profiler_window.cpp \ - ./src/gui/symbol/basic_shape_editor.cpp \ - ./src/gui/symbol/point_editor.cpp \ - ./src/gui/symbol/part_list.cpp \ - ./src/gui/symbol/symmetry_editor.cpp \ - ./src/gui/symbol/selection.cpp ./src/gui/symbol/window.cpp \ - ./src/gui/symbol/editor.cpp ./src/gui/symbol/select_editor.cpp \ - ./src/gui/symbol/control.cpp ./src/gui/card_select_window.cpp \ - ./src/gui/control/card_list.cpp \ - ./src/gui/control/gallery_list.cpp \ - ./src/gui/control/keyword_list.cpp ./src/gui/control/graph.cpp \ - ./src/gui/control/image_card_list.cpp \ - ./src/gui/control/card_viewer.cpp \ - ./src/gui/control/native_look_editor.cpp \ - ./src/gui/control/select_card_list.cpp \ - ./src/gui/control/item_list.cpp \ - ./src/gui/control/text_ctrl.cpp \ - ./src/gui/control/card_editor.cpp \ - ./src/gui/control/filtered_card_list.cpp \ - ./src/gui/control/filter_ctrl.cpp \ - ./src/gui/control/package_list.cpp \ - ./src/gui/control/tree_list.cpp \ - ./src/gui/control/card_list_column_select.cpp \ - ./src/gui/package_update_list.cpp ./src/gui/drop_down_list.cpp \ - ./src/gui/value/symbol.cpp ./src/gui/value/package_choice.cpp \ - ./src/gui/value/color.cpp ./src/gui/value/text.cpp \ - ./src/gui/value/multiple_choice.cpp ./src/gui/value/editor.cpp \ - ./src/gui/value/information.cpp ./src/gui/value/choice.cpp \ - ./src/gui/value/image.cpp ./src/gui/packages_window.cpp \ - ./src/gui/set/keywords_panel.cpp ./src/gui/set/panel.cpp \ - ./src/gui/set/random_pack_panel.cpp ./src/gui/set/window.cpp \ - ./src/gui/set/stats_panel.cpp ./src/gui/set/cards_panel.cpp \ - ./src/gui/set/style_panel.cpp ./src/gui/set/console_panel.cpp \ - ./src/gui/set/set_info_panel.cpp \ - ./src/gui/html_export_window.cpp ./src/gui/new_window.cpp \ - ./src/gui/thumbnail_thread.cpp ./src/gui/util.cpp \ - ./src/gui/welcome_window.cpp ./src/gui/auto_replace_window.cpp \ - ./src/gui/image_slice_window.cpp ./src/gui/about_window.cpp \ - ./src/gui/print_window.cpp ./src/gui/images_export_window.cpp \ - ./src/gui/update_checker.cpp ./src/gui/icon_menu.cpp \ - ./src/code_template.cpp ./src/util/error.cpp \ - ./src/util/file_utils.cpp ./src/util/alignment.cpp \ - ./src/util/string.cpp ./src/util/tagged_string.cpp \ - ./src/util/age.cpp ./src/util/action_stack.cpp \ - ./src/util/regex.cpp ./src/util/vcs.cpp \ - ./src/util/rotation.cpp ./src/util/spec_sort.cpp \ - ./src/util/spell_checker.cpp ./src/util/version.cpp \ - ./src/util/io/get_member.cpp ./src/util/io/package_manager.cpp \ - ./src/util/io/writer.cpp ./src/util/io/reader.cpp \ - ./src/util/io/package.cpp ./src/util/vcs/subversion.cpp \ - ./src/render/symbol/viewer.cpp ./src/render/symbol/filter.cpp \ - ./src/render/value/symbol.cpp \ - ./src/render/value/package_choice.cpp \ - ./src/render/value/color.cpp ./src/render/value/viewer.cpp \ - ./src/render/value/text.cpp \ - ./src/render/value/multiple_choice.cpp \ - ./src/render/value/information.cpp \ - ./src/render/value/choice.cpp ./src/render/value/image.cpp \ - ./src/render/text/symbol.cpp ./src/render/text/viewer.cpp \ - ./src/render/text/element.cpp ./src/render/text/font.cpp \ - ./src/render/text/compound.cpp ./src/render/card/viewer.cpp \ - ./src/data/field.cpp ./src/data/keyword.cpp \ - ./src/data/symbol.cpp ./src/data/game.cpp ./src/data/pack.cpp \ - ./src/data/field/symbol.cpp \ - ./src/data/field/package_choice.cpp ./src/data/field/color.cpp \ - ./src/data/field/text.cpp ./src/data/field/multiple_choice.cpp \ - ./src/data/field/boolean.cpp ./src/data/field/information.cpp \ - ./src/data/field/choice.cpp ./src/data/field/image.cpp \ - ./src/data/locale.cpp ./src/data/add_cards_script.cpp \ - ./src/data/card.cpp ./src/data/export_template.cpp \ - ./src/data/symbol_font.cpp ./src/data/format/mtg_editor.cpp \ - ./src/data/format/mse1.cpp ./src/data/format/clipboard.cpp \ +am__magicseteditor_SOURCES_DIST = ./src/util/prec.gch \ + ./src/cli/cli_main.cpp ./src/cli/text_io_handler.cpp \ + ./src/cli/win32_cli_wrapper.cpp ./src/data/action/keyword.cpp \ + ./src/data/action/set.cpp ./src/data/action/symbol.cpp \ + ./src/data/action/symbol_part.cpp ./src/data/action/value.cpp \ + ./src/data/field/boolean.cpp ./src/data/field/choice.cpp \ + ./src/data/field/color.cpp ./src/data/field/image.cpp \ + ./src/data/field/information.cpp \ + ./src/data/field/multiple_choice.cpp \ + ./src/data/field/package_choice.cpp \ + ./src/data/field/symbol.cpp ./src/data/field/text.cpp \ + ./src/data/format/apprentice.cpp \ + ./src/data/format/clipboard.cpp ./src/data/format/formats.cpp \ + ./src/data/format/html.cpp ./src/data/format/image.cpp \ ./src/data/format/image_to_symbol.cpp \ - ./src/data/format/html.cpp ./src/data/format/apprentice.cpp \ - ./src/data/format/formats.cpp ./src/data/format/image.cpp \ - ./src/data/format/mws.cpp ./src/data/format/mse2.cpp \ - ./src/data/set.cpp ./src/data/installer.cpp \ - ./src/data/font.cpp ./src/data/statistics.cpp \ - ./src/data/action/keyword.cpp ./src/data/action/symbol.cpp \ - ./src/data/action/value.cpp ./src/data/action/symbol_part.cpp \ - ./src/data/action/set.cpp ./src/data/stylesheet.cpp \ - ./src/data/word_list.cpp ./src/data/settings.cpp + ./src/data/format/mse1.cpp ./src/data/format/mse2.cpp \ + ./src/data/format/mtg_editor.cpp ./src/data/format/mws.cpp \ + ./src/data/add_cards_script.cpp ./src/data/card.cpp \ + ./src/data/export_template.cpp ./src/data/field.cpp \ + ./src/data/font.cpp ./src/data/game.cpp \ + ./src/data/installer.cpp ./src/data/keyword.cpp \ + ./src/data/locale.cpp ./src/data/pack.cpp ./src/data/set.cpp \ + ./src/data/settings.cpp ./src/data/statistics.cpp \ + ./src/data/stylesheet.cpp ./src/data/symbol.cpp \ + ./src/data/symbol_font.cpp ./src/data/word_list.cpp \ + ./src/gfx/blend_image.cpp ./src/gfx/color.cpp \ + ./src/gfx/combine_image.cpp ./src/gfx/generated_image.cpp \ + ./src/gfx/image_effects.cpp ./src/gfx/mask_image.cpp \ + ./src/gfx/polynomial.cpp ./src/gfx/resample_image.cpp \ + ./src/gfx/resample_text.cpp ./src/gfx/rotate_image.cpp \ + ./src/gfx/bezier.cpp ./src/gui/control/card_viewer.cpp \ + ./src/gui/control/native_look_editor.cpp \ + ./src/gui/control/card_list_column_select.cpp \ + ./src/gui/control/filtered_card_list.cpp \ + ./src/gui/control/item_list.cpp \ + ./src/gui/control/package_list.cpp \ + ./src/gui/control/text_ctrl.cpp \ + ./src/gui/control/tree_list.cpp \ + ./src/gui/control/card_editor.cpp \ + ./src/gui/control/card_list.cpp \ + ./src/gui/control/filter_ctrl.cpp \ + ./src/gui/control/gallery_list.cpp ./src/gui/control/graph.cpp \ + ./src/gui/control/image_card_list.cpp \ + ./src/gui/control/keyword_list.cpp \ + ./src/gui/control/select_card_list.cpp \ + ./src/gui/package_update_list.cpp \ + ./src/gui/packages_window.cpp ./src/gui/preferences_window.cpp \ + ./src/gui/set/cards_panel.cpp ./src/gui/set/console_panel.cpp \ + ./src/gui/set/keywords_panel.cpp ./src/gui/set/panel.cpp \ + ./src/gui/set/random_pack_panel.cpp \ + ./src/gui/set/set_info_panel.cpp ./src/gui/set/stats_panel.cpp \ + ./src/gui/set/style_panel.cpp ./src/gui/set/window.cpp \ + ./src/gui/symbol/basic_shape_editor.cpp \ + ./src/gui/symbol/control.cpp ./src/gui/symbol/editor.cpp \ + ./src/gui/symbol/part_list.cpp \ + ./src/gui/symbol/point_editor.cpp \ + ./src/gui/symbol/select_editor.cpp \ + ./src/gui/symbol/selection.cpp \ + ./src/gui/symbol/symmetry_editor.cpp \ + ./src/gui/symbol/window.cpp ./src/gui/value/choice.cpp \ + ./src/gui/value/color.cpp ./src/gui/value/editor.cpp \ + ./src/gui/value/image.cpp ./src/gui/value/information.cpp \ + ./src/gui/value/multiple_choice.cpp \ + ./src/gui/value/package_choice.cpp ./src/gui/value/symbol.cpp \ + ./src/gui/value/text.cpp ./src/gui/print_window.cpp \ + ./src/gui/profiler_window.cpp ./src/gui/thumbnail_thread.cpp \ + ./src/gui/update_checker.cpp ./src/gui/util.cpp \ + ./src/gui/welcome_window.cpp ./src/gui/about_window.cpp \ + ./src/gui/auto_replace_window.cpp \ + ./src/gui/card_select_window.cpp ./src/gui/drop_down_list.cpp \ + ./src/gui/html_export_window.cpp ./src/gui/icon_menu.cpp \ + ./src/gui/image_slice_window.cpp \ + ./src/gui/images_export_window.cpp ./src/gui/new_window.cpp \ + ./src/render/card/viewer.cpp ./src/render/symbol/filter.cpp \ + ./src/render/symbol/viewer.cpp ./src/render/text/compound.cpp \ + ./src/render/text/element.cpp ./src/render/text/font.cpp \ + ./src/render/text/symbol.cpp ./src/render/text/viewer.cpp \ + ./src/render/value/choice.cpp ./src/render/value/color.cpp \ + ./src/render/value/image.cpp \ + ./src/render/value/information.cpp \ + ./src/render/value/multiple_choice.cpp \ + ./src/render/value/package_choice.cpp \ + ./src/render/value/symbol.cpp ./src/render/value/text.cpp \ + ./src/render/value/viewer.cpp ./src/script/functions/basic.cpp \ + ./src/script/functions/construction.cpp \ + ./src/script/functions/editor.cpp \ + ./src/script/functions/english.cpp \ + ./src/script/functions/export.cpp \ + ./src/script/functions/image.cpp \ + ./src/script/functions/regex.cpp \ + ./src/script/functions/spelling.cpp ./src/script/context.cpp \ + ./src/script/dependency.cpp ./src/script/image.cpp \ + ./src/script/parser.cpp ./src/script/profiler.cpp \ + ./src/script/script.cpp ./src/script/script_manager.cpp \ + ./src/script/scriptable.cpp ./src/script/value.cpp \ + ./src/util/io/get_member.cpp ./src/util/io/package.cpp \ + ./src/util/io/package_manager.cpp ./src/util/io/reader.cpp \ + ./src/util/io/writer.cpp ./src/util/vcs/subversion.cpp \ + ./src/util/spec_sort.cpp ./src/util/spell_checker.cpp \ + ./src/util/string.cpp ./src/util/tagged_string.cpp \ + ./src/util/vcs.cpp ./src/util/version.cpp \ + ./src/util/action_stack.cpp ./src/util/age.cpp \ + ./src/util/alignment.cpp ./src/util/error.cpp \ + ./src/util/file_utils.cpp ./src/util/regex.cpp \ + ./src/util/rotation.cpp ./src/code_template.cpp ./src/main.cpp am__dirstamp = $(am__leading_dot)dirstamp @GLIBCPP_BUILD_PCH_TRUE@am__objects_1 = ./src/util/prec.$(OBJEXT) am_magicseteditor_OBJECTS = $(am__objects_1) \ - ./src/magicseteditor-main.$(OBJEXT) \ ./src/cli/magicseteditor-cli_main.$(OBJEXT) \ - ./src/cli/magicseteditor-win32_cli_wrapper.$(OBJEXT) \ ./src/cli/magicseteditor-text_io_handler.$(OBJEXT) \ - ./src/gfx/magicseteditor-rotate_image.$(OBJEXT) \ - ./src/gfx/magicseteditor-generated_image.$(OBJEXT) \ - ./src/gfx/magicseteditor-color.$(OBJEXT) \ - ./src/gfx/magicseteditor-polynomial.$(OBJEXT) \ - ./src/gfx/magicseteditor-combine_image.$(OBJEXT) \ - ./src/gfx/magicseteditor-bezier.$(OBJEXT) \ - ./src/gfx/magicseteditor-resample_text.$(OBJEXT) \ - ./src/gfx/magicseteditor-resample_image.$(OBJEXT) \ - ./src/gfx/magicseteditor-image_effects.$(OBJEXT) \ - ./src/gfx/magicseteditor-mask_image.$(OBJEXT) \ - ./src/gfx/magicseteditor-blend_image.$(OBJEXT) \ - ./src/script/magicseteditor-value.$(OBJEXT) \ - ./src/script/magicseteditor-script_manager.$(OBJEXT) \ - ./src/script/functions/magicseteditor-basic.$(OBJEXT) \ - ./src/script/functions/magicseteditor-regex.$(OBJEXT) \ - ./src/script/functions/magicseteditor-editor.$(OBJEXT) \ - ./src/script/functions/magicseteditor-construction.$(OBJEXT) \ - ./src/script/functions/magicseteditor-spelling.$(OBJEXT) \ - ./src/script/functions/magicseteditor-image.$(OBJEXT) \ - ./src/script/functions/magicseteditor-english.$(OBJEXT) \ - ./src/script/functions/magicseteditor-export.$(OBJEXT) \ - ./src/script/magicseteditor-dependency.$(OBJEXT) \ - ./src/script/magicseteditor-parser.$(OBJEXT) \ - ./src/script/magicseteditor-context.$(OBJEXT) \ - ./src/script/magicseteditor-image.$(OBJEXT) \ - ./src/script/magicseteditor-profiler.$(OBJEXT) \ - ./src/script/magicseteditor-scriptable.$(OBJEXT) \ - ./src/script/magicseteditor-script.$(OBJEXT) \ - ./src/gui/magicseteditor-preferences_window.$(OBJEXT) \ - ./src/gui/magicseteditor-profiler_window.$(OBJEXT) \ - ./src/gui/symbol/magicseteditor-basic_shape_editor.$(OBJEXT) \ - ./src/gui/symbol/magicseteditor-point_editor.$(OBJEXT) \ - ./src/gui/symbol/magicseteditor-part_list.$(OBJEXT) \ - ./src/gui/symbol/magicseteditor-symmetry_editor.$(OBJEXT) \ - ./src/gui/symbol/magicseteditor-selection.$(OBJEXT) \ - ./src/gui/symbol/magicseteditor-window.$(OBJEXT) \ - ./src/gui/symbol/magicseteditor-editor.$(OBJEXT) \ - ./src/gui/symbol/magicseteditor-select_editor.$(OBJEXT) \ - ./src/gui/symbol/magicseteditor-control.$(OBJEXT) \ - ./src/gui/magicseteditor-card_select_window.$(OBJEXT) \ - ./src/gui/control/magicseteditor-card_list.$(OBJEXT) \ - ./src/gui/control/magicseteditor-gallery_list.$(OBJEXT) \ - ./src/gui/control/magicseteditor-keyword_list.$(OBJEXT) \ - ./src/gui/control/magicseteditor-graph.$(OBJEXT) \ - ./src/gui/control/magicseteditor-image_card_list.$(OBJEXT) \ - ./src/gui/control/magicseteditor-card_viewer.$(OBJEXT) \ - ./src/gui/control/magicseteditor-native_look_editor.$(OBJEXT) \ - ./src/gui/control/magicseteditor-select_card_list.$(OBJEXT) \ - ./src/gui/control/magicseteditor-item_list.$(OBJEXT) \ - ./src/gui/control/magicseteditor-text_ctrl.$(OBJEXT) \ - ./src/gui/control/magicseteditor-card_editor.$(OBJEXT) \ - ./src/gui/control/magicseteditor-filtered_card_list.$(OBJEXT) \ - ./src/gui/control/magicseteditor-filter_ctrl.$(OBJEXT) \ - ./src/gui/control/magicseteditor-package_list.$(OBJEXT) \ - ./src/gui/control/magicseteditor-tree_list.$(OBJEXT) \ - ./src/gui/control/magicseteditor-card_list_column_select.$(OBJEXT) \ - ./src/gui/magicseteditor-package_update_list.$(OBJEXT) \ - ./src/gui/magicseteditor-drop_down_list.$(OBJEXT) \ - ./src/gui/value/magicseteditor-symbol.$(OBJEXT) \ - ./src/gui/value/magicseteditor-package_choice.$(OBJEXT) \ - ./src/gui/value/magicseteditor-color.$(OBJEXT) \ - ./src/gui/value/magicseteditor-text.$(OBJEXT) \ - ./src/gui/value/magicseteditor-multiple_choice.$(OBJEXT) \ - ./src/gui/value/magicseteditor-editor.$(OBJEXT) \ - ./src/gui/value/magicseteditor-information.$(OBJEXT) \ - ./src/gui/value/magicseteditor-choice.$(OBJEXT) \ - ./src/gui/value/magicseteditor-image.$(OBJEXT) \ - ./src/gui/magicseteditor-packages_window.$(OBJEXT) \ - ./src/gui/set/magicseteditor-keywords_panel.$(OBJEXT) \ - ./src/gui/set/magicseteditor-panel.$(OBJEXT) \ - ./src/gui/set/magicseteditor-random_pack_panel.$(OBJEXT) \ - ./src/gui/set/magicseteditor-window.$(OBJEXT) \ - ./src/gui/set/magicseteditor-stats_panel.$(OBJEXT) \ - ./src/gui/set/magicseteditor-cards_panel.$(OBJEXT) \ - ./src/gui/set/magicseteditor-style_panel.$(OBJEXT) \ - ./src/gui/set/magicseteditor-console_panel.$(OBJEXT) \ - ./src/gui/set/magicseteditor-set_info_panel.$(OBJEXT) \ - ./src/gui/magicseteditor-html_export_window.$(OBJEXT) \ - ./src/gui/magicseteditor-new_window.$(OBJEXT) \ - ./src/gui/magicseteditor-thumbnail_thread.$(OBJEXT) \ - ./src/gui/magicseteditor-util.$(OBJEXT) \ - ./src/gui/magicseteditor-welcome_window.$(OBJEXT) \ - ./src/gui/magicseteditor-auto_replace_window.$(OBJEXT) \ - ./src/gui/magicseteditor-image_slice_window.$(OBJEXT) \ - ./src/gui/magicseteditor-about_window.$(OBJEXT) \ - ./src/gui/magicseteditor-print_window.$(OBJEXT) \ - ./src/gui/magicseteditor-images_export_window.$(OBJEXT) \ - ./src/gui/magicseteditor-update_checker.$(OBJEXT) \ - ./src/gui/magicseteditor-icon_menu.$(OBJEXT) \ - ./src/magicseteditor-code_template.$(OBJEXT) \ - ./src/util/magicseteditor-error.$(OBJEXT) \ - ./src/util/magicseteditor-file_utils.$(OBJEXT) \ - ./src/util/magicseteditor-alignment.$(OBJEXT) \ - ./src/util/magicseteditor-string.$(OBJEXT) \ - ./src/util/magicseteditor-tagged_string.$(OBJEXT) \ - ./src/util/magicseteditor-age.$(OBJEXT) \ - ./src/util/magicseteditor-action_stack.$(OBJEXT) \ - ./src/util/magicseteditor-regex.$(OBJEXT) \ - ./src/util/magicseteditor-vcs.$(OBJEXT) \ - ./src/util/magicseteditor-rotation.$(OBJEXT) \ - ./src/util/magicseteditor-spec_sort.$(OBJEXT) \ - ./src/util/magicseteditor-spell_checker.$(OBJEXT) \ - ./src/util/magicseteditor-version.$(OBJEXT) \ - ./src/util/io/magicseteditor-get_member.$(OBJEXT) \ - ./src/util/io/magicseteditor-package_manager.$(OBJEXT) \ - ./src/util/io/magicseteditor-writer.$(OBJEXT) \ - ./src/util/io/magicseteditor-reader.$(OBJEXT) \ - ./src/util/io/magicseteditor-package.$(OBJEXT) \ - ./src/util/vcs/magicseteditor-subversion.$(OBJEXT) \ - ./src/render/symbol/magicseteditor-viewer.$(OBJEXT) \ - ./src/render/symbol/magicseteditor-filter.$(OBJEXT) \ - ./src/render/value/magicseteditor-symbol.$(OBJEXT) \ - ./src/render/value/magicseteditor-package_choice.$(OBJEXT) \ - ./src/render/value/magicseteditor-color.$(OBJEXT) \ - ./src/render/value/magicseteditor-viewer.$(OBJEXT) \ - ./src/render/value/magicseteditor-text.$(OBJEXT) \ - ./src/render/value/magicseteditor-multiple_choice.$(OBJEXT) \ - ./src/render/value/magicseteditor-information.$(OBJEXT) \ - ./src/render/value/magicseteditor-choice.$(OBJEXT) \ - ./src/render/value/magicseteditor-image.$(OBJEXT) \ - ./src/render/text/magicseteditor-symbol.$(OBJEXT) \ - ./src/render/text/magicseteditor-viewer.$(OBJEXT) \ - ./src/render/text/magicseteditor-element.$(OBJEXT) \ - ./src/render/text/magicseteditor-font.$(OBJEXT) \ - ./src/render/text/magicseteditor-compound.$(OBJEXT) \ - ./src/render/card/magicseteditor-viewer.$(OBJEXT) \ - ./src/data/magicseteditor-field.$(OBJEXT) \ - ./src/data/magicseteditor-keyword.$(OBJEXT) \ - ./src/data/magicseteditor-symbol.$(OBJEXT) \ - ./src/data/magicseteditor-game.$(OBJEXT) \ - ./src/data/magicseteditor-pack.$(OBJEXT) \ - ./src/data/field/magicseteditor-symbol.$(OBJEXT) \ - ./src/data/field/magicseteditor-package_choice.$(OBJEXT) \ - ./src/data/field/magicseteditor-color.$(OBJEXT) \ - ./src/data/field/magicseteditor-text.$(OBJEXT) \ - ./src/data/field/magicseteditor-multiple_choice.$(OBJEXT) \ + ./src/cli/magicseteditor-win32_cli_wrapper.$(OBJEXT) \ + ./src/data/action/magicseteditor-keyword.$(OBJEXT) \ + ./src/data/action/magicseteditor-set.$(OBJEXT) \ + ./src/data/action/magicseteditor-symbol.$(OBJEXT) \ + ./src/data/action/magicseteditor-symbol_part.$(OBJEXT) \ + ./src/data/action/magicseteditor-value.$(OBJEXT) \ ./src/data/field/magicseteditor-boolean.$(OBJEXT) \ - ./src/data/field/magicseteditor-information.$(OBJEXT) \ ./src/data/field/magicseteditor-choice.$(OBJEXT) \ + ./src/data/field/magicseteditor-color.$(OBJEXT) \ ./src/data/field/magicseteditor-image.$(OBJEXT) \ - ./src/data/magicseteditor-locale.$(OBJEXT) \ + ./src/data/field/magicseteditor-information.$(OBJEXT) \ + ./src/data/field/magicseteditor-multiple_choice.$(OBJEXT) \ + ./src/data/field/magicseteditor-package_choice.$(OBJEXT) \ + ./src/data/field/magicseteditor-symbol.$(OBJEXT) \ + ./src/data/field/magicseteditor-text.$(OBJEXT) \ + ./src/data/format/magicseteditor-apprentice.$(OBJEXT) \ + ./src/data/format/magicseteditor-clipboard.$(OBJEXT) \ + ./src/data/format/magicseteditor-formats.$(OBJEXT) \ + ./src/data/format/magicseteditor-html.$(OBJEXT) \ + ./src/data/format/magicseteditor-image.$(OBJEXT) \ + ./src/data/format/magicseteditor-image_to_symbol.$(OBJEXT) \ + ./src/data/format/magicseteditor-mse1.$(OBJEXT) \ + ./src/data/format/magicseteditor-mse2.$(OBJEXT) \ + ./src/data/format/magicseteditor-mtg_editor.$(OBJEXT) \ + ./src/data/format/magicseteditor-mws.$(OBJEXT) \ ./src/data/magicseteditor-add_cards_script.$(OBJEXT) \ ./src/data/magicseteditor-card.$(OBJEXT) \ ./src/data/magicseteditor-export_template.$(OBJEXT) \ - ./src/data/magicseteditor-symbol_font.$(OBJEXT) \ - ./src/data/format/magicseteditor-mtg_editor.$(OBJEXT) \ - ./src/data/format/magicseteditor-mse1.$(OBJEXT) \ - ./src/data/format/magicseteditor-clipboard.$(OBJEXT) \ - ./src/data/format/magicseteditor-image_to_symbol.$(OBJEXT) \ - ./src/data/format/magicseteditor-html.$(OBJEXT) \ - ./src/data/format/magicseteditor-apprentice.$(OBJEXT) \ - ./src/data/format/magicseteditor-formats.$(OBJEXT) \ - ./src/data/format/magicseteditor-image.$(OBJEXT) \ - ./src/data/format/magicseteditor-mws.$(OBJEXT) \ - ./src/data/format/magicseteditor-mse2.$(OBJEXT) \ - ./src/data/magicseteditor-set.$(OBJEXT) \ - ./src/data/magicseteditor-installer.$(OBJEXT) \ + ./src/data/magicseteditor-field.$(OBJEXT) \ ./src/data/magicseteditor-font.$(OBJEXT) \ + ./src/data/magicseteditor-game.$(OBJEXT) \ + ./src/data/magicseteditor-installer.$(OBJEXT) \ + ./src/data/magicseteditor-keyword.$(OBJEXT) \ + ./src/data/magicseteditor-locale.$(OBJEXT) \ + ./src/data/magicseteditor-pack.$(OBJEXT) \ + ./src/data/magicseteditor-set.$(OBJEXT) \ + ./src/data/magicseteditor-settings.$(OBJEXT) \ ./src/data/magicseteditor-statistics.$(OBJEXT) \ - ./src/data/action/magicseteditor-keyword.$(OBJEXT) \ - ./src/data/action/magicseteditor-symbol.$(OBJEXT) \ - ./src/data/action/magicseteditor-value.$(OBJEXT) \ - ./src/data/action/magicseteditor-symbol_part.$(OBJEXT) \ - ./src/data/action/magicseteditor-set.$(OBJEXT) \ ./src/data/magicseteditor-stylesheet.$(OBJEXT) \ + ./src/data/magicseteditor-symbol.$(OBJEXT) \ + ./src/data/magicseteditor-symbol_font.$(OBJEXT) \ ./src/data/magicseteditor-word_list.$(OBJEXT) \ - ./src/data/magicseteditor-settings.$(OBJEXT) + ./src/gfx/magicseteditor-blend_image.$(OBJEXT) \ + ./src/gfx/magicseteditor-color.$(OBJEXT) \ + ./src/gfx/magicseteditor-combine_image.$(OBJEXT) \ + ./src/gfx/magicseteditor-generated_image.$(OBJEXT) \ + ./src/gfx/magicseteditor-image_effects.$(OBJEXT) \ + ./src/gfx/magicseteditor-mask_image.$(OBJEXT) \ + ./src/gfx/magicseteditor-polynomial.$(OBJEXT) \ + ./src/gfx/magicseteditor-resample_image.$(OBJEXT) \ + ./src/gfx/magicseteditor-resample_text.$(OBJEXT) \ + ./src/gfx/magicseteditor-rotate_image.$(OBJEXT) \ + ./src/gfx/magicseteditor-bezier.$(OBJEXT) \ + ./src/gui/control/magicseteditor-card_viewer.$(OBJEXT) \ + ./src/gui/control/magicseteditor-native_look_editor.$(OBJEXT) \ + ./src/gui/control/magicseteditor-card_list_column_select.$(OBJEXT) \ + ./src/gui/control/magicseteditor-filtered_card_list.$(OBJEXT) \ + ./src/gui/control/magicseteditor-item_list.$(OBJEXT) \ + ./src/gui/control/magicseteditor-package_list.$(OBJEXT) \ + ./src/gui/control/magicseteditor-text_ctrl.$(OBJEXT) \ + ./src/gui/control/magicseteditor-tree_list.$(OBJEXT) \ + ./src/gui/control/magicseteditor-card_editor.$(OBJEXT) \ + ./src/gui/control/magicseteditor-card_list.$(OBJEXT) \ + ./src/gui/control/magicseteditor-filter_ctrl.$(OBJEXT) \ + ./src/gui/control/magicseteditor-gallery_list.$(OBJEXT) \ + ./src/gui/control/magicseteditor-graph.$(OBJEXT) \ + ./src/gui/control/magicseteditor-image_card_list.$(OBJEXT) \ + ./src/gui/control/magicseteditor-keyword_list.$(OBJEXT) \ + ./src/gui/control/magicseteditor-select_card_list.$(OBJEXT) \ + ./src/gui/magicseteditor-package_update_list.$(OBJEXT) \ + ./src/gui/magicseteditor-packages_window.$(OBJEXT) \ + ./src/gui/magicseteditor-preferences_window.$(OBJEXT) \ + ./src/gui/set/magicseteditor-cards_panel.$(OBJEXT) \ + ./src/gui/set/magicseteditor-console_panel.$(OBJEXT) \ + ./src/gui/set/magicseteditor-keywords_panel.$(OBJEXT) \ + ./src/gui/set/magicseteditor-panel.$(OBJEXT) \ + ./src/gui/set/magicseteditor-random_pack_panel.$(OBJEXT) \ + ./src/gui/set/magicseteditor-set_info_panel.$(OBJEXT) \ + ./src/gui/set/magicseteditor-stats_panel.$(OBJEXT) \ + ./src/gui/set/magicseteditor-style_panel.$(OBJEXT) \ + ./src/gui/set/magicseteditor-window.$(OBJEXT) \ + ./src/gui/symbol/magicseteditor-basic_shape_editor.$(OBJEXT) \ + ./src/gui/symbol/magicseteditor-control.$(OBJEXT) \ + ./src/gui/symbol/magicseteditor-editor.$(OBJEXT) \ + ./src/gui/symbol/magicseteditor-part_list.$(OBJEXT) \ + ./src/gui/symbol/magicseteditor-point_editor.$(OBJEXT) \ + ./src/gui/symbol/magicseteditor-select_editor.$(OBJEXT) \ + ./src/gui/symbol/magicseteditor-selection.$(OBJEXT) \ + ./src/gui/symbol/magicseteditor-symmetry_editor.$(OBJEXT) \ + ./src/gui/symbol/magicseteditor-window.$(OBJEXT) \ + ./src/gui/value/magicseteditor-choice.$(OBJEXT) \ + ./src/gui/value/magicseteditor-color.$(OBJEXT) \ + ./src/gui/value/magicseteditor-editor.$(OBJEXT) \ + ./src/gui/value/magicseteditor-image.$(OBJEXT) \ + ./src/gui/value/magicseteditor-information.$(OBJEXT) \ + ./src/gui/value/magicseteditor-multiple_choice.$(OBJEXT) \ + ./src/gui/value/magicseteditor-package_choice.$(OBJEXT) \ + ./src/gui/value/magicseteditor-symbol.$(OBJEXT) \ + ./src/gui/value/magicseteditor-text.$(OBJEXT) \ + ./src/gui/magicseteditor-print_window.$(OBJEXT) \ + ./src/gui/magicseteditor-profiler_window.$(OBJEXT) \ + ./src/gui/magicseteditor-thumbnail_thread.$(OBJEXT) \ + ./src/gui/magicseteditor-update_checker.$(OBJEXT) \ + ./src/gui/magicseteditor-util.$(OBJEXT) \ + ./src/gui/magicseteditor-welcome_window.$(OBJEXT) \ + ./src/gui/magicseteditor-about_window.$(OBJEXT) \ + ./src/gui/magicseteditor-auto_replace_window.$(OBJEXT) \ + ./src/gui/magicseteditor-card_select_window.$(OBJEXT) \ + ./src/gui/magicseteditor-drop_down_list.$(OBJEXT) \ + ./src/gui/magicseteditor-html_export_window.$(OBJEXT) \ + ./src/gui/magicseteditor-icon_menu.$(OBJEXT) \ + ./src/gui/magicseteditor-image_slice_window.$(OBJEXT) \ + ./src/gui/magicseteditor-images_export_window.$(OBJEXT) \ + ./src/gui/magicseteditor-new_window.$(OBJEXT) \ + ./src/render/card/magicseteditor-viewer.$(OBJEXT) \ + ./src/render/symbol/magicseteditor-filter.$(OBJEXT) \ + ./src/render/symbol/magicseteditor-viewer.$(OBJEXT) \ + ./src/render/text/magicseteditor-compound.$(OBJEXT) \ + ./src/render/text/magicseteditor-element.$(OBJEXT) \ + ./src/render/text/magicseteditor-font.$(OBJEXT) \ + ./src/render/text/magicseteditor-symbol.$(OBJEXT) \ + ./src/render/text/magicseteditor-viewer.$(OBJEXT) \ + ./src/render/value/magicseteditor-choice.$(OBJEXT) \ + ./src/render/value/magicseteditor-color.$(OBJEXT) \ + ./src/render/value/magicseteditor-image.$(OBJEXT) \ + ./src/render/value/magicseteditor-information.$(OBJEXT) \ + ./src/render/value/magicseteditor-multiple_choice.$(OBJEXT) \ + ./src/render/value/magicseteditor-package_choice.$(OBJEXT) \ + ./src/render/value/magicseteditor-symbol.$(OBJEXT) \ + ./src/render/value/magicseteditor-text.$(OBJEXT) \ + ./src/render/value/magicseteditor-viewer.$(OBJEXT) \ + ./src/script/functions/magicseteditor-basic.$(OBJEXT) \ + ./src/script/functions/magicseteditor-construction.$(OBJEXT) \ + ./src/script/functions/magicseteditor-editor.$(OBJEXT) \ + ./src/script/functions/magicseteditor-english.$(OBJEXT) \ + ./src/script/functions/magicseteditor-export.$(OBJEXT) \ + ./src/script/functions/magicseteditor-image.$(OBJEXT) \ + ./src/script/functions/magicseteditor-regex.$(OBJEXT) \ + ./src/script/functions/magicseteditor-spelling.$(OBJEXT) \ + ./src/script/magicseteditor-context.$(OBJEXT) \ + ./src/script/magicseteditor-dependency.$(OBJEXT) \ + ./src/script/magicseteditor-image.$(OBJEXT) \ + ./src/script/magicseteditor-parser.$(OBJEXT) \ + ./src/script/magicseteditor-profiler.$(OBJEXT) \ + ./src/script/magicseteditor-script.$(OBJEXT) \ + ./src/script/magicseteditor-script_manager.$(OBJEXT) \ + ./src/script/magicseteditor-scriptable.$(OBJEXT) \ + ./src/script/magicseteditor-value.$(OBJEXT) \ + ./src/util/io/magicseteditor-get_member.$(OBJEXT) \ + ./src/util/io/magicseteditor-package.$(OBJEXT) \ + ./src/util/io/magicseteditor-package_manager.$(OBJEXT) \ + ./src/util/io/magicseteditor-reader.$(OBJEXT) \ + ./src/util/io/magicseteditor-writer.$(OBJEXT) \ + ./src/util/vcs/magicseteditor-subversion.$(OBJEXT) \ + ./src/util/magicseteditor-spec_sort.$(OBJEXT) \ + ./src/util/magicseteditor-spell_checker.$(OBJEXT) \ + ./src/util/magicseteditor-string.$(OBJEXT) \ + ./src/util/magicseteditor-tagged_string.$(OBJEXT) \ + ./src/util/magicseteditor-vcs.$(OBJEXT) \ + ./src/util/magicseteditor-version.$(OBJEXT) \ + ./src/util/magicseteditor-action_stack.$(OBJEXT) \ + ./src/util/magicseteditor-age.$(OBJEXT) \ + ./src/util/magicseteditor-alignment.$(OBJEXT) \ + ./src/util/magicseteditor-error.$(OBJEXT) \ + ./src/util/magicseteditor-file_utils.$(OBJEXT) \ + ./src/util/magicseteditor-regex.$(OBJEXT) \ + ./src/util/magicseteditor-rotation.$(OBJEXT) \ + ./src/magicseteditor-code_template.$(OBJEXT) \ + ./src/magicseteditor-main.$(OBJEXT) magicseteditor_OBJECTS = $(am_magicseteditor_OBJECTS) am__DEPENDENCIES_1 = magicseteditor_DEPENDENCIES = $(am__DEPENDENCIES_1) @@ -592,113 +595,115 @@ top_srcdir = @top_srcdir@ # This flag allows us to use subdirectories: AUTOMAKE_OPTIONS = subdir-objects AM_CXXFLAGS = @WX_CXXFLAGS@ $(BOOST_CXXFLAGS) -I. -Wall -AM_LDFLAGS = @WX_LIBS@ $(BOOST_LDFLAGS) -magicseteditor_LDADD = $(BOOST_REGEX_LIB) +AM_LDFLAGS = $(BOOST_LDFLAGS) +magicseteditor_LDADD = @WX_LIBS@ $(BOOST_REGEX_LIB) magicseteditor_CXXFLAGS = $(AM_CXXFLAGS) $(am__append_2) # The script used to generate is MakeAM.sh -magicseteditor_SOURCES = $(am__append_1) ./src/main.cpp \ - ./src/cli/cli_main.cpp ./src/cli/win32_cli_wrapper.cpp \ - ./src/cli/text_io_handler.cpp ./src/gfx/rotate_image.cpp \ - ./src/gfx/generated_image.cpp ./src/gfx/color.cpp \ - ./src/gfx/polynomial.cpp ./src/gfx/combine_image.cpp \ - ./src/gfx/bezier.cpp ./src/gfx/resample_text.cpp \ - ./src/gfx/resample_image.cpp ./src/gfx/image_effects.cpp \ - ./src/gfx/mask_image.cpp ./src/gfx/blend_image.cpp \ - ./src/script/value.cpp ./src/script/script_manager.cpp \ - ./src/script/functions/basic.cpp \ - ./src/script/functions/regex.cpp \ - ./src/script/functions/editor.cpp \ - ./src/script/functions/construction.cpp \ - ./src/script/functions/spelling.cpp \ - ./src/script/functions/image.cpp \ - ./src/script/functions/english.cpp \ - ./src/script/functions/export.cpp ./src/script/dependency.cpp \ - ./src/script/parser.cpp ./src/script/context.cpp \ - ./src/script/image.cpp ./src/script/profiler.cpp \ - ./src/script/scriptable.cpp ./src/script/script.cpp \ - ./src/gui/preferences_window.cpp ./src/gui/profiler_window.cpp \ - ./src/gui/symbol/basic_shape_editor.cpp \ - ./src/gui/symbol/point_editor.cpp \ - ./src/gui/symbol/part_list.cpp \ - ./src/gui/symbol/symmetry_editor.cpp \ - ./src/gui/symbol/selection.cpp ./src/gui/symbol/window.cpp \ - ./src/gui/symbol/editor.cpp ./src/gui/symbol/select_editor.cpp \ - ./src/gui/symbol/control.cpp ./src/gui/card_select_window.cpp \ - ./src/gui/control/card_list.cpp \ - ./src/gui/control/gallery_list.cpp \ - ./src/gui/control/keyword_list.cpp ./src/gui/control/graph.cpp \ - ./src/gui/control/image_card_list.cpp \ - ./src/gui/control/card_viewer.cpp \ - ./src/gui/control/native_look_editor.cpp \ - ./src/gui/control/select_card_list.cpp \ - ./src/gui/control/item_list.cpp \ - ./src/gui/control/text_ctrl.cpp \ - ./src/gui/control/card_editor.cpp \ - ./src/gui/control/filtered_card_list.cpp \ - ./src/gui/control/filter_ctrl.cpp \ - ./src/gui/control/package_list.cpp \ - ./src/gui/control/tree_list.cpp \ - ./src/gui/control/card_list_column_select.cpp \ - ./src/gui/package_update_list.cpp ./src/gui/drop_down_list.cpp \ - ./src/gui/value/symbol.cpp ./src/gui/value/package_choice.cpp \ - ./src/gui/value/color.cpp ./src/gui/value/text.cpp \ - ./src/gui/value/multiple_choice.cpp ./src/gui/value/editor.cpp \ - ./src/gui/value/information.cpp ./src/gui/value/choice.cpp \ - ./src/gui/value/image.cpp ./src/gui/packages_window.cpp \ - ./src/gui/set/keywords_panel.cpp ./src/gui/set/panel.cpp \ - ./src/gui/set/random_pack_panel.cpp ./src/gui/set/window.cpp \ - ./src/gui/set/stats_panel.cpp ./src/gui/set/cards_panel.cpp \ - ./src/gui/set/style_panel.cpp ./src/gui/set/console_panel.cpp \ - ./src/gui/set/set_info_panel.cpp \ - ./src/gui/html_export_window.cpp ./src/gui/new_window.cpp \ - ./src/gui/thumbnail_thread.cpp ./src/gui/util.cpp \ - ./src/gui/welcome_window.cpp ./src/gui/auto_replace_window.cpp \ - ./src/gui/image_slice_window.cpp ./src/gui/about_window.cpp \ - ./src/gui/print_window.cpp ./src/gui/images_export_window.cpp \ - ./src/gui/update_checker.cpp ./src/gui/icon_menu.cpp \ - ./src/code_template.cpp ./src/util/error.cpp \ - ./src/util/file_utils.cpp ./src/util/alignment.cpp \ - ./src/util/string.cpp ./src/util/tagged_string.cpp \ - ./src/util/age.cpp ./src/util/action_stack.cpp \ - ./src/util/regex.cpp ./src/util/vcs.cpp \ - ./src/util/rotation.cpp ./src/util/spec_sort.cpp \ - ./src/util/spell_checker.cpp ./src/util/version.cpp \ - ./src/util/io/get_member.cpp ./src/util/io/package_manager.cpp \ - ./src/util/io/writer.cpp ./src/util/io/reader.cpp \ - ./src/util/io/package.cpp ./src/util/vcs/subversion.cpp \ - ./src/render/symbol/viewer.cpp ./src/render/symbol/filter.cpp \ - ./src/render/value/symbol.cpp \ - ./src/render/value/package_choice.cpp \ - ./src/render/value/color.cpp ./src/render/value/viewer.cpp \ - ./src/render/value/text.cpp \ - ./src/render/value/multiple_choice.cpp \ - ./src/render/value/information.cpp \ - ./src/render/value/choice.cpp ./src/render/value/image.cpp \ - ./src/render/text/symbol.cpp ./src/render/text/viewer.cpp \ - ./src/render/text/element.cpp ./src/render/text/font.cpp \ - ./src/render/text/compound.cpp ./src/render/card/viewer.cpp \ - ./src/data/field.cpp ./src/data/keyword.cpp \ - ./src/data/symbol.cpp ./src/data/game.cpp ./src/data/pack.cpp \ - ./src/data/field/symbol.cpp \ - ./src/data/field/package_choice.cpp ./src/data/field/color.cpp \ - ./src/data/field/text.cpp ./src/data/field/multiple_choice.cpp \ - ./src/data/field/boolean.cpp ./src/data/field/information.cpp \ - ./src/data/field/choice.cpp ./src/data/field/image.cpp \ - ./src/data/locale.cpp ./src/data/add_cards_script.cpp \ - ./src/data/card.cpp ./src/data/export_template.cpp \ - ./src/data/symbol_font.cpp ./src/data/format/mtg_editor.cpp \ - ./src/data/format/mse1.cpp ./src/data/format/clipboard.cpp \ +magicseteditor_SOURCES = $(am__append_1) ./src/cli/cli_main.cpp \ + ./src/cli/text_io_handler.cpp ./src/cli/win32_cli_wrapper.cpp \ + ./src/data/action/keyword.cpp ./src/data/action/set.cpp \ + ./src/data/action/symbol.cpp ./src/data/action/symbol_part.cpp \ + ./src/data/action/value.cpp ./src/data/field/boolean.cpp \ + ./src/data/field/choice.cpp ./src/data/field/color.cpp \ + ./src/data/field/image.cpp ./src/data/field/information.cpp \ + ./src/data/field/multiple_choice.cpp \ + ./src/data/field/package_choice.cpp \ + ./src/data/field/symbol.cpp ./src/data/field/text.cpp \ + ./src/data/format/apprentice.cpp \ + ./src/data/format/clipboard.cpp ./src/data/format/formats.cpp \ + ./src/data/format/html.cpp ./src/data/format/image.cpp \ ./src/data/format/image_to_symbol.cpp \ - ./src/data/format/html.cpp ./src/data/format/apprentice.cpp \ - ./src/data/format/formats.cpp ./src/data/format/image.cpp \ - ./src/data/format/mws.cpp ./src/data/format/mse2.cpp \ - ./src/data/set.cpp ./src/data/installer.cpp \ - ./src/data/font.cpp ./src/data/statistics.cpp \ - ./src/data/action/keyword.cpp ./src/data/action/symbol.cpp \ - ./src/data/action/value.cpp ./src/data/action/symbol_part.cpp \ - ./src/data/action/set.cpp ./src/data/stylesheet.cpp \ - ./src/data/word_list.cpp ./src/data/settings.cpp + ./src/data/format/mse1.cpp ./src/data/format/mse2.cpp \ + ./src/data/format/mtg_editor.cpp ./src/data/format/mws.cpp \ + ./src/data/add_cards_script.cpp ./src/data/card.cpp \ + ./src/data/export_template.cpp ./src/data/field.cpp \ + ./src/data/font.cpp ./src/data/game.cpp \ + ./src/data/installer.cpp ./src/data/keyword.cpp \ + ./src/data/locale.cpp ./src/data/pack.cpp ./src/data/set.cpp \ + ./src/data/settings.cpp ./src/data/statistics.cpp \ + ./src/data/stylesheet.cpp ./src/data/symbol.cpp \ + ./src/data/symbol_font.cpp ./src/data/word_list.cpp \ + ./src/gfx/blend_image.cpp ./src/gfx/color.cpp \ + ./src/gfx/combine_image.cpp ./src/gfx/generated_image.cpp \ + ./src/gfx/image_effects.cpp ./src/gfx/mask_image.cpp \ + ./src/gfx/polynomial.cpp ./src/gfx/resample_image.cpp \ + ./src/gfx/resample_text.cpp ./src/gfx/rotate_image.cpp \ + ./src/gfx/bezier.cpp ./src/gui/control/card_viewer.cpp \ + ./src/gui/control/native_look_editor.cpp \ + ./src/gui/control/card_list_column_select.cpp \ + ./src/gui/control/filtered_card_list.cpp \ + ./src/gui/control/item_list.cpp \ + ./src/gui/control/package_list.cpp \ + ./src/gui/control/text_ctrl.cpp \ + ./src/gui/control/tree_list.cpp \ + ./src/gui/control/card_editor.cpp \ + ./src/gui/control/card_list.cpp \ + ./src/gui/control/filter_ctrl.cpp \ + ./src/gui/control/gallery_list.cpp ./src/gui/control/graph.cpp \ + ./src/gui/control/image_card_list.cpp \ + ./src/gui/control/keyword_list.cpp \ + ./src/gui/control/select_card_list.cpp \ + ./src/gui/package_update_list.cpp \ + ./src/gui/packages_window.cpp ./src/gui/preferences_window.cpp \ + ./src/gui/set/cards_panel.cpp ./src/gui/set/console_panel.cpp \ + ./src/gui/set/keywords_panel.cpp ./src/gui/set/panel.cpp \ + ./src/gui/set/random_pack_panel.cpp \ + ./src/gui/set/set_info_panel.cpp ./src/gui/set/stats_panel.cpp \ + ./src/gui/set/style_panel.cpp ./src/gui/set/window.cpp \ + ./src/gui/symbol/basic_shape_editor.cpp \ + ./src/gui/symbol/control.cpp ./src/gui/symbol/editor.cpp \ + ./src/gui/symbol/part_list.cpp \ + ./src/gui/symbol/point_editor.cpp \ + ./src/gui/symbol/select_editor.cpp \ + ./src/gui/symbol/selection.cpp \ + ./src/gui/symbol/symmetry_editor.cpp \ + ./src/gui/symbol/window.cpp ./src/gui/value/choice.cpp \ + ./src/gui/value/color.cpp ./src/gui/value/editor.cpp \ + ./src/gui/value/image.cpp ./src/gui/value/information.cpp \ + ./src/gui/value/multiple_choice.cpp \ + ./src/gui/value/package_choice.cpp ./src/gui/value/symbol.cpp \ + ./src/gui/value/text.cpp ./src/gui/print_window.cpp \ + ./src/gui/profiler_window.cpp ./src/gui/thumbnail_thread.cpp \ + ./src/gui/update_checker.cpp ./src/gui/util.cpp \ + ./src/gui/welcome_window.cpp ./src/gui/about_window.cpp \ + ./src/gui/auto_replace_window.cpp \ + ./src/gui/card_select_window.cpp ./src/gui/drop_down_list.cpp \ + ./src/gui/html_export_window.cpp ./src/gui/icon_menu.cpp \ + ./src/gui/image_slice_window.cpp \ + ./src/gui/images_export_window.cpp ./src/gui/new_window.cpp \ + ./src/render/card/viewer.cpp ./src/render/symbol/filter.cpp \ + ./src/render/symbol/viewer.cpp ./src/render/text/compound.cpp \ + ./src/render/text/element.cpp ./src/render/text/font.cpp \ + ./src/render/text/symbol.cpp ./src/render/text/viewer.cpp \ + ./src/render/value/choice.cpp ./src/render/value/color.cpp \ + ./src/render/value/image.cpp \ + ./src/render/value/information.cpp \ + ./src/render/value/multiple_choice.cpp \ + ./src/render/value/package_choice.cpp \ + ./src/render/value/symbol.cpp ./src/render/value/text.cpp \ + ./src/render/value/viewer.cpp ./src/script/functions/basic.cpp \ + ./src/script/functions/construction.cpp \ + ./src/script/functions/editor.cpp \ + ./src/script/functions/english.cpp \ + ./src/script/functions/export.cpp \ + ./src/script/functions/image.cpp \ + ./src/script/functions/regex.cpp \ + ./src/script/functions/spelling.cpp ./src/script/context.cpp \ + ./src/script/dependency.cpp ./src/script/image.cpp \ + ./src/script/parser.cpp ./src/script/profiler.cpp \ + ./src/script/script.cpp ./src/script/script_manager.cpp \ + ./src/script/scriptable.cpp ./src/script/value.cpp \ + ./src/util/io/get_member.cpp ./src/util/io/package.cpp \ + ./src/util/io/package_manager.cpp ./src/util/io/reader.cpp \ + ./src/util/io/writer.cpp ./src/util/vcs/subversion.cpp \ + ./src/util/spec_sort.cpp ./src/util/spell_checker.cpp \ + ./src/util/string.cpp ./src/util/tagged_string.cpp \ + ./src/util/vcs.cpp ./src/util/version.cpp \ + ./src/util/action_stack.cpp ./src/util/age.cpp \ + ./src/util/alignment.cpp ./src/util/error.cpp \ + ./src/util/file_utils.cpp ./src/util/regex.cpp \ + ./src/util/rotation.cpp ./src/code_template.cpp ./src/main.cpp all: all-am .SUFFIXES: @@ -801,14 +806,6 @@ src/util/$(DEPDIR)/$(am__dirstamp): @: > src/util/$(DEPDIR)/$(am__dirstamp) ./src/util/prec.$(OBJEXT): src/util/$(am__dirstamp) \ src/util/$(DEPDIR)/$(am__dirstamp) -src/$(am__dirstamp): - @$(MKDIR_P) ./src - @: > src/$(am__dirstamp) -src/$(DEPDIR)/$(am__dirstamp): - @$(MKDIR_P) ./src/$(DEPDIR) - @: > src/$(DEPDIR)/$(am__dirstamp) -./src/magicseteditor-main.$(OBJEXT): src/$(am__dirstamp) \ - src/$(DEPDIR)/$(am__dirstamp) src/cli/$(am__dirstamp): @$(MKDIR_P) ./src/cli @: > src/cli/$(am__dirstamp) @@ -817,159 +814,208 @@ src/cli/$(DEPDIR)/$(am__dirstamp): @: > src/cli/$(DEPDIR)/$(am__dirstamp) ./src/cli/magicseteditor-cli_main.$(OBJEXT): src/cli/$(am__dirstamp) \ src/cli/$(DEPDIR)/$(am__dirstamp) -./src/cli/magicseteditor-win32_cli_wrapper.$(OBJEXT): \ - src/cli/$(am__dirstamp) src/cli/$(DEPDIR)/$(am__dirstamp) ./src/cli/magicseteditor-text_io_handler.$(OBJEXT): \ src/cli/$(am__dirstamp) src/cli/$(DEPDIR)/$(am__dirstamp) +./src/cli/magicseteditor-win32_cli_wrapper.$(OBJEXT): \ + src/cli/$(am__dirstamp) src/cli/$(DEPDIR)/$(am__dirstamp) +src/data/action/$(am__dirstamp): + @$(MKDIR_P) ./src/data/action + @: > src/data/action/$(am__dirstamp) +src/data/action/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) ./src/data/action/$(DEPDIR) + @: > src/data/action/$(DEPDIR)/$(am__dirstamp) +./src/data/action/magicseteditor-keyword.$(OBJEXT): \ + src/data/action/$(am__dirstamp) \ + src/data/action/$(DEPDIR)/$(am__dirstamp) +./src/data/action/magicseteditor-set.$(OBJEXT): \ + src/data/action/$(am__dirstamp) \ + src/data/action/$(DEPDIR)/$(am__dirstamp) +./src/data/action/magicseteditor-symbol.$(OBJEXT): \ + src/data/action/$(am__dirstamp) \ + src/data/action/$(DEPDIR)/$(am__dirstamp) +./src/data/action/magicseteditor-symbol_part.$(OBJEXT): \ + src/data/action/$(am__dirstamp) \ + src/data/action/$(DEPDIR)/$(am__dirstamp) +./src/data/action/magicseteditor-value.$(OBJEXT): \ + src/data/action/$(am__dirstamp) \ + src/data/action/$(DEPDIR)/$(am__dirstamp) +src/data/field/$(am__dirstamp): + @$(MKDIR_P) ./src/data/field + @: > src/data/field/$(am__dirstamp) +src/data/field/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) ./src/data/field/$(DEPDIR) + @: > src/data/field/$(DEPDIR)/$(am__dirstamp) +./src/data/field/magicseteditor-boolean.$(OBJEXT): \ + src/data/field/$(am__dirstamp) \ + src/data/field/$(DEPDIR)/$(am__dirstamp) +./src/data/field/magicseteditor-choice.$(OBJEXT): \ + src/data/field/$(am__dirstamp) \ + src/data/field/$(DEPDIR)/$(am__dirstamp) +./src/data/field/magicseteditor-color.$(OBJEXT): \ + src/data/field/$(am__dirstamp) \ + src/data/field/$(DEPDIR)/$(am__dirstamp) +./src/data/field/magicseteditor-image.$(OBJEXT): \ + src/data/field/$(am__dirstamp) \ + src/data/field/$(DEPDIR)/$(am__dirstamp) +./src/data/field/magicseteditor-information.$(OBJEXT): \ + src/data/field/$(am__dirstamp) \ + src/data/field/$(DEPDIR)/$(am__dirstamp) +./src/data/field/magicseteditor-multiple_choice.$(OBJEXT): \ + src/data/field/$(am__dirstamp) \ + src/data/field/$(DEPDIR)/$(am__dirstamp) +./src/data/field/magicseteditor-package_choice.$(OBJEXT): \ + src/data/field/$(am__dirstamp) \ + src/data/field/$(DEPDIR)/$(am__dirstamp) +./src/data/field/magicseteditor-symbol.$(OBJEXT): \ + src/data/field/$(am__dirstamp) \ + src/data/field/$(DEPDIR)/$(am__dirstamp) +./src/data/field/magicseteditor-text.$(OBJEXT): \ + src/data/field/$(am__dirstamp) \ + src/data/field/$(DEPDIR)/$(am__dirstamp) +src/data/format/$(am__dirstamp): + @$(MKDIR_P) ./src/data/format + @: > src/data/format/$(am__dirstamp) +src/data/format/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) ./src/data/format/$(DEPDIR) + @: > src/data/format/$(DEPDIR)/$(am__dirstamp) +./src/data/format/magicseteditor-apprentice.$(OBJEXT): \ + src/data/format/$(am__dirstamp) \ + src/data/format/$(DEPDIR)/$(am__dirstamp) +./src/data/format/magicseteditor-clipboard.$(OBJEXT): \ + src/data/format/$(am__dirstamp) \ + src/data/format/$(DEPDIR)/$(am__dirstamp) +./src/data/format/magicseteditor-formats.$(OBJEXT): \ + src/data/format/$(am__dirstamp) \ + src/data/format/$(DEPDIR)/$(am__dirstamp) +./src/data/format/magicseteditor-html.$(OBJEXT): \ + src/data/format/$(am__dirstamp) \ + src/data/format/$(DEPDIR)/$(am__dirstamp) +./src/data/format/magicseteditor-image.$(OBJEXT): \ + src/data/format/$(am__dirstamp) \ + src/data/format/$(DEPDIR)/$(am__dirstamp) +./src/data/format/magicseteditor-image_to_symbol.$(OBJEXT): \ + src/data/format/$(am__dirstamp) \ + src/data/format/$(DEPDIR)/$(am__dirstamp) +./src/data/format/magicseteditor-mse1.$(OBJEXT): \ + src/data/format/$(am__dirstamp) \ + src/data/format/$(DEPDIR)/$(am__dirstamp) +./src/data/format/magicseteditor-mse2.$(OBJEXT): \ + src/data/format/$(am__dirstamp) \ + src/data/format/$(DEPDIR)/$(am__dirstamp) +./src/data/format/magicseteditor-mtg_editor.$(OBJEXT): \ + src/data/format/$(am__dirstamp) \ + src/data/format/$(DEPDIR)/$(am__dirstamp) +./src/data/format/magicseteditor-mws.$(OBJEXT): \ + src/data/format/$(am__dirstamp) \ + src/data/format/$(DEPDIR)/$(am__dirstamp) +src/data/$(am__dirstamp): + @$(MKDIR_P) ./src/data + @: > src/data/$(am__dirstamp) +src/data/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) ./src/data/$(DEPDIR) + @: > src/data/$(DEPDIR)/$(am__dirstamp) +./src/data/magicseteditor-add_cards_script.$(OBJEXT): \ + src/data/$(am__dirstamp) src/data/$(DEPDIR)/$(am__dirstamp) +./src/data/magicseteditor-card.$(OBJEXT): src/data/$(am__dirstamp) \ + src/data/$(DEPDIR)/$(am__dirstamp) +./src/data/magicseteditor-export_template.$(OBJEXT): \ + src/data/$(am__dirstamp) src/data/$(DEPDIR)/$(am__dirstamp) +./src/data/magicseteditor-field.$(OBJEXT): src/data/$(am__dirstamp) \ + src/data/$(DEPDIR)/$(am__dirstamp) +./src/data/magicseteditor-font.$(OBJEXT): src/data/$(am__dirstamp) \ + src/data/$(DEPDIR)/$(am__dirstamp) +./src/data/magicseteditor-game.$(OBJEXT): src/data/$(am__dirstamp) \ + src/data/$(DEPDIR)/$(am__dirstamp) +./src/data/magicseteditor-installer.$(OBJEXT): \ + src/data/$(am__dirstamp) src/data/$(DEPDIR)/$(am__dirstamp) +./src/data/magicseteditor-keyword.$(OBJEXT): src/data/$(am__dirstamp) \ + src/data/$(DEPDIR)/$(am__dirstamp) +./src/data/magicseteditor-locale.$(OBJEXT): src/data/$(am__dirstamp) \ + src/data/$(DEPDIR)/$(am__dirstamp) +./src/data/magicseteditor-pack.$(OBJEXT): src/data/$(am__dirstamp) \ + src/data/$(DEPDIR)/$(am__dirstamp) +./src/data/magicseteditor-set.$(OBJEXT): src/data/$(am__dirstamp) \ + src/data/$(DEPDIR)/$(am__dirstamp) +./src/data/magicseteditor-settings.$(OBJEXT): \ + src/data/$(am__dirstamp) src/data/$(DEPDIR)/$(am__dirstamp) +./src/data/magicseteditor-statistics.$(OBJEXT): \ + src/data/$(am__dirstamp) src/data/$(DEPDIR)/$(am__dirstamp) +./src/data/magicseteditor-stylesheet.$(OBJEXT): \ + src/data/$(am__dirstamp) src/data/$(DEPDIR)/$(am__dirstamp) +./src/data/magicseteditor-symbol.$(OBJEXT): src/data/$(am__dirstamp) \ + src/data/$(DEPDIR)/$(am__dirstamp) +./src/data/magicseteditor-symbol_font.$(OBJEXT): \ + src/data/$(am__dirstamp) src/data/$(DEPDIR)/$(am__dirstamp) +./src/data/magicseteditor-word_list.$(OBJEXT): \ + src/data/$(am__dirstamp) src/data/$(DEPDIR)/$(am__dirstamp) src/gfx/$(am__dirstamp): @$(MKDIR_P) ./src/gfx @: > src/gfx/$(am__dirstamp) src/gfx/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) ./src/gfx/$(DEPDIR) @: > src/gfx/$(DEPDIR)/$(am__dirstamp) -./src/gfx/magicseteditor-rotate_image.$(OBJEXT): \ - src/gfx/$(am__dirstamp) src/gfx/$(DEPDIR)/$(am__dirstamp) -./src/gfx/magicseteditor-generated_image.$(OBJEXT): \ +./src/gfx/magicseteditor-blend_image.$(OBJEXT): \ src/gfx/$(am__dirstamp) src/gfx/$(DEPDIR)/$(am__dirstamp) ./src/gfx/magicseteditor-color.$(OBJEXT): src/gfx/$(am__dirstamp) \ src/gfx/$(DEPDIR)/$(am__dirstamp) -./src/gfx/magicseteditor-polynomial.$(OBJEXT): \ - src/gfx/$(am__dirstamp) src/gfx/$(DEPDIR)/$(am__dirstamp) ./src/gfx/magicseteditor-combine_image.$(OBJEXT): \ src/gfx/$(am__dirstamp) src/gfx/$(DEPDIR)/$(am__dirstamp) -./src/gfx/magicseteditor-bezier.$(OBJEXT): src/gfx/$(am__dirstamp) \ - src/gfx/$(DEPDIR)/$(am__dirstamp) -./src/gfx/magicseteditor-resample_text.$(OBJEXT): \ - src/gfx/$(am__dirstamp) src/gfx/$(DEPDIR)/$(am__dirstamp) -./src/gfx/magicseteditor-resample_image.$(OBJEXT): \ +./src/gfx/magicseteditor-generated_image.$(OBJEXT): \ src/gfx/$(am__dirstamp) src/gfx/$(DEPDIR)/$(am__dirstamp) ./src/gfx/magicseteditor-image_effects.$(OBJEXT): \ src/gfx/$(am__dirstamp) src/gfx/$(DEPDIR)/$(am__dirstamp) ./src/gfx/magicseteditor-mask_image.$(OBJEXT): \ src/gfx/$(am__dirstamp) src/gfx/$(DEPDIR)/$(am__dirstamp) -./src/gfx/magicseteditor-blend_image.$(OBJEXT): \ +./src/gfx/magicseteditor-polynomial.$(OBJEXT): \ src/gfx/$(am__dirstamp) src/gfx/$(DEPDIR)/$(am__dirstamp) -src/script/$(am__dirstamp): - @$(MKDIR_P) ./src/script - @: > src/script/$(am__dirstamp) -src/script/$(DEPDIR)/$(am__dirstamp): - @$(MKDIR_P) ./src/script/$(DEPDIR) - @: > src/script/$(DEPDIR)/$(am__dirstamp) -./src/script/magicseteditor-value.$(OBJEXT): \ - src/script/$(am__dirstamp) \ - src/script/$(DEPDIR)/$(am__dirstamp) -./src/script/magicseteditor-script_manager.$(OBJEXT): \ - src/script/$(am__dirstamp) \ - src/script/$(DEPDIR)/$(am__dirstamp) -src/script/functions/$(am__dirstamp): - @$(MKDIR_P) ./src/script/functions - @: > src/script/functions/$(am__dirstamp) -src/script/functions/$(DEPDIR)/$(am__dirstamp): - @$(MKDIR_P) ./src/script/functions/$(DEPDIR) - @: > src/script/functions/$(DEPDIR)/$(am__dirstamp) -./src/script/functions/magicseteditor-basic.$(OBJEXT): \ - src/script/functions/$(am__dirstamp) \ - src/script/functions/$(DEPDIR)/$(am__dirstamp) -./src/script/functions/magicseteditor-regex.$(OBJEXT): \ - src/script/functions/$(am__dirstamp) \ - src/script/functions/$(DEPDIR)/$(am__dirstamp) -./src/script/functions/magicseteditor-editor.$(OBJEXT): \ - src/script/functions/$(am__dirstamp) \ - src/script/functions/$(DEPDIR)/$(am__dirstamp) -./src/script/functions/magicseteditor-construction.$(OBJEXT): \ - src/script/functions/$(am__dirstamp) \ - src/script/functions/$(DEPDIR)/$(am__dirstamp) -./src/script/functions/magicseteditor-spelling.$(OBJEXT): \ - src/script/functions/$(am__dirstamp) \ - src/script/functions/$(DEPDIR)/$(am__dirstamp) -./src/script/functions/magicseteditor-image.$(OBJEXT): \ - src/script/functions/$(am__dirstamp) \ - src/script/functions/$(DEPDIR)/$(am__dirstamp) -./src/script/functions/magicseteditor-english.$(OBJEXT): \ - src/script/functions/$(am__dirstamp) \ - src/script/functions/$(DEPDIR)/$(am__dirstamp) -./src/script/functions/magicseteditor-export.$(OBJEXT): \ - src/script/functions/$(am__dirstamp) \ - src/script/functions/$(DEPDIR)/$(am__dirstamp) -./src/script/magicseteditor-dependency.$(OBJEXT): \ - src/script/$(am__dirstamp) \ - src/script/$(DEPDIR)/$(am__dirstamp) -./src/script/magicseteditor-parser.$(OBJEXT): \ - src/script/$(am__dirstamp) \ - src/script/$(DEPDIR)/$(am__dirstamp) -./src/script/magicseteditor-context.$(OBJEXT): \ - src/script/$(am__dirstamp) \ - src/script/$(DEPDIR)/$(am__dirstamp) -./src/script/magicseteditor-image.$(OBJEXT): \ - src/script/$(am__dirstamp) \ - src/script/$(DEPDIR)/$(am__dirstamp) -./src/script/magicseteditor-profiler.$(OBJEXT): \ - src/script/$(am__dirstamp) \ - src/script/$(DEPDIR)/$(am__dirstamp) -./src/script/magicseteditor-scriptable.$(OBJEXT): \ - src/script/$(am__dirstamp) \ - src/script/$(DEPDIR)/$(am__dirstamp) -./src/script/magicseteditor-script.$(OBJEXT): \ - src/script/$(am__dirstamp) \ - src/script/$(DEPDIR)/$(am__dirstamp) -src/gui/$(am__dirstamp): - @$(MKDIR_P) ./src/gui - @: > src/gui/$(am__dirstamp) -src/gui/$(DEPDIR)/$(am__dirstamp): - @$(MKDIR_P) ./src/gui/$(DEPDIR) - @: > src/gui/$(DEPDIR)/$(am__dirstamp) -./src/gui/magicseteditor-preferences_window.$(OBJEXT): \ - src/gui/$(am__dirstamp) src/gui/$(DEPDIR)/$(am__dirstamp) -./src/gui/magicseteditor-profiler_window.$(OBJEXT): \ - src/gui/$(am__dirstamp) src/gui/$(DEPDIR)/$(am__dirstamp) -src/gui/symbol/$(am__dirstamp): - @$(MKDIR_P) ./src/gui/symbol - @: > src/gui/symbol/$(am__dirstamp) -src/gui/symbol/$(DEPDIR)/$(am__dirstamp): - @$(MKDIR_P) ./src/gui/symbol/$(DEPDIR) - @: > src/gui/symbol/$(DEPDIR)/$(am__dirstamp) -./src/gui/symbol/magicseteditor-basic_shape_editor.$(OBJEXT): \ - src/gui/symbol/$(am__dirstamp) \ - src/gui/symbol/$(DEPDIR)/$(am__dirstamp) -./src/gui/symbol/magicseteditor-point_editor.$(OBJEXT): \ - src/gui/symbol/$(am__dirstamp) \ - src/gui/symbol/$(DEPDIR)/$(am__dirstamp) -./src/gui/symbol/magicseteditor-part_list.$(OBJEXT): \ - src/gui/symbol/$(am__dirstamp) \ - src/gui/symbol/$(DEPDIR)/$(am__dirstamp) -./src/gui/symbol/magicseteditor-symmetry_editor.$(OBJEXT): \ - src/gui/symbol/$(am__dirstamp) \ - src/gui/symbol/$(DEPDIR)/$(am__dirstamp) -./src/gui/symbol/magicseteditor-selection.$(OBJEXT): \ - src/gui/symbol/$(am__dirstamp) \ - src/gui/symbol/$(DEPDIR)/$(am__dirstamp) -./src/gui/symbol/magicseteditor-window.$(OBJEXT): \ - src/gui/symbol/$(am__dirstamp) \ - src/gui/symbol/$(DEPDIR)/$(am__dirstamp) -./src/gui/symbol/magicseteditor-editor.$(OBJEXT): \ - src/gui/symbol/$(am__dirstamp) \ - src/gui/symbol/$(DEPDIR)/$(am__dirstamp) -./src/gui/symbol/magicseteditor-select_editor.$(OBJEXT): \ - src/gui/symbol/$(am__dirstamp) \ - src/gui/symbol/$(DEPDIR)/$(am__dirstamp) -./src/gui/symbol/magicseteditor-control.$(OBJEXT): \ - src/gui/symbol/$(am__dirstamp) \ - src/gui/symbol/$(DEPDIR)/$(am__dirstamp) -./src/gui/magicseteditor-card_select_window.$(OBJEXT): \ - src/gui/$(am__dirstamp) src/gui/$(DEPDIR)/$(am__dirstamp) +./src/gfx/magicseteditor-resample_image.$(OBJEXT): \ + src/gfx/$(am__dirstamp) src/gfx/$(DEPDIR)/$(am__dirstamp) +./src/gfx/magicseteditor-resample_text.$(OBJEXT): \ + src/gfx/$(am__dirstamp) src/gfx/$(DEPDIR)/$(am__dirstamp) +./src/gfx/magicseteditor-rotate_image.$(OBJEXT): \ + src/gfx/$(am__dirstamp) src/gfx/$(DEPDIR)/$(am__dirstamp) +./src/gfx/magicseteditor-bezier.$(OBJEXT): src/gfx/$(am__dirstamp) \ + src/gfx/$(DEPDIR)/$(am__dirstamp) src/gui/control/$(am__dirstamp): @$(MKDIR_P) ./src/gui/control @: > src/gui/control/$(am__dirstamp) src/gui/control/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) ./src/gui/control/$(DEPDIR) @: > src/gui/control/$(DEPDIR)/$(am__dirstamp) +./src/gui/control/magicseteditor-card_viewer.$(OBJEXT): \ + src/gui/control/$(am__dirstamp) \ + src/gui/control/$(DEPDIR)/$(am__dirstamp) +./src/gui/control/magicseteditor-native_look_editor.$(OBJEXT): \ + src/gui/control/$(am__dirstamp) \ + src/gui/control/$(DEPDIR)/$(am__dirstamp) +./src/gui/control/magicseteditor-card_list_column_select.$(OBJEXT): \ + src/gui/control/$(am__dirstamp) \ + src/gui/control/$(DEPDIR)/$(am__dirstamp) +./src/gui/control/magicseteditor-filtered_card_list.$(OBJEXT): \ + src/gui/control/$(am__dirstamp) \ + src/gui/control/$(DEPDIR)/$(am__dirstamp) +./src/gui/control/magicseteditor-item_list.$(OBJEXT): \ + src/gui/control/$(am__dirstamp) \ + src/gui/control/$(DEPDIR)/$(am__dirstamp) +./src/gui/control/magicseteditor-package_list.$(OBJEXT): \ + src/gui/control/$(am__dirstamp) \ + src/gui/control/$(DEPDIR)/$(am__dirstamp) +./src/gui/control/magicseteditor-text_ctrl.$(OBJEXT): \ + src/gui/control/$(am__dirstamp) \ + src/gui/control/$(DEPDIR)/$(am__dirstamp) +./src/gui/control/magicseteditor-tree_list.$(OBJEXT): \ + src/gui/control/$(am__dirstamp) \ + src/gui/control/$(DEPDIR)/$(am__dirstamp) +./src/gui/control/magicseteditor-card_editor.$(OBJEXT): \ + src/gui/control/$(am__dirstamp) \ + src/gui/control/$(DEPDIR)/$(am__dirstamp) ./src/gui/control/magicseteditor-card_list.$(OBJEXT): \ src/gui/control/$(am__dirstamp) \ src/gui/control/$(DEPDIR)/$(am__dirstamp) -./src/gui/control/magicseteditor-gallery_list.$(OBJEXT): \ +./src/gui/control/magicseteditor-filter_ctrl.$(OBJEXT): \ src/gui/control/$(am__dirstamp) \ src/gui/control/$(DEPDIR)/$(am__dirstamp) -./src/gui/control/magicseteditor-keyword_list.$(OBJEXT): \ +./src/gui/control/magicseteditor-gallery_list.$(OBJEXT): \ src/gui/control/$(am__dirstamp) \ src/gui/control/$(DEPDIR)/$(am__dirstamp) ./src/gui/control/magicseteditor-graph.$(OBJEXT): \ @@ -978,84 +1024,36 @@ src/gui/control/$(DEPDIR)/$(am__dirstamp): ./src/gui/control/magicseteditor-image_card_list.$(OBJEXT): \ src/gui/control/$(am__dirstamp) \ src/gui/control/$(DEPDIR)/$(am__dirstamp) -./src/gui/control/magicseteditor-card_viewer.$(OBJEXT): \ - src/gui/control/$(am__dirstamp) \ - src/gui/control/$(DEPDIR)/$(am__dirstamp) -./src/gui/control/magicseteditor-native_look_editor.$(OBJEXT): \ +./src/gui/control/magicseteditor-keyword_list.$(OBJEXT): \ src/gui/control/$(am__dirstamp) \ src/gui/control/$(DEPDIR)/$(am__dirstamp) ./src/gui/control/magicseteditor-select_card_list.$(OBJEXT): \ src/gui/control/$(am__dirstamp) \ src/gui/control/$(DEPDIR)/$(am__dirstamp) -./src/gui/control/magicseteditor-item_list.$(OBJEXT): \ - src/gui/control/$(am__dirstamp) \ - src/gui/control/$(DEPDIR)/$(am__dirstamp) -./src/gui/control/magicseteditor-text_ctrl.$(OBJEXT): \ - src/gui/control/$(am__dirstamp) \ - src/gui/control/$(DEPDIR)/$(am__dirstamp) -./src/gui/control/magicseteditor-card_editor.$(OBJEXT): \ - src/gui/control/$(am__dirstamp) \ - src/gui/control/$(DEPDIR)/$(am__dirstamp) -./src/gui/control/magicseteditor-filtered_card_list.$(OBJEXT): \ - src/gui/control/$(am__dirstamp) \ - src/gui/control/$(DEPDIR)/$(am__dirstamp) -./src/gui/control/magicseteditor-filter_ctrl.$(OBJEXT): \ - src/gui/control/$(am__dirstamp) \ - src/gui/control/$(DEPDIR)/$(am__dirstamp) -./src/gui/control/magicseteditor-package_list.$(OBJEXT): \ - src/gui/control/$(am__dirstamp) \ - src/gui/control/$(DEPDIR)/$(am__dirstamp) -./src/gui/control/magicseteditor-tree_list.$(OBJEXT): \ - src/gui/control/$(am__dirstamp) \ - src/gui/control/$(DEPDIR)/$(am__dirstamp) -./src/gui/control/magicseteditor-card_list_column_select.$(OBJEXT): \ - src/gui/control/$(am__dirstamp) \ - src/gui/control/$(DEPDIR)/$(am__dirstamp) +src/gui/$(am__dirstamp): + @$(MKDIR_P) ./src/gui + @: > src/gui/$(am__dirstamp) +src/gui/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) ./src/gui/$(DEPDIR) + @: > src/gui/$(DEPDIR)/$(am__dirstamp) ./src/gui/magicseteditor-package_update_list.$(OBJEXT): \ src/gui/$(am__dirstamp) src/gui/$(DEPDIR)/$(am__dirstamp) -./src/gui/magicseteditor-drop_down_list.$(OBJEXT): \ - src/gui/$(am__dirstamp) src/gui/$(DEPDIR)/$(am__dirstamp) -src/gui/value/$(am__dirstamp): - @$(MKDIR_P) ./src/gui/value - @: > src/gui/value/$(am__dirstamp) -src/gui/value/$(DEPDIR)/$(am__dirstamp): - @$(MKDIR_P) ./src/gui/value/$(DEPDIR) - @: > src/gui/value/$(DEPDIR)/$(am__dirstamp) -./src/gui/value/magicseteditor-symbol.$(OBJEXT): \ - src/gui/value/$(am__dirstamp) \ - src/gui/value/$(DEPDIR)/$(am__dirstamp) -./src/gui/value/magicseteditor-package_choice.$(OBJEXT): \ - src/gui/value/$(am__dirstamp) \ - src/gui/value/$(DEPDIR)/$(am__dirstamp) -./src/gui/value/magicseteditor-color.$(OBJEXT): \ - src/gui/value/$(am__dirstamp) \ - src/gui/value/$(DEPDIR)/$(am__dirstamp) -./src/gui/value/magicseteditor-text.$(OBJEXT): \ - src/gui/value/$(am__dirstamp) \ - src/gui/value/$(DEPDIR)/$(am__dirstamp) -./src/gui/value/magicseteditor-multiple_choice.$(OBJEXT): \ - src/gui/value/$(am__dirstamp) \ - src/gui/value/$(DEPDIR)/$(am__dirstamp) -./src/gui/value/magicseteditor-editor.$(OBJEXT): \ - src/gui/value/$(am__dirstamp) \ - src/gui/value/$(DEPDIR)/$(am__dirstamp) -./src/gui/value/magicseteditor-information.$(OBJEXT): \ - src/gui/value/$(am__dirstamp) \ - src/gui/value/$(DEPDIR)/$(am__dirstamp) -./src/gui/value/magicseteditor-choice.$(OBJEXT): \ - src/gui/value/$(am__dirstamp) \ - src/gui/value/$(DEPDIR)/$(am__dirstamp) -./src/gui/value/magicseteditor-image.$(OBJEXT): \ - src/gui/value/$(am__dirstamp) \ - src/gui/value/$(DEPDIR)/$(am__dirstamp) ./src/gui/magicseteditor-packages_window.$(OBJEXT): \ src/gui/$(am__dirstamp) src/gui/$(DEPDIR)/$(am__dirstamp) +./src/gui/magicseteditor-preferences_window.$(OBJEXT): \ + src/gui/$(am__dirstamp) src/gui/$(DEPDIR)/$(am__dirstamp) src/gui/set/$(am__dirstamp): @$(MKDIR_P) ./src/gui/set @: > src/gui/set/$(am__dirstamp) src/gui/set/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) ./src/gui/set/$(DEPDIR) @: > src/gui/set/$(DEPDIR)/$(am__dirstamp) +./src/gui/set/magicseteditor-cards_panel.$(OBJEXT): \ + src/gui/set/$(am__dirstamp) \ + src/gui/set/$(DEPDIR)/$(am__dirstamp) +./src/gui/set/magicseteditor-console_panel.$(OBJEXT): \ + src/gui/set/$(am__dirstamp) \ + src/gui/set/$(DEPDIR)/$(am__dirstamp) ./src/gui/set/magicseteditor-keywords_panel.$(OBJEXT): \ src/gui/set/$(am__dirstamp) \ src/gui/set/$(DEPDIR)/$(am__dirstamp) @@ -1065,76 +1063,252 @@ src/gui/set/$(DEPDIR)/$(am__dirstamp): ./src/gui/set/magicseteditor-random_pack_panel.$(OBJEXT): \ src/gui/set/$(am__dirstamp) \ src/gui/set/$(DEPDIR)/$(am__dirstamp) -./src/gui/set/magicseteditor-window.$(OBJEXT): \ +./src/gui/set/magicseteditor-set_info_panel.$(OBJEXT): \ src/gui/set/$(am__dirstamp) \ src/gui/set/$(DEPDIR)/$(am__dirstamp) ./src/gui/set/magicseteditor-stats_panel.$(OBJEXT): \ src/gui/set/$(am__dirstamp) \ src/gui/set/$(DEPDIR)/$(am__dirstamp) -./src/gui/set/magicseteditor-cards_panel.$(OBJEXT): \ - src/gui/set/$(am__dirstamp) \ - src/gui/set/$(DEPDIR)/$(am__dirstamp) ./src/gui/set/magicseteditor-style_panel.$(OBJEXT): \ src/gui/set/$(am__dirstamp) \ src/gui/set/$(DEPDIR)/$(am__dirstamp) -./src/gui/set/magicseteditor-console_panel.$(OBJEXT): \ +./src/gui/set/magicseteditor-window.$(OBJEXT): \ src/gui/set/$(am__dirstamp) \ src/gui/set/$(DEPDIR)/$(am__dirstamp) -./src/gui/set/magicseteditor-set_info_panel.$(OBJEXT): \ - src/gui/set/$(am__dirstamp) \ - src/gui/set/$(DEPDIR)/$(am__dirstamp) -./src/gui/magicseteditor-html_export_window.$(OBJEXT): \ +src/gui/symbol/$(am__dirstamp): + @$(MKDIR_P) ./src/gui/symbol + @: > src/gui/symbol/$(am__dirstamp) +src/gui/symbol/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) ./src/gui/symbol/$(DEPDIR) + @: > src/gui/symbol/$(DEPDIR)/$(am__dirstamp) +./src/gui/symbol/magicseteditor-basic_shape_editor.$(OBJEXT): \ + src/gui/symbol/$(am__dirstamp) \ + src/gui/symbol/$(DEPDIR)/$(am__dirstamp) +./src/gui/symbol/magicseteditor-control.$(OBJEXT): \ + src/gui/symbol/$(am__dirstamp) \ + src/gui/symbol/$(DEPDIR)/$(am__dirstamp) +./src/gui/symbol/magicseteditor-editor.$(OBJEXT): \ + src/gui/symbol/$(am__dirstamp) \ + src/gui/symbol/$(DEPDIR)/$(am__dirstamp) +./src/gui/symbol/magicseteditor-part_list.$(OBJEXT): \ + src/gui/symbol/$(am__dirstamp) \ + src/gui/symbol/$(DEPDIR)/$(am__dirstamp) +./src/gui/symbol/magicseteditor-point_editor.$(OBJEXT): \ + src/gui/symbol/$(am__dirstamp) \ + src/gui/symbol/$(DEPDIR)/$(am__dirstamp) +./src/gui/symbol/magicseteditor-select_editor.$(OBJEXT): \ + src/gui/symbol/$(am__dirstamp) \ + src/gui/symbol/$(DEPDIR)/$(am__dirstamp) +./src/gui/symbol/magicseteditor-selection.$(OBJEXT): \ + src/gui/symbol/$(am__dirstamp) \ + src/gui/symbol/$(DEPDIR)/$(am__dirstamp) +./src/gui/symbol/magicseteditor-symmetry_editor.$(OBJEXT): \ + src/gui/symbol/$(am__dirstamp) \ + src/gui/symbol/$(DEPDIR)/$(am__dirstamp) +./src/gui/symbol/magicseteditor-window.$(OBJEXT): \ + src/gui/symbol/$(am__dirstamp) \ + src/gui/symbol/$(DEPDIR)/$(am__dirstamp) +src/gui/value/$(am__dirstamp): + @$(MKDIR_P) ./src/gui/value + @: > src/gui/value/$(am__dirstamp) +src/gui/value/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) ./src/gui/value/$(DEPDIR) + @: > src/gui/value/$(DEPDIR)/$(am__dirstamp) +./src/gui/value/magicseteditor-choice.$(OBJEXT): \ + src/gui/value/$(am__dirstamp) \ + src/gui/value/$(DEPDIR)/$(am__dirstamp) +./src/gui/value/magicseteditor-color.$(OBJEXT): \ + src/gui/value/$(am__dirstamp) \ + src/gui/value/$(DEPDIR)/$(am__dirstamp) +./src/gui/value/magicseteditor-editor.$(OBJEXT): \ + src/gui/value/$(am__dirstamp) \ + src/gui/value/$(DEPDIR)/$(am__dirstamp) +./src/gui/value/magicseteditor-image.$(OBJEXT): \ + src/gui/value/$(am__dirstamp) \ + src/gui/value/$(DEPDIR)/$(am__dirstamp) +./src/gui/value/magicseteditor-information.$(OBJEXT): \ + src/gui/value/$(am__dirstamp) \ + src/gui/value/$(DEPDIR)/$(am__dirstamp) +./src/gui/value/magicseteditor-multiple_choice.$(OBJEXT): \ + src/gui/value/$(am__dirstamp) \ + src/gui/value/$(DEPDIR)/$(am__dirstamp) +./src/gui/value/magicseteditor-package_choice.$(OBJEXT): \ + src/gui/value/$(am__dirstamp) \ + src/gui/value/$(DEPDIR)/$(am__dirstamp) +./src/gui/value/magicseteditor-symbol.$(OBJEXT): \ + src/gui/value/$(am__dirstamp) \ + src/gui/value/$(DEPDIR)/$(am__dirstamp) +./src/gui/value/magicseteditor-text.$(OBJEXT): \ + src/gui/value/$(am__dirstamp) \ + src/gui/value/$(DEPDIR)/$(am__dirstamp) +./src/gui/magicseteditor-print_window.$(OBJEXT): \ src/gui/$(am__dirstamp) src/gui/$(DEPDIR)/$(am__dirstamp) -./src/gui/magicseteditor-new_window.$(OBJEXT): \ +./src/gui/magicseteditor-profiler_window.$(OBJEXT): \ src/gui/$(am__dirstamp) src/gui/$(DEPDIR)/$(am__dirstamp) ./src/gui/magicseteditor-thumbnail_thread.$(OBJEXT): \ src/gui/$(am__dirstamp) src/gui/$(DEPDIR)/$(am__dirstamp) +./src/gui/magicseteditor-update_checker.$(OBJEXT): \ + src/gui/$(am__dirstamp) src/gui/$(DEPDIR)/$(am__dirstamp) ./src/gui/magicseteditor-util.$(OBJEXT): src/gui/$(am__dirstamp) \ src/gui/$(DEPDIR)/$(am__dirstamp) ./src/gui/magicseteditor-welcome_window.$(OBJEXT): \ src/gui/$(am__dirstamp) src/gui/$(DEPDIR)/$(am__dirstamp) -./src/gui/magicseteditor-auto_replace_window.$(OBJEXT): \ - src/gui/$(am__dirstamp) src/gui/$(DEPDIR)/$(am__dirstamp) -./src/gui/magicseteditor-image_slice_window.$(OBJEXT): \ - src/gui/$(am__dirstamp) src/gui/$(DEPDIR)/$(am__dirstamp) ./src/gui/magicseteditor-about_window.$(OBJEXT): \ src/gui/$(am__dirstamp) src/gui/$(DEPDIR)/$(am__dirstamp) -./src/gui/magicseteditor-print_window.$(OBJEXT): \ +./src/gui/magicseteditor-auto_replace_window.$(OBJEXT): \ src/gui/$(am__dirstamp) src/gui/$(DEPDIR)/$(am__dirstamp) -./src/gui/magicseteditor-images_export_window.$(OBJEXT): \ +./src/gui/magicseteditor-card_select_window.$(OBJEXT): \ src/gui/$(am__dirstamp) src/gui/$(DEPDIR)/$(am__dirstamp) -./src/gui/magicseteditor-update_checker.$(OBJEXT): \ +./src/gui/magicseteditor-drop_down_list.$(OBJEXT): \ + src/gui/$(am__dirstamp) src/gui/$(DEPDIR)/$(am__dirstamp) +./src/gui/magicseteditor-html_export_window.$(OBJEXT): \ src/gui/$(am__dirstamp) src/gui/$(DEPDIR)/$(am__dirstamp) ./src/gui/magicseteditor-icon_menu.$(OBJEXT): src/gui/$(am__dirstamp) \ src/gui/$(DEPDIR)/$(am__dirstamp) -./src/magicseteditor-code_template.$(OBJEXT): src/$(am__dirstamp) \ - src/$(DEPDIR)/$(am__dirstamp) -./src/util/magicseteditor-error.$(OBJEXT): src/util/$(am__dirstamp) \ - src/util/$(DEPDIR)/$(am__dirstamp) -./src/util/magicseteditor-file_utils.$(OBJEXT): \ - src/util/$(am__dirstamp) src/util/$(DEPDIR)/$(am__dirstamp) -./src/util/magicseteditor-alignment.$(OBJEXT): \ - src/util/$(am__dirstamp) src/util/$(DEPDIR)/$(am__dirstamp) -./src/util/magicseteditor-string.$(OBJEXT): src/util/$(am__dirstamp) \ - src/util/$(DEPDIR)/$(am__dirstamp) -./src/util/magicseteditor-tagged_string.$(OBJEXT): \ - src/util/$(am__dirstamp) src/util/$(DEPDIR)/$(am__dirstamp) -./src/util/magicseteditor-age.$(OBJEXT): src/util/$(am__dirstamp) \ - src/util/$(DEPDIR)/$(am__dirstamp) -./src/util/magicseteditor-action_stack.$(OBJEXT): \ - src/util/$(am__dirstamp) src/util/$(DEPDIR)/$(am__dirstamp) -./src/util/magicseteditor-regex.$(OBJEXT): src/util/$(am__dirstamp) \ - src/util/$(DEPDIR)/$(am__dirstamp) -./src/util/magicseteditor-vcs.$(OBJEXT): src/util/$(am__dirstamp) \ - src/util/$(DEPDIR)/$(am__dirstamp) -./src/util/magicseteditor-rotation.$(OBJEXT): \ - src/util/$(am__dirstamp) src/util/$(DEPDIR)/$(am__dirstamp) -./src/util/magicseteditor-spec_sort.$(OBJEXT): \ - src/util/$(am__dirstamp) src/util/$(DEPDIR)/$(am__dirstamp) -./src/util/magicseteditor-spell_checker.$(OBJEXT): \ - src/util/$(am__dirstamp) src/util/$(DEPDIR)/$(am__dirstamp) -./src/util/magicseteditor-version.$(OBJEXT): src/util/$(am__dirstamp) \ - src/util/$(DEPDIR)/$(am__dirstamp) +./src/gui/magicseteditor-image_slice_window.$(OBJEXT): \ + src/gui/$(am__dirstamp) src/gui/$(DEPDIR)/$(am__dirstamp) +./src/gui/magicseteditor-images_export_window.$(OBJEXT): \ + src/gui/$(am__dirstamp) src/gui/$(DEPDIR)/$(am__dirstamp) +./src/gui/magicseteditor-new_window.$(OBJEXT): \ + src/gui/$(am__dirstamp) src/gui/$(DEPDIR)/$(am__dirstamp) +src/render/card/$(am__dirstamp): + @$(MKDIR_P) ./src/render/card + @: > src/render/card/$(am__dirstamp) +src/render/card/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) ./src/render/card/$(DEPDIR) + @: > src/render/card/$(DEPDIR)/$(am__dirstamp) +./src/render/card/magicseteditor-viewer.$(OBJEXT): \ + src/render/card/$(am__dirstamp) \ + src/render/card/$(DEPDIR)/$(am__dirstamp) +src/render/symbol/$(am__dirstamp): + @$(MKDIR_P) ./src/render/symbol + @: > src/render/symbol/$(am__dirstamp) +src/render/symbol/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) ./src/render/symbol/$(DEPDIR) + @: > src/render/symbol/$(DEPDIR)/$(am__dirstamp) +./src/render/symbol/magicseteditor-filter.$(OBJEXT): \ + src/render/symbol/$(am__dirstamp) \ + src/render/symbol/$(DEPDIR)/$(am__dirstamp) +./src/render/symbol/magicseteditor-viewer.$(OBJEXT): \ + src/render/symbol/$(am__dirstamp) \ + src/render/symbol/$(DEPDIR)/$(am__dirstamp) +src/render/text/$(am__dirstamp): + @$(MKDIR_P) ./src/render/text + @: > src/render/text/$(am__dirstamp) +src/render/text/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) ./src/render/text/$(DEPDIR) + @: > src/render/text/$(DEPDIR)/$(am__dirstamp) +./src/render/text/magicseteditor-compound.$(OBJEXT): \ + src/render/text/$(am__dirstamp) \ + src/render/text/$(DEPDIR)/$(am__dirstamp) +./src/render/text/magicseteditor-element.$(OBJEXT): \ + src/render/text/$(am__dirstamp) \ + src/render/text/$(DEPDIR)/$(am__dirstamp) +./src/render/text/magicseteditor-font.$(OBJEXT): \ + src/render/text/$(am__dirstamp) \ + src/render/text/$(DEPDIR)/$(am__dirstamp) +./src/render/text/magicseteditor-symbol.$(OBJEXT): \ + src/render/text/$(am__dirstamp) \ + src/render/text/$(DEPDIR)/$(am__dirstamp) +./src/render/text/magicseteditor-viewer.$(OBJEXT): \ + src/render/text/$(am__dirstamp) \ + src/render/text/$(DEPDIR)/$(am__dirstamp) +src/render/value/$(am__dirstamp): + @$(MKDIR_P) ./src/render/value + @: > src/render/value/$(am__dirstamp) +src/render/value/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) ./src/render/value/$(DEPDIR) + @: > src/render/value/$(DEPDIR)/$(am__dirstamp) +./src/render/value/magicseteditor-choice.$(OBJEXT): \ + src/render/value/$(am__dirstamp) \ + src/render/value/$(DEPDIR)/$(am__dirstamp) +./src/render/value/magicseteditor-color.$(OBJEXT): \ + src/render/value/$(am__dirstamp) \ + src/render/value/$(DEPDIR)/$(am__dirstamp) +./src/render/value/magicseteditor-image.$(OBJEXT): \ + src/render/value/$(am__dirstamp) \ + src/render/value/$(DEPDIR)/$(am__dirstamp) +./src/render/value/magicseteditor-information.$(OBJEXT): \ + src/render/value/$(am__dirstamp) \ + src/render/value/$(DEPDIR)/$(am__dirstamp) +./src/render/value/magicseteditor-multiple_choice.$(OBJEXT): \ + src/render/value/$(am__dirstamp) \ + src/render/value/$(DEPDIR)/$(am__dirstamp) +./src/render/value/magicseteditor-package_choice.$(OBJEXT): \ + src/render/value/$(am__dirstamp) \ + src/render/value/$(DEPDIR)/$(am__dirstamp) +./src/render/value/magicseteditor-symbol.$(OBJEXT): \ + src/render/value/$(am__dirstamp) \ + src/render/value/$(DEPDIR)/$(am__dirstamp) +./src/render/value/magicseteditor-text.$(OBJEXT): \ + src/render/value/$(am__dirstamp) \ + src/render/value/$(DEPDIR)/$(am__dirstamp) +./src/render/value/magicseteditor-viewer.$(OBJEXT): \ + src/render/value/$(am__dirstamp) \ + src/render/value/$(DEPDIR)/$(am__dirstamp) +src/script/functions/$(am__dirstamp): + @$(MKDIR_P) ./src/script/functions + @: > src/script/functions/$(am__dirstamp) +src/script/functions/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) ./src/script/functions/$(DEPDIR) + @: > src/script/functions/$(DEPDIR)/$(am__dirstamp) +./src/script/functions/magicseteditor-basic.$(OBJEXT): \ + src/script/functions/$(am__dirstamp) \ + src/script/functions/$(DEPDIR)/$(am__dirstamp) +./src/script/functions/magicseteditor-construction.$(OBJEXT): \ + src/script/functions/$(am__dirstamp) \ + src/script/functions/$(DEPDIR)/$(am__dirstamp) +./src/script/functions/magicseteditor-editor.$(OBJEXT): \ + src/script/functions/$(am__dirstamp) \ + src/script/functions/$(DEPDIR)/$(am__dirstamp) +./src/script/functions/magicseteditor-english.$(OBJEXT): \ + src/script/functions/$(am__dirstamp) \ + src/script/functions/$(DEPDIR)/$(am__dirstamp) +./src/script/functions/magicseteditor-export.$(OBJEXT): \ + src/script/functions/$(am__dirstamp) \ + src/script/functions/$(DEPDIR)/$(am__dirstamp) +./src/script/functions/magicseteditor-image.$(OBJEXT): \ + src/script/functions/$(am__dirstamp) \ + src/script/functions/$(DEPDIR)/$(am__dirstamp) +./src/script/functions/magicseteditor-regex.$(OBJEXT): \ + src/script/functions/$(am__dirstamp) \ + src/script/functions/$(DEPDIR)/$(am__dirstamp) +./src/script/functions/magicseteditor-spelling.$(OBJEXT): \ + src/script/functions/$(am__dirstamp) \ + src/script/functions/$(DEPDIR)/$(am__dirstamp) +src/script/$(am__dirstamp): + @$(MKDIR_P) ./src/script + @: > src/script/$(am__dirstamp) +src/script/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) ./src/script/$(DEPDIR) + @: > src/script/$(DEPDIR)/$(am__dirstamp) +./src/script/magicseteditor-context.$(OBJEXT): \ + src/script/$(am__dirstamp) \ + src/script/$(DEPDIR)/$(am__dirstamp) +./src/script/magicseteditor-dependency.$(OBJEXT): \ + src/script/$(am__dirstamp) \ + src/script/$(DEPDIR)/$(am__dirstamp) +./src/script/magicseteditor-image.$(OBJEXT): \ + src/script/$(am__dirstamp) \ + src/script/$(DEPDIR)/$(am__dirstamp) +./src/script/magicseteditor-parser.$(OBJEXT): \ + src/script/$(am__dirstamp) \ + src/script/$(DEPDIR)/$(am__dirstamp) +./src/script/magicseteditor-profiler.$(OBJEXT): \ + src/script/$(am__dirstamp) \ + src/script/$(DEPDIR)/$(am__dirstamp) +./src/script/magicseteditor-script.$(OBJEXT): \ + src/script/$(am__dirstamp) \ + src/script/$(DEPDIR)/$(am__dirstamp) +./src/script/magicseteditor-script_manager.$(OBJEXT): \ + src/script/$(am__dirstamp) \ + src/script/$(DEPDIR)/$(am__dirstamp) +./src/script/magicseteditor-scriptable.$(OBJEXT): \ + src/script/$(am__dirstamp) \ + src/script/$(DEPDIR)/$(am__dirstamp) +./src/script/magicseteditor-value.$(OBJEXT): \ + src/script/$(am__dirstamp) \ + src/script/$(DEPDIR)/$(am__dirstamp) src/util/io/$(am__dirstamp): @$(MKDIR_P) ./src/util/io @: > src/util/io/$(am__dirstamp) @@ -1144,16 +1318,16 @@ src/util/io/$(DEPDIR)/$(am__dirstamp): ./src/util/io/magicseteditor-get_member.$(OBJEXT): \ src/util/io/$(am__dirstamp) \ src/util/io/$(DEPDIR)/$(am__dirstamp) -./src/util/io/magicseteditor-package_manager.$(OBJEXT): \ +./src/util/io/magicseteditor-package.$(OBJEXT): \ src/util/io/$(am__dirstamp) \ src/util/io/$(DEPDIR)/$(am__dirstamp) -./src/util/io/magicseteditor-writer.$(OBJEXT): \ +./src/util/io/magicseteditor-package_manager.$(OBJEXT): \ src/util/io/$(am__dirstamp) \ src/util/io/$(DEPDIR)/$(am__dirstamp) ./src/util/io/magicseteditor-reader.$(OBJEXT): \ src/util/io/$(am__dirstamp) \ src/util/io/$(DEPDIR)/$(am__dirstamp) -./src/util/io/magicseteditor-package.$(OBJEXT): \ +./src/util/io/magicseteditor-writer.$(OBJEXT): \ src/util/io/$(am__dirstamp) \ src/util/io/$(DEPDIR)/$(am__dirstamp) src/util/vcs/$(am__dirstamp): @@ -1165,211 +1339,42 @@ src/util/vcs/$(DEPDIR)/$(am__dirstamp): ./src/util/vcs/magicseteditor-subversion.$(OBJEXT): \ src/util/vcs/$(am__dirstamp) \ src/util/vcs/$(DEPDIR)/$(am__dirstamp) -src/render/symbol/$(am__dirstamp): - @$(MKDIR_P) ./src/render/symbol - @: > src/render/symbol/$(am__dirstamp) -src/render/symbol/$(DEPDIR)/$(am__dirstamp): - @$(MKDIR_P) ./src/render/symbol/$(DEPDIR) - @: > src/render/symbol/$(DEPDIR)/$(am__dirstamp) -./src/render/symbol/magicseteditor-viewer.$(OBJEXT): \ - src/render/symbol/$(am__dirstamp) \ - src/render/symbol/$(DEPDIR)/$(am__dirstamp) -./src/render/symbol/magicseteditor-filter.$(OBJEXT): \ - src/render/symbol/$(am__dirstamp) \ - src/render/symbol/$(DEPDIR)/$(am__dirstamp) -src/render/value/$(am__dirstamp): - @$(MKDIR_P) ./src/render/value - @: > src/render/value/$(am__dirstamp) -src/render/value/$(DEPDIR)/$(am__dirstamp): - @$(MKDIR_P) ./src/render/value/$(DEPDIR) - @: > src/render/value/$(DEPDIR)/$(am__dirstamp) -./src/render/value/magicseteditor-symbol.$(OBJEXT): \ - src/render/value/$(am__dirstamp) \ - src/render/value/$(DEPDIR)/$(am__dirstamp) -./src/render/value/magicseteditor-package_choice.$(OBJEXT): \ - src/render/value/$(am__dirstamp) \ - src/render/value/$(DEPDIR)/$(am__dirstamp) -./src/render/value/magicseteditor-color.$(OBJEXT): \ - src/render/value/$(am__dirstamp) \ - src/render/value/$(DEPDIR)/$(am__dirstamp) -./src/render/value/magicseteditor-viewer.$(OBJEXT): \ - src/render/value/$(am__dirstamp) \ - src/render/value/$(DEPDIR)/$(am__dirstamp) -./src/render/value/magicseteditor-text.$(OBJEXT): \ - src/render/value/$(am__dirstamp) \ - src/render/value/$(DEPDIR)/$(am__dirstamp) -./src/render/value/magicseteditor-multiple_choice.$(OBJEXT): \ - src/render/value/$(am__dirstamp) \ - src/render/value/$(DEPDIR)/$(am__dirstamp) -./src/render/value/magicseteditor-information.$(OBJEXT): \ - src/render/value/$(am__dirstamp) \ - src/render/value/$(DEPDIR)/$(am__dirstamp) -./src/render/value/magicseteditor-choice.$(OBJEXT): \ - src/render/value/$(am__dirstamp) \ - src/render/value/$(DEPDIR)/$(am__dirstamp) -./src/render/value/magicseteditor-image.$(OBJEXT): \ - src/render/value/$(am__dirstamp) \ - src/render/value/$(DEPDIR)/$(am__dirstamp) -src/render/text/$(am__dirstamp): - @$(MKDIR_P) ./src/render/text - @: > src/render/text/$(am__dirstamp) -src/render/text/$(DEPDIR)/$(am__dirstamp): - @$(MKDIR_P) ./src/render/text/$(DEPDIR) - @: > src/render/text/$(DEPDIR)/$(am__dirstamp) -./src/render/text/magicseteditor-symbol.$(OBJEXT): \ - src/render/text/$(am__dirstamp) \ - src/render/text/$(DEPDIR)/$(am__dirstamp) -./src/render/text/magicseteditor-viewer.$(OBJEXT): \ - src/render/text/$(am__dirstamp) \ - src/render/text/$(DEPDIR)/$(am__dirstamp) -./src/render/text/magicseteditor-element.$(OBJEXT): \ - src/render/text/$(am__dirstamp) \ - src/render/text/$(DEPDIR)/$(am__dirstamp) -./src/render/text/magicseteditor-font.$(OBJEXT): \ - src/render/text/$(am__dirstamp) \ - src/render/text/$(DEPDIR)/$(am__dirstamp) -./src/render/text/magicseteditor-compound.$(OBJEXT): \ - src/render/text/$(am__dirstamp) \ - src/render/text/$(DEPDIR)/$(am__dirstamp) -src/render/card/$(am__dirstamp): - @$(MKDIR_P) ./src/render/card - @: > src/render/card/$(am__dirstamp) -src/render/card/$(DEPDIR)/$(am__dirstamp): - @$(MKDIR_P) ./src/render/card/$(DEPDIR) - @: > src/render/card/$(DEPDIR)/$(am__dirstamp) -./src/render/card/magicseteditor-viewer.$(OBJEXT): \ - src/render/card/$(am__dirstamp) \ - src/render/card/$(DEPDIR)/$(am__dirstamp) -src/data/$(am__dirstamp): - @$(MKDIR_P) ./src/data - @: > src/data/$(am__dirstamp) -src/data/$(DEPDIR)/$(am__dirstamp): - @$(MKDIR_P) ./src/data/$(DEPDIR) - @: > src/data/$(DEPDIR)/$(am__dirstamp) -./src/data/magicseteditor-field.$(OBJEXT): src/data/$(am__dirstamp) \ - src/data/$(DEPDIR)/$(am__dirstamp) -./src/data/magicseteditor-keyword.$(OBJEXT): src/data/$(am__dirstamp) \ - src/data/$(DEPDIR)/$(am__dirstamp) -./src/data/magicseteditor-symbol.$(OBJEXT): src/data/$(am__dirstamp) \ - src/data/$(DEPDIR)/$(am__dirstamp) -./src/data/magicseteditor-game.$(OBJEXT): src/data/$(am__dirstamp) \ - src/data/$(DEPDIR)/$(am__dirstamp) -./src/data/magicseteditor-pack.$(OBJEXT): src/data/$(am__dirstamp) \ - src/data/$(DEPDIR)/$(am__dirstamp) -src/data/field/$(am__dirstamp): - @$(MKDIR_P) ./src/data/field - @: > src/data/field/$(am__dirstamp) -src/data/field/$(DEPDIR)/$(am__dirstamp): - @$(MKDIR_P) ./src/data/field/$(DEPDIR) - @: > src/data/field/$(DEPDIR)/$(am__dirstamp) -./src/data/field/magicseteditor-symbol.$(OBJEXT): \ - src/data/field/$(am__dirstamp) \ - src/data/field/$(DEPDIR)/$(am__dirstamp) -./src/data/field/magicseteditor-package_choice.$(OBJEXT): \ - src/data/field/$(am__dirstamp) \ - src/data/field/$(DEPDIR)/$(am__dirstamp) -./src/data/field/magicseteditor-color.$(OBJEXT): \ - src/data/field/$(am__dirstamp) \ - src/data/field/$(DEPDIR)/$(am__dirstamp) -./src/data/field/magicseteditor-text.$(OBJEXT): \ - src/data/field/$(am__dirstamp) \ - src/data/field/$(DEPDIR)/$(am__dirstamp) -./src/data/field/magicseteditor-multiple_choice.$(OBJEXT): \ - src/data/field/$(am__dirstamp) \ - src/data/field/$(DEPDIR)/$(am__dirstamp) -./src/data/field/magicseteditor-boolean.$(OBJEXT): \ - src/data/field/$(am__dirstamp) \ - src/data/field/$(DEPDIR)/$(am__dirstamp) -./src/data/field/magicseteditor-information.$(OBJEXT): \ - src/data/field/$(am__dirstamp) \ - src/data/field/$(DEPDIR)/$(am__dirstamp) -./src/data/field/magicseteditor-choice.$(OBJEXT): \ - src/data/field/$(am__dirstamp) \ - src/data/field/$(DEPDIR)/$(am__dirstamp) -./src/data/field/magicseteditor-image.$(OBJEXT): \ - src/data/field/$(am__dirstamp) \ - src/data/field/$(DEPDIR)/$(am__dirstamp) -./src/data/magicseteditor-locale.$(OBJEXT): src/data/$(am__dirstamp) \ - src/data/$(DEPDIR)/$(am__dirstamp) -./src/data/magicseteditor-add_cards_script.$(OBJEXT): \ - src/data/$(am__dirstamp) src/data/$(DEPDIR)/$(am__dirstamp) -./src/data/magicseteditor-card.$(OBJEXT): src/data/$(am__dirstamp) \ - src/data/$(DEPDIR)/$(am__dirstamp) -./src/data/magicseteditor-export_template.$(OBJEXT): \ - src/data/$(am__dirstamp) src/data/$(DEPDIR)/$(am__dirstamp) -./src/data/magicseteditor-symbol_font.$(OBJEXT): \ - src/data/$(am__dirstamp) src/data/$(DEPDIR)/$(am__dirstamp) -src/data/format/$(am__dirstamp): - @$(MKDIR_P) ./src/data/format - @: > src/data/format/$(am__dirstamp) -src/data/format/$(DEPDIR)/$(am__dirstamp): - @$(MKDIR_P) ./src/data/format/$(DEPDIR) - @: > src/data/format/$(DEPDIR)/$(am__dirstamp) -./src/data/format/magicseteditor-mtg_editor.$(OBJEXT): \ - src/data/format/$(am__dirstamp) \ - src/data/format/$(DEPDIR)/$(am__dirstamp) -./src/data/format/magicseteditor-mse1.$(OBJEXT): \ - src/data/format/$(am__dirstamp) \ - src/data/format/$(DEPDIR)/$(am__dirstamp) -./src/data/format/magicseteditor-clipboard.$(OBJEXT): \ - src/data/format/$(am__dirstamp) \ - src/data/format/$(DEPDIR)/$(am__dirstamp) -./src/data/format/magicseteditor-image_to_symbol.$(OBJEXT): \ - src/data/format/$(am__dirstamp) \ - src/data/format/$(DEPDIR)/$(am__dirstamp) -./src/data/format/magicseteditor-html.$(OBJEXT): \ - src/data/format/$(am__dirstamp) \ - src/data/format/$(DEPDIR)/$(am__dirstamp) -./src/data/format/magicseteditor-apprentice.$(OBJEXT): \ - src/data/format/$(am__dirstamp) \ - src/data/format/$(DEPDIR)/$(am__dirstamp) -./src/data/format/magicseteditor-formats.$(OBJEXT): \ - src/data/format/$(am__dirstamp) \ - src/data/format/$(DEPDIR)/$(am__dirstamp) -./src/data/format/magicseteditor-image.$(OBJEXT): \ - src/data/format/$(am__dirstamp) \ - src/data/format/$(DEPDIR)/$(am__dirstamp) -./src/data/format/magicseteditor-mws.$(OBJEXT): \ - src/data/format/$(am__dirstamp) \ - src/data/format/$(DEPDIR)/$(am__dirstamp) -./src/data/format/magicseteditor-mse2.$(OBJEXT): \ - src/data/format/$(am__dirstamp) \ - src/data/format/$(DEPDIR)/$(am__dirstamp) -./src/data/magicseteditor-set.$(OBJEXT): src/data/$(am__dirstamp) \ - src/data/$(DEPDIR)/$(am__dirstamp) -./src/data/magicseteditor-installer.$(OBJEXT): \ - src/data/$(am__dirstamp) src/data/$(DEPDIR)/$(am__dirstamp) -./src/data/magicseteditor-font.$(OBJEXT): src/data/$(am__dirstamp) \ - src/data/$(DEPDIR)/$(am__dirstamp) -./src/data/magicseteditor-statistics.$(OBJEXT): \ - src/data/$(am__dirstamp) src/data/$(DEPDIR)/$(am__dirstamp) -src/data/action/$(am__dirstamp): - @$(MKDIR_P) ./src/data/action - @: > src/data/action/$(am__dirstamp) -src/data/action/$(DEPDIR)/$(am__dirstamp): - @$(MKDIR_P) ./src/data/action/$(DEPDIR) - @: > src/data/action/$(DEPDIR)/$(am__dirstamp) -./src/data/action/magicseteditor-keyword.$(OBJEXT): \ - src/data/action/$(am__dirstamp) \ - src/data/action/$(DEPDIR)/$(am__dirstamp) -./src/data/action/magicseteditor-symbol.$(OBJEXT): \ - src/data/action/$(am__dirstamp) \ - src/data/action/$(DEPDIR)/$(am__dirstamp) -./src/data/action/magicseteditor-value.$(OBJEXT): \ - src/data/action/$(am__dirstamp) \ - src/data/action/$(DEPDIR)/$(am__dirstamp) -./src/data/action/magicseteditor-symbol_part.$(OBJEXT): \ - src/data/action/$(am__dirstamp) \ - src/data/action/$(DEPDIR)/$(am__dirstamp) -./src/data/action/magicseteditor-set.$(OBJEXT): \ - src/data/action/$(am__dirstamp) \ - src/data/action/$(DEPDIR)/$(am__dirstamp) -./src/data/magicseteditor-stylesheet.$(OBJEXT): \ - src/data/$(am__dirstamp) src/data/$(DEPDIR)/$(am__dirstamp) -./src/data/magicseteditor-word_list.$(OBJEXT): \ - src/data/$(am__dirstamp) src/data/$(DEPDIR)/$(am__dirstamp) -./src/data/magicseteditor-settings.$(OBJEXT): \ - src/data/$(am__dirstamp) src/data/$(DEPDIR)/$(am__dirstamp) +./src/util/magicseteditor-spec_sort.$(OBJEXT): \ + src/util/$(am__dirstamp) src/util/$(DEPDIR)/$(am__dirstamp) +./src/util/magicseteditor-spell_checker.$(OBJEXT): \ + src/util/$(am__dirstamp) src/util/$(DEPDIR)/$(am__dirstamp) +./src/util/magicseteditor-string.$(OBJEXT): src/util/$(am__dirstamp) \ + src/util/$(DEPDIR)/$(am__dirstamp) +./src/util/magicseteditor-tagged_string.$(OBJEXT): \ + src/util/$(am__dirstamp) src/util/$(DEPDIR)/$(am__dirstamp) +./src/util/magicseteditor-vcs.$(OBJEXT): src/util/$(am__dirstamp) \ + src/util/$(DEPDIR)/$(am__dirstamp) +./src/util/magicseteditor-version.$(OBJEXT): src/util/$(am__dirstamp) \ + src/util/$(DEPDIR)/$(am__dirstamp) +./src/util/magicseteditor-action_stack.$(OBJEXT): \ + src/util/$(am__dirstamp) src/util/$(DEPDIR)/$(am__dirstamp) +./src/util/magicseteditor-age.$(OBJEXT): src/util/$(am__dirstamp) \ + src/util/$(DEPDIR)/$(am__dirstamp) +./src/util/magicseteditor-alignment.$(OBJEXT): \ + src/util/$(am__dirstamp) src/util/$(DEPDIR)/$(am__dirstamp) +./src/util/magicseteditor-error.$(OBJEXT): src/util/$(am__dirstamp) \ + src/util/$(DEPDIR)/$(am__dirstamp) +./src/util/magicseteditor-file_utils.$(OBJEXT): \ + src/util/$(am__dirstamp) src/util/$(DEPDIR)/$(am__dirstamp) +./src/util/magicseteditor-regex.$(OBJEXT): src/util/$(am__dirstamp) \ + src/util/$(DEPDIR)/$(am__dirstamp) +./src/util/magicseteditor-rotation.$(OBJEXT): \ + src/util/$(am__dirstamp) src/util/$(DEPDIR)/$(am__dirstamp) +src/$(am__dirstamp): + @$(MKDIR_P) ./src + @: > src/$(am__dirstamp) +src/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) ./src/$(DEPDIR) + @: > src/$(DEPDIR)/$(am__dirstamp) +./src/magicseteditor-code_template.$(OBJEXT): src/$(am__dirstamp) \ + src/$(DEPDIR)/$(am__dirstamp) +./src/magicseteditor-main.$(OBJEXT): src/$(am__dirstamp) \ + src/$(DEPDIR)/$(am__dirstamp) magicseteditor$(EXEEXT): $(magicseteditor_OBJECTS) $(magicseteditor_DEPENDENCIES) $(EXTRA_magicseteditor_DEPENDENCIES) @rm -f magicseteditor$(EXEEXT) @@ -1590,20 +1595,6 @@ distclean-compile: @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` -./src/magicseteditor-main.o: ./src/main.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/magicseteditor-main.o -MD -MP -MF ./src/$(DEPDIR)/magicseteditor-main.Tpo -c -o ./src/magicseteditor-main.o `test -f './src/main.cpp' || echo '$(srcdir)/'`./src/main.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/$(DEPDIR)/magicseteditor-main.Tpo ./src/$(DEPDIR)/magicseteditor-main.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/main.cpp' object='./src/magicseteditor-main.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/magicseteditor-main.o `test -f './src/main.cpp' || echo '$(srcdir)/'`./src/main.cpp - -./src/magicseteditor-main.obj: ./src/main.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/magicseteditor-main.obj -MD -MP -MF ./src/$(DEPDIR)/magicseteditor-main.Tpo -c -o ./src/magicseteditor-main.obj `if test -f './src/main.cpp'; then $(CYGPATH_W) './src/main.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/main.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/$(DEPDIR)/magicseteditor-main.Tpo ./src/$(DEPDIR)/magicseteditor-main.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/main.cpp' object='./src/magicseteditor-main.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/magicseteditor-main.obj `if test -f './src/main.cpp'; then $(CYGPATH_W) './src/main.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/main.cpp'; fi` - ./src/cli/magicseteditor-cli_main.o: ./src/cli/cli_main.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/cli/magicseteditor-cli_main.o -MD -MP -MF ./src/cli/$(DEPDIR)/magicseteditor-cli_main.Tpo -c -o ./src/cli/magicseteditor-cli_main.o `test -f './src/cli/cli_main.cpp' || echo '$(srcdir)/'`./src/cli/cli_main.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/cli/$(DEPDIR)/magicseteditor-cli_main.Tpo ./src/cli/$(DEPDIR)/magicseteditor-cli_main.Po @@ -1618,20 +1609,6 @@ distclean-compile: @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/cli/magicseteditor-cli_main.obj `if test -f './src/cli/cli_main.cpp'; then $(CYGPATH_W) './src/cli/cli_main.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/cli/cli_main.cpp'; fi` -./src/cli/magicseteditor-win32_cli_wrapper.o: ./src/cli/win32_cli_wrapper.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/cli/magicseteditor-win32_cli_wrapper.o -MD -MP -MF ./src/cli/$(DEPDIR)/magicseteditor-win32_cli_wrapper.Tpo -c -o ./src/cli/magicseteditor-win32_cli_wrapper.o `test -f './src/cli/win32_cli_wrapper.cpp' || echo '$(srcdir)/'`./src/cli/win32_cli_wrapper.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/cli/$(DEPDIR)/magicseteditor-win32_cli_wrapper.Tpo ./src/cli/$(DEPDIR)/magicseteditor-win32_cli_wrapper.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/cli/win32_cli_wrapper.cpp' object='./src/cli/magicseteditor-win32_cli_wrapper.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/cli/magicseteditor-win32_cli_wrapper.o `test -f './src/cli/win32_cli_wrapper.cpp' || echo '$(srcdir)/'`./src/cli/win32_cli_wrapper.cpp - -./src/cli/magicseteditor-win32_cli_wrapper.obj: ./src/cli/win32_cli_wrapper.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/cli/magicseteditor-win32_cli_wrapper.obj -MD -MP -MF ./src/cli/$(DEPDIR)/magicseteditor-win32_cli_wrapper.Tpo -c -o ./src/cli/magicseteditor-win32_cli_wrapper.obj `if test -f './src/cli/win32_cli_wrapper.cpp'; then $(CYGPATH_W) './src/cli/win32_cli_wrapper.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/cli/win32_cli_wrapper.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/cli/$(DEPDIR)/magicseteditor-win32_cli_wrapper.Tpo ./src/cli/$(DEPDIR)/magicseteditor-win32_cli_wrapper.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/cli/win32_cli_wrapper.cpp' object='./src/cli/magicseteditor-win32_cli_wrapper.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/cli/magicseteditor-win32_cli_wrapper.obj `if test -f './src/cli/win32_cli_wrapper.cpp'; then $(CYGPATH_W) './src/cli/win32_cli_wrapper.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/cli/win32_cli_wrapper.cpp'; fi` - ./src/cli/magicseteditor-text_io_handler.o: ./src/cli/text_io_handler.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/cli/magicseteditor-text_io_handler.o -MD -MP -MF ./src/cli/$(DEPDIR)/magicseteditor-text_io_handler.Tpo -c -o ./src/cli/magicseteditor-text_io_handler.o `test -f './src/cli/text_io_handler.cpp' || echo '$(srcdir)/'`./src/cli/text_io_handler.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/cli/$(DEPDIR)/magicseteditor-text_io_handler.Tpo ./src/cli/$(DEPDIR)/magicseteditor-text_io_handler.Po @@ -1646,1909 +1623,89 @@ distclean-compile: @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/cli/magicseteditor-text_io_handler.obj `if test -f './src/cli/text_io_handler.cpp'; then $(CYGPATH_W) './src/cli/text_io_handler.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/cli/text_io_handler.cpp'; fi` -./src/gfx/magicseteditor-rotate_image.o: ./src/gfx/rotate_image.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gfx/magicseteditor-rotate_image.o -MD -MP -MF ./src/gfx/$(DEPDIR)/magicseteditor-rotate_image.Tpo -c -o ./src/gfx/magicseteditor-rotate_image.o `test -f './src/gfx/rotate_image.cpp' || echo '$(srcdir)/'`./src/gfx/rotate_image.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gfx/$(DEPDIR)/magicseteditor-rotate_image.Tpo ./src/gfx/$(DEPDIR)/magicseteditor-rotate_image.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gfx/rotate_image.cpp' object='./src/gfx/magicseteditor-rotate_image.o' libtool=no @AMDEPBACKSLASH@ +./src/cli/magicseteditor-win32_cli_wrapper.o: ./src/cli/win32_cli_wrapper.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/cli/magicseteditor-win32_cli_wrapper.o -MD -MP -MF ./src/cli/$(DEPDIR)/magicseteditor-win32_cli_wrapper.Tpo -c -o ./src/cli/magicseteditor-win32_cli_wrapper.o `test -f './src/cli/win32_cli_wrapper.cpp' || echo '$(srcdir)/'`./src/cli/win32_cli_wrapper.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/cli/$(DEPDIR)/magicseteditor-win32_cli_wrapper.Tpo ./src/cli/$(DEPDIR)/magicseteditor-win32_cli_wrapper.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/cli/win32_cli_wrapper.cpp' object='./src/cli/magicseteditor-win32_cli_wrapper.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gfx/magicseteditor-rotate_image.o `test -f './src/gfx/rotate_image.cpp' || echo '$(srcdir)/'`./src/gfx/rotate_image.cpp +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/cli/magicseteditor-win32_cli_wrapper.o `test -f './src/cli/win32_cli_wrapper.cpp' || echo '$(srcdir)/'`./src/cli/win32_cli_wrapper.cpp -./src/gfx/magicseteditor-rotate_image.obj: ./src/gfx/rotate_image.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gfx/magicseteditor-rotate_image.obj -MD -MP -MF ./src/gfx/$(DEPDIR)/magicseteditor-rotate_image.Tpo -c -o ./src/gfx/magicseteditor-rotate_image.obj `if test -f './src/gfx/rotate_image.cpp'; then $(CYGPATH_W) './src/gfx/rotate_image.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gfx/rotate_image.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gfx/$(DEPDIR)/magicseteditor-rotate_image.Tpo ./src/gfx/$(DEPDIR)/magicseteditor-rotate_image.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gfx/rotate_image.cpp' object='./src/gfx/magicseteditor-rotate_image.obj' libtool=no @AMDEPBACKSLASH@ +./src/cli/magicseteditor-win32_cli_wrapper.obj: ./src/cli/win32_cli_wrapper.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/cli/magicseteditor-win32_cli_wrapper.obj -MD -MP -MF ./src/cli/$(DEPDIR)/magicseteditor-win32_cli_wrapper.Tpo -c -o ./src/cli/magicseteditor-win32_cli_wrapper.obj `if test -f './src/cli/win32_cli_wrapper.cpp'; then $(CYGPATH_W) './src/cli/win32_cli_wrapper.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/cli/win32_cli_wrapper.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/cli/$(DEPDIR)/magicseteditor-win32_cli_wrapper.Tpo ./src/cli/$(DEPDIR)/magicseteditor-win32_cli_wrapper.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/cli/win32_cli_wrapper.cpp' object='./src/cli/magicseteditor-win32_cli_wrapper.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gfx/magicseteditor-rotate_image.obj `if test -f './src/gfx/rotate_image.cpp'; then $(CYGPATH_W) './src/gfx/rotate_image.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gfx/rotate_image.cpp'; fi` +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/cli/magicseteditor-win32_cli_wrapper.obj `if test -f './src/cli/win32_cli_wrapper.cpp'; then $(CYGPATH_W) './src/cli/win32_cli_wrapper.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/cli/win32_cli_wrapper.cpp'; fi` -./src/gfx/magicseteditor-generated_image.o: ./src/gfx/generated_image.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gfx/magicseteditor-generated_image.o -MD -MP -MF ./src/gfx/$(DEPDIR)/magicseteditor-generated_image.Tpo -c -o ./src/gfx/magicseteditor-generated_image.o `test -f './src/gfx/generated_image.cpp' || echo '$(srcdir)/'`./src/gfx/generated_image.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gfx/$(DEPDIR)/magicseteditor-generated_image.Tpo ./src/gfx/$(DEPDIR)/magicseteditor-generated_image.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gfx/generated_image.cpp' object='./src/gfx/magicseteditor-generated_image.o' libtool=no @AMDEPBACKSLASH@ +./src/data/action/magicseteditor-keyword.o: ./src/data/action/keyword.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/action/magicseteditor-keyword.o -MD -MP -MF ./src/data/action/$(DEPDIR)/magicseteditor-keyword.Tpo -c -o ./src/data/action/magicseteditor-keyword.o `test -f './src/data/action/keyword.cpp' || echo '$(srcdir)/'`./src/data/action/keyword.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/action/$(DEPDIR)/magicseteditor-keyword.Tpo ./src/data/action/$(DEPDIR)/magicseteditor-keyword.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/action/keyword.cpp' object='./src/data/action/magicseteditor-keyword.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gfx/magicseteditor-generated_image.o `test -f './src/gfx/generated_image.cpp' || echo '$(srcdir)/'`./src/gfx/generated_image.cpp +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/action/magicseteditor-keyword.o `test -f './src/data/action/keyword.cpp' || echo '$(srcdir)/'`./src/data/action/keyword.cpp -./src/gfx/magicseteditor-generated_image.obj: ./src/gfx/generated_image.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gfx/magicseteditor-generated_image.obj -MD -MP -MF ./src/gfx/$(DEPDIR)/magicseteditor-generated_image.Tpo -c -o ./src/gfx/magicseteditor-generated_image.obj `if test -f './src/gfx/generated_image.cpp'; then $(CYGPATH_W) './src/gfx/generated_image.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gfx/generated_image.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gfx/$(DEPDIR)/magicseteditor-generated_image.Tpo ./src/gfx/$(DEPDIR)/magicseteditor-generated_image.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gfx/generated_image.cpp' object='./src/gfx/magicseteditor-generated_image.obj' libtool=no @AMDEPBACKSLASH@ +./src/data/action/magicseteditor-keyword.obj: ./src/data/action/keyword.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/action/magicseteditor-keyword.obj -MD -MP -MF ./src/data/action/$(DEPDIR)/magicseteditor-keyword.Tpo -c -o ./src/data/action/magicseteditor-keyword.obj `if test -f './src/data/action/keyword.cpp'; then $(CYGPATH_W) './src/data/action/keyword.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/action/keyword.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/action/$(DEPDIR)/magicseteditor-keyword.Tpo ./src/data/action/$(DEPDIR)/magicseteditor-keyword.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/action/keyword.cpp' object='./src/data/action/magicseteditor-keyword.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gfx/magicseteditor-generated_image.obj `if test -f './src/gfx/generated_image.cpp'; then $(CYGPATH_W) './src/gfx/generated_image.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gfx/generated_image.cpp'; fi` +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/action/magicseteditor-keyword.obj `if test -f './src/data/action/keyword.cpp'; then $(CYGPATH_W) './src/data/action/keyword.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/action/keyword.cpp'; fi` -./src/gfx/magicseteditor-color.o: ./src/gfx/color.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gfx/magicseteditor-color.o -MD -MP -MF ./src/gfx/$(DEPDIR)/magicseteditor-color.Tpo -c -o ./src/gfx/magicseteditor-color.o `test -f './src/gfx/color.cpp' || echo '$(srcdir)/'`./src/gfx/color.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gfx/$(DEPDIR)/magicseteditor-color.Tpo ./src/gfx/$(DEPDIR)/magicseteditor-color.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gfx/color.cpp' object='./src/gfx/magicseteditor-color.o' libtool=no @AMDEPBACKSLASH@ +./src/data/action/magicseteditor-set.o: ./src/data/action/set.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/action/magicseteditor-set.o -MD -MP -MF ./src/data/action/$(DEPDIR)/magicseteditor-set.Tpo -c -o ./src/data/action/magicseteditor-set.o `test -f './src/data/action/set.cpp' || echo '$(srcdir)/'`./src/data/action/set.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/action/$(DEPDIR)/magicseteditor-set.Tpo ./src/data/action/$(DEPDIR)/magicseteditor-set.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/action/set.cpp' object='./src/data/action/magicseteditor-set.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gfx/magicseteditor-color.o `test -f './src/gfx/color.cpp' || echo '$(srcdir)/'`./src/gfx/color.cpp +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/action/magicseteditor-set.o `test -f './src/data/action/set.cpp' || echo '$(srcdir)/'`./src/data/action/set.cpp -./src/gfx/magicseteditor-color.obj: ./src/gfx/color.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gfx/magicseteditor-color.obj -MD -MP -MF ./src/gfx/$(DEPDIR)/magicseteditor-color.Tpo -c -o ./src/gfx/magicseteditor-color.obj `if test -f './src/gfx/color.cpp'; then $(CYGPATH_W) './src/gfx/color.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gfx/color.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gfx/$(DEPDIR)/magicseteditor-color.Tpo ./src/gfx/$(DEPDIR)/magicseteditor-color.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gfx/color.cpp' object='./src/gfx/magicseteditor-color.obj' libtool=no @AMDEPBACKSLASH@ +./src/data/action/magicseteditor-set.obj: ./src/data/action/set.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/action/magicseteditor-set.obj -MD -MP -MF ./src/data/action/$(DEPDIR)/magicseteditor-set.Tpo -c -o ./src/data/action/magicseteditor-set.obj `if test -f './src/data/action/set.cpp'; then $(CYGPATH_W) './src/data/action/set.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/action/set.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/action/$(DEPDIR)/magicseteditor-set.Tpo ./src/data/action/$(DEPDIR)/magicseteditor-set.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/action/set.cpp' object='./src/data/action/magicseteditor-set.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gfx/magicseteditor-color.obj `if test -f './src/gfx/color.cpp'; then $(CYGPATH_W) './src/gfx/color.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gfx/color.cpp'; fi` +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/action/magicseteditor-set.obj `if test -f './src/data/action/set.cpp'; then $(CYGPATH_W) './src/data/action/set.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/action/set.cpp'; fi` -./src/gfx/magicseteditor-polynomial.o: ./src/gfx/polynomial.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gfx/magicseteditor-polynomial.o -MD -MP -MF ./src/gfx/$(DEPDIR)/magicseteditor-polynomial.Tpo -c -o ./src/gfx/magicseteditor-polynomial.o `test -f './src/gfx/polynomial.cpp' || echo '$(srcdir)/'`./src/gfx/polynomial.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gfx/$(DEPDIR)/magicseteditor-polynomial.Tpo ./src/gfx/$(DEPDIR)/magicseteditor-polynomial.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gfx/polynomial.cpp' object='./src/gfx/magicseteditor-polynomial.o' libtool=no @AMDEPBACKSLASH@ +./src/data/action/magicseteditor-symbol.o: ./src/data/action/symbol.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/action/magicseteditor-symbol.o -MD -MP -MF ./src/data/action/$(DEPDIR)/magicseteditor-symbol.Tpo -c -o ./src/data/action/magicseteditor-symbol.o `test -f './src/data/action/symbol.cpp' || echo '$(srcdir)/'`./src/data/action/symbol.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/action/$(DEPDIR)/magicseteditor-symbol.Tpo ./src/data/action/$(DEPDIR)/magicseteditor-symbol.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/action/symbol.cpp' object='./src/data/action/magicseteditor-symbol.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gfx/magicseteditor-polynomial.o `test -f './src/gfx/polynomial.cpp' || echo '$(srcdir)/'`./src/gfx/polynomial.cpp +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/action/magicseteditor-symbol.o `test -f './src/data/action/symbol.cpp' || echo '$(srcdir)/'`./src/data/action/symbol.cpp -./src/gfx/magicseteditor-polynomial.obj: ./src/gfx/polynomial.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gfx/magicseteditor-polynomial.obj -MD -MP -MF ./src/gfx/$(DEPDIR)/magicseteditor-polynomial.Tpo -c -o ./src/gfx/magicseteditor-polynomial.obj `if test -f './src/gfx/polynomial.cpp'; then $(CYGPATH_W) './src/gfx/polynomial.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gfx/polynomial.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gfx/$(DEPDIR)/magicseteditor-polynomial.Tpo ./src/gfx/$(DEPDIR)/magicseteditor-polynomial.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gfx/polynomial.cpp' object='./src/gfx/magicseteditor-polynomial.obj' libtool=no @AMDEPBACKSLASH@ +./src/data/action/magicseteditor-symbol.obj: ./src/data/action/symbol.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/action/magicseteditor-symbol.obj -MD -MP -MF ./src/data/action/$(DEPDIR)/magicseteditor-symbol.Tpo -c -o ./src/data/action/magicseteditor-symbol.obj `if test -f './src/data/action/symbol.cpp'; then $(CYGPATH_W) './src/data/action/symbol.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/action/symbol.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/action/$(DEPDIR)/magicseteditor-symbol.Tpo ./src/data/action/$(DEPDIR)/magicseteditor-symbol.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/action/symbol.cpp' object='./src/data/action/magicseteditor-symbol.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gfx/magicseteditor-polynomial.obj `if test -f './src/gfx/polynomial.cpp'; then $(CYGPATH_W) './src/gfx/polynomial.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gfx/polynomial.cpp'; fi` +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/action/magicseteditor-symbol.obj `if test -f './src/data/action/symbol.cpp'; then $(CYGPATH_W) './src/data/action/symbol.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/action/symbol.cpp'; fi` -./src/gfx/magicseteditor-combine_image.o: ./src/gfx/combine_image.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gfx/magicseteditor-combine_image.o -MD -MP -MF ./src/gfx/$(DEPDIR)/magicseteditor-combine_image.Tpo -c -o ./src/gfx/magicseteditor-combine_image.o `test -f './src/gfx/combine_image.cpp' || echo '$(srcdir)/'`./src/gfx/combine_image.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gfx/$(DEPDIR)/magicseteditor-combine_image.Tpo ./src/gfx/$(DEPDIR)/magicseteditor-combine_image.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gfx/combine_image.cpp' object='./src/gfx/magicseteditor-combine_image.o' libtool=no @AMDEPBACKSLASH@ +./src/data/action/magicseteditor-symbol_part.o: ./src/data/action/symbol_part.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/action/magicseteditor-symbol_part.o -MD -MP -MF ./src/data/action/$(DEPDIR)/magicseteditor-symbol_part.Tpo -c -o ./src/data/action/magicseteditor-symbol_part.o `test -f './src/data/action/symbol_part.cpp' || echo '$(srcdir)/'`./src/data/action/symbol_part.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/action/$(DEPDIR)/magicseteditor-symbol_part.Tpo ./src/data/action/$(DEPDIR)/magicseteditor-symbol_part.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/action/symbol_part.cpp' object='./src/data/action/magicseteditor-symbol_part.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gfx/magicseteditor-combine_image.o `test -f './src/gfx/combine_image.cpp' || echo '$(srcdir)/'`./src/gfx/combine_image.cpp +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/action/magicseteditor-symbol_part.o `test -f './src/data/action/symbol_part.cpp' || echo '$(srcdir)/'`./src/data/action/symbol_part.cpp -./src/gfx/magicseteditor-combine_image.obj: ./src/gfx/combine_image.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gfx/magicseteditor-combine_image.obj -MD -MP -MF ./src/gfx/$(DEPDIR)/magicseteditor-combine_image.Tpo -c -o ./src/gfx/magicseteditor-combine_image.obj `if test -f './src/gfx/combine_image.cpp'; then $(CYGPATH_W) './src/gfx/combine_image.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gfx/combine_image.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gfx/$(DEPDIR)/magicseteditor-combine_image.Tpo ./src/gfx/$(DEPDIR)/magicseteditor-combine_image.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gfx/combine_image.cpp' object='./src/gfx/magicseteditor-combine_image.obj' libtool=no @AMDEPBACKSLASH@ +./src/data/action/magicseteditor-symbol_part.obj: ./src/data/action/symbol_part.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/action/magicseteditor-symbol_part.obj -MD -MP -MF ./src/data/action/$(DEPDIR)/magicseteditor-symbol_part.Tpo -c -o ./src/data/action/magicseteditor-symbol_part.obj `if test -f './src/data/action/symbol_part.cpp'; then $(CYGPATH_W) './src/data/action/symbol_part.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/action/symbol_part.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/action/$(DEPDIR)/magicseteditor-symbol_part.Tpo ./src/data/action/$(DEPDIR)/magicseteditor-symbol_part.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/action/symbol_part.cpp' object='./src/data/action/magicseteditor-symbol_part.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gfx/magicseteditor-combine_image.obj `if test -f './src/gfx/combine_image.cpp'; then $(CYGPATH_W) './src/gfx/combine_image.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gfx/combine_image.cpp'; fi` +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/action/magicseteditor-symbol_part.obj `if test -f './src/data/action/symbol_part.cpp'; then $(CYGPATH_W) './src/data/action/symbol_part.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/action/symbol_part.cpp'; fi` -./src/gfx/magicseteditor-bezier.o: ./src/gfx/bezier.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gfx/magicseteditor-bezier.o -MD -MP -MF ./src/gfx/$(DEPDIR)/magicseteditor-bezier.Tpo -c -o ./src/gfx/magicseteditor-bezier.o `test -f './src/gfx/bezier.cpp' || echo '$(srcdir)/'`./src/gfx/bezier.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gfx/$(DEPDIR)/magicseteditor-bezier.Tpo ./src/gfx/$(DEPDIR)/magicseteditor-bezier.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gfx/bezier.cpp' object='./src/gfx/magicseteditor-bezier.o' libtool=no @AMDEPBACKSLASH@ +./src/data/action/magicseteditor-value.o: ./src/data/action/value.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/action/magicseteditor-value.o -MD -MP -MF ./src/data/action/$(DEPDIR)/magicseteditor-value.Tpo -c -o ./src/data/action/magicseteditor-value.o `test -f './src/data/action/value.cpp' || echo '$(srcdir)/'`./src/data/action/value.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/action/$(DEPDIR)/magicseteditor-value.Tpo ./src/data/action/$(DEPDIR)/magicseteditor-value.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/action/value.cpp' object='./src/data/action/magicseteditor-value.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gfx/magicseteditor-bezier.o `test -f './src/gfx/bezier.cpp' || echo '$(srcdir)/'`./src/gfx/bezier.cpp +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/action/magicseteditor-value.o `test -f './src/data/action/value.cpp' || echo '$(srcdir)/'`./src/data/action/value.cpp -./src/gfx/magicseteditor-bezier.obj: ./src/gfx/bezier.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gfx/magicseteditor-bezier.obj -MD -MP -MF ./src/gfx/$(DEPDIR)/magicseteditor-bezier.Tpo -c -o ./src/gfx/magicseteditor-bezier.obj `if test -f './src/gfx/bezier.cpp'; then $(CYGPATH_W) './src/gfx/bezier.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gfx/bezier.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gfx/$(DEPDIR)/magicseteditor-bezier.Tpo ./src/gfx/$(DEPDIR)/magicseteditor-bezier.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gfx/bezier.cpp' object='./src/gfx/magicseteditor-bezier.obj' libtool=no @AMDEPBACKSLASH@ +./src/data/action/magicseteditor-value.obj: ./src/data/action/value.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/action/magicseteditor-value.obj -MD -MP -MF ./src/data/action/$(DEPDIR)/magicseteditor-value.Tpo -c -o ./src/data/action/magicseteditor-value.obj `if test -f './src/data/action/value.cpp'; then $(CYGPATH_W) './src/data/action/value.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/action/value.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/action/$(DEPDIR)/magicseteditor-value.Tpo ./src/data/action/$(DEPDIR)/magicseteditor-value.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/action/value.cpp' object='./src/data/action/magicseteditor-value.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gfx/magicseteditor-bezier.obj `if test -f './src/gfx/bezier.cpp'; then $(CYGPATH_W) './src/gfx/bezier.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gfx/bezier.cpp'; fi` - -./src/gfx/magicseteditor-resample_text.o: ./src/gfx/resample_text.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gfx/magicseteditor-resample_text.o -MD -MP -MF ./src/gfx/$(DEPDIR)/magicseteditor-resample_text.Tpo -c -o ./src/gfx/magicseteditor-resample_text.o `test -f './src/gfx/resample_text.cpp' || echo '$(srcdir)/'`./src/gfx/resample_text.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gfx/$(DEPDIR)/magicseteditor-resample_text.Tpo ./src/gfx/$(DEPDIR)/magicseteditor-resample_text.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gfx/resample_text.cpp' object='./src/gfx/magicseteditor-resample_text.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gfx/magicseteditor-resample_text.o `test -f './src/gfx/resample_text.cpp' || echo '$(srcdir)/'`./src/gfx/resample_text.cpp - -./src/gfx/magicseteditor-resample_text.obj: ./src/gfx/resample_text.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gfx/magicseteditor-resample_text.obj -MD -MP -MF ./src/gfx/$(DEPDIR)/magicseteditor-resample_text.Tpo -c -o ./src/gfx/magicseteditor-resample_text.obj `if test -f './src/gfx/resample_text.cpp'; then $(CYGPATH_W) './src/gfx/resample_text.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gfx/resample_text.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gfx/$(DEPDIR)/magicseteditor-resample_text.Tpo ./src/gfx/$(DEPDIR)/magicseteditor-resample_text.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gfx/resample_text.cpp' object='./src/gfx/magicseteditor-resample_text.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gfx/magicseteditor-resample_text.obj `if test -f './src/gfx/resample_text.cpp'; then $(CYGPATH_W) './src/gfx/resample_text.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gfx/resample_text.cpp'; fi` - -./src/gfx/magicseteditor-resample_image.o: ./src/gfx/resample_image.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gfx/magicseteditor-resample_image.o -MD -MP -MF ./src/gfx/$(DEPDIR)/magicseteditor-resample_image.Tpo -c -o ./src/gfx/magicseteditor-resample_image.o `test -f './src/gfx/resample_image.cpp' || echo '$(srcdir)/'`./src/gfx/resample_image.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gfx/$(DEPDIR)/magicseteditor-resample_image.Tpo ./src/gfx/$(DEPDIR)/magicseteditor-resample_image.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gfx/resample_image.cpp' object='./src/gfx/magicseteditor-resample_image.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gfx/magicseteditor-resample_image.o `test -f './src/gfx/resample_image.cpp' || echo '$(srcdir)/'`./src/gfx/resample_image.cpp - -./src/gfx/magicseteditor-resample_image.obj: ./src/gfx/resample_image.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gfx/magicseteditor-resample_image.obj -MD -MP -MF ./src/gfx/$(DEPDIR)/magicseteditor-resample_image.Tpo -c -o ./src/gfx/magicseteditor-resample_image.obj `if test -f './src/gfx/resample_image.cpp'; then $(CYGPATH_W) './src/gfx/resample_image.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gfx/resample_image.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gfx/$(DEPDIR)/magicseteditor-resample_image.Tpo ./src/gfx/$(DEPDIR)/magicseteditor-resample_image.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gfx/resample_image.cpp' object='./src/gfx/magicseteditor-resample_image.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gfx/magicseteditor-resample_image.obj `if test -f './src/gfx/resample_image.cpp'; then $(CYGPATH_W) './src/gfx/resample_image.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gfx/resample_image.cpp'; fi` - -./src/gfx/magicseteditor-image_effects.o: ./src/gfx/image_effects.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gfx/magicseteditor-image_effects.o -MD -MP -MF ./src/gfx/$(DEPDIR)/magicseteditor-image_effects.Tpo -c -o ./src/gfx/magicseteditor-image_effects.o `test -f './src/gfx/image_effects.cpp' || echo '$(srcdir)/'`./src/gfx/image_effects.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gfx/$(DEPDIR)/magicseteditor-image_effects.Tpo ./src/gfx/$(DEPDIR)/magicseteditor-image_effects.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gfx/image_effects.cpp' object='./src/gfx/magicseteditor-image_effects.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gfx/magicseteditor-image_effects.o `test -f './src/gfx/image_effects.cpp' || echo '$(srcdir)/'`./src/gfx/image_effects.cpp - -./src/gfx/magicseteditor-image_effects.obj: ./src/gfx/image_effects.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gfx/magicseteditor-image_effects.obj -MD -MP -MF ./src/gfx/$(DEPDIR)/magicseteditor-image_effects.Tpo -c -o ./src/gfx/magicseteditor-image_effects.obj `if test -f './src/gfx/image_effects.cpp'; then $(CYGPATH_W) './src/gfx/image_effects.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gfx/image_effects.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gfx/$(DEPDIR)/magicseteditor-image_effects.Tpo ./src/gfx/$(DEPDIR)/magicseteditor-image_effects.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gfx/image_effects.cpp' object='./src/gfx/magicseteditor-image_effects.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gfx/magicseteditor-image_effects.obj `if test -f './src/gfx/image_effects.cpp'; then $(CYGPATH_W) './src/gfx/image_effects.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gfx/image_effects.cpp'; fi` - -./src/gfx/magicseteditor-mask_image.o: ./src/gfx/mask_image.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gfx/magicseteditor-mask_image.o -MD -MP -MF ./src/gfx/$(DEPDIR)/magicseteditor-mask_image.Tpo -c -o ./src/gfx/magicseteditor-mask_image.o `test -f './src/gfx/mask_image.cpp' || echo '$(srcdir)/'`./src/gfx/mask_image.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gfx/$(DEPDIR)/magicseteditor-mask_image.Tpo ./src/gfx/$(DEPDIR)/magicseteditor-mask_image.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gfx/mask_image.cpp' object='./src/gfx/magicseteditor-mask_image.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gfx/magicseteditor-mask_image.o `test -f './src/gfx/mask_image.cpp' || echo '$(srcdir)/'`./src/gfx/mask_image.cpp - -./src/gfx/magicseteditor-mask_image.obj: ./src/gfx/mask_image.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gfx/magicseteditor-mask_image.obj -MD -MP -MF ./src/gfx/$(DEPDIR)/magicseteditor-mask_image.Tpo -c -o ./src/gfx/magicseteditor-mask_image.obj `if test -f './src/gfx/mask_image.cpp'; then $(CYGPATH_W) './src/gfx/mask_image.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gfx/mask_image.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gfx/$(DEPDIR)/magicseteditor-mask_image.Tpo ./src/gfx/$(DEPDIR)/magicseteditor-mask_image.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gfx/mask_image.cpp' object='./src/gfx/magicseteditor-mask_image.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gfx/magicseteditor-mask_image.obj `if test -f './src/gfx/mask_image.cpp'; then $(CYGPATH_W) './src/gfx/mask_image.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gfx/mask_image.cpp'; fi` - -./src/gfx/magicseteditor-blend_image.o: ./src/gfx/blend_image.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gfx/magicseteditor-blend_image.o -MD -MP -MF ./src/gfx/$(DEPDIR)/magicseteditor-blend_image.Tpo -c -o ./src/gfx/magicseteditor-blend_image.o `test -f './src/gfx/blend_image.cpp' || echo '$(srcdir)/'`./src/gfx/blend_image.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gfx/$(DEPDIR)/magicseteditor-blend_image.Tpo ./src/gfx/$(DEPDIR)/magicseteditor-blend_image.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gfx/blend_image.cpp' object='./src/gfx/magicseteditor-blend_image.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gfx/magicseteditor-blend_image.o `test -f './src/gfx/blend_image.cpp' || echo '$(srcdir)/'`./src/gfx/blend_image.cpp - -./src/gfx/magicseteditor-blend_image.obj: ./src/gfx/blend_image.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gfx/magicseteditor-blend_image.obj -MD -MP -MF ./src/gfx/$(DEPDIR)/magicseteditor-blend_image.Tpo -c -o ./src/gfx/magicseteditor-blend_image.obj `if test -f './src/gfx/blend_image.cpp'; then $(CYGPATH_W) './src/gfx/blend_image.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gfx/blend_image.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gfx/$(DEPDIR)/magicseteditor-blend_image.Tpo ./src/gfx/$(DEPDIR)/magicseteditor-blend_image.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gfx/blend_image.cpp' object='./src/gfx/magicseteditor-blend_image.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gfx/magicseteditor-blend_image.obj `if test -f './src/gfx/blend_image.cpp'; then $(CYGPATH_W) './src/gfx/blend_image.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gfx/blend_image.cpp'; fi` - -./src/script/magicseteditor-value.o: ./src/script/value.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/script/magicseteditor-value.o -MD -MP -MF ./src/script/$(DEPDIR)/magicseteditor-value.Tpo -c -o ./src/script/magicseteditor-value.o `test -f './src/script/value.cpp' || echo '$(srcdir)/'`./src/script/value.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/script/$(DEPDIR)/magicseteditor-value.Tpo ./src/script/$(DEPDIR)/magicseteditor-value.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/script/value.cpp' object='./src/script/magicseteditor-value.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/script/magicseteditor-value.o `test -f './src/script/value.cpp' || echo '$(srcdir)/'`./src/script/value.cpp - -./src/script/magicseteditor-value.obj: ./src/script/value.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/script/magicseteditor-value.obj -MD -MP -MF ./src/script/$(DEPDIR)/magicseteditor-value.Tpo -c -o ./src/script/magicseteditor-value.obj `if test -f './src/script/value.cpp'; then $(CYGPATH_W) './src/script/value.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/script/value.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/script/$(DEPDIR)/magicseteditor-value.Tpo ./src/script/$(DEPDIR)/magicseteditor-value.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/script/value.cpp' object='./src/script/magicseteditor-value.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/script/magicseteditor-value.obj `if test -f './src/script/value.cpp'; then $(CYGPATH_W) './src/script/value.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/script/value.cpp'; fi` - -./src/script/magicseteditor-script_manager.o: ./src/script/script_manager.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/script/magicseteditor-script_manager.o -MD -MP -MF ./src/script/$(DEPDIR)/magicseteditor-script_manager.Tpo -c -o ./src/script/magicseteditor-script_manager.o `test -f './src/script/script_manager.cpp' || echo '$(srcdir)/'`./src/script/script_manager.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/script/$(DEPDIR)/magicseteditor-script_manager.Tpo ./src/script/$(DEPDIR)/magicseteditor-script_manager.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/script/script_manager.cpp' object='./src/script/magicseteditor-script_manager.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/script/magicseteditor-script_manager.o `test -f './src/script/script_manager.cpp' || echo '$(srcdir)/'`./src/script/script_manager.cpp - -./src/script/magicseteditor-script_manager.obj: ./src/script/script_manager.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/script/magicseteditor-script_manager.obj -MD -MP -MF ./src/script/$(DEPDIR)/magicseteditor-script_manager.Tpo -c -o ./src/script/magicseteditor-script_manager.obj `if test -f './src/script/script_manager.cpp'; then $(CYGPATH_W) './src/script/script_manager.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/script/script_manager.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/script/$(DEPDIR)/magicseteditor-script_manager.Tpo ./src/script/$(DEPDIR)/magicseteditor-script_manager.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/script/script_manager.cpp' object='./src/script/magicseteditor-script_manager.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/script/magicseteditor-script_manager.obj `if test -f './src/script/script_manager.cpp'; then $(CYGPATH_W) './src/script/script_manager.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/script/script_manager.cpp'; fi` - -./src/script/functions/magicseteditor-basic.o: ./src/script/functions/basic.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/script/functions/magicseteditor-basic.o -MD -MP -MF ./src/script/functions/$(DEPDIR)/magicseteditor-basic.Tpo -c -o ./src/script/functions/magicseteditor-basic.o `test -f './src/script/functions/basic.cpp' || echo '$(srcdir)/'`./src/script/functions/basic.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/script/functions/$(DEPDIR)/magicseteditor-basic.Tpo ./src/script/functions/$(DEPDIR)/magicseteditor-basic.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/script/functions/basic.cpp' object='./src/script/functions/magicseteditor-basic.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/script/functions/magicseteditor-basic.o `test -f './src/script/functions/basic.cpp' || echo '$(srcdir)/'`./src/script/functions/basic.cpp - -./src/script/functions/magicseteditor-basic.obj: ./src/script/functions/basic.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/script/functions/magicseteditor-basic.obj -MD -MP -MF ./src/script/functions/$(DEPDIR)/magicseteditor-basic.Tpo -c -o ./src/script/functions/magicseteditor-basic.obj `if test -f './src/script/functions/basic.cpp'; then $(CYGPATH_W) './src/script/functions/basic.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/script/functions/basic.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/script/functions/$(DEPDIR)/magicseteditor-basic.Tpo ./src/script/functions/$(DEPDIR)/magicseteditor-basic.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/script/functions/basic.cpp' object='./src/script/functions/magicseteditor-basic.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/script/functions/magicseteditor-basic.obj `if test -f './src/script/functions/basic.cpp'; then $(CYGPATH_W) './src/script/functions/basic.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/script/functions/basic.cpp'; fi` - -./src/script/functions/magicseteditor-regex.o: ./src/script/functions/regex.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/script/functions/magicseteditor-regex.o -MD -MP -MF ./src/script/functions/$(DEPDIR)/magicseteditor-regex.Tpo -c -o ./src/script/functions/magicseteditor-regex.o `test -f './src/script/functions/regex.cpp' || echo '$(srcdir)/'`./src/script/functions/regex.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/script/functions/$(DEPDIR)/magicseteditor-regex.Tpo ./src/script/functions/$(DEPDIR)/magicseteditor-regex.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/script/functions/regex.cpp' object='./src/script/functions/magicseteditor-regex.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/script/functions/magicseteditor-regex.o `test -f './src/script/functions/regex.cpp' || echo '$(srcdir)/'`./src/script/functions/regex.cpp - -./src/script/functions/magicseteditor-regex.obj: ./src/script/functions/regex.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/script/functions/magicseteditor-regex.obj -MD -MP -MF ./src/script/functions/$(DEPDIR)/magicseteditor-regex.Tpo -c -o ./src/script/functions/magicseteditor-regex.obj `if test -f './src/script/functions/regex.cpp'; then $(CYGPATH_W) './src/script/functions/regex.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/script/functions/regex.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/script/functions/$(DEPDIR)/magicseteditor-regex.Tpo ./src/script/functions/$(DEPDIR)/magicseteditor-regex.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/script/functions/regex.cpp' object='./src/script/functions/magicseteditor-regex.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/script/functions/magicseteditor-regex.obj `if test -f './src/script/functions/regex.cpp'; then $(CYGPATH_W) './src/script/functions/regex.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/script/functions/regex.cpp'; fi` - -./src/script/functions/magicseteditor-editor.o: ./src/script/functions/editor.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/script/functions/magicseteditor-editor.o -MD -MP -MF ./src/script/functions/$(DEPDIR)/magicseteditor-editor.Tpo -c -o ./src/script/functions/magicseteditor-editor.o `test -f './src/script/functions/editor.cpp' || echo '$(srcdir)/'`./src/script/functions/editor.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/script/functions/$(DEPDIR)/magicseteditor-editor.Tpo ./src/script/functions/$(DEPDIR)/magicseteditor-editor.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/script/functions/editor.cpp' object='./src/script/functions/magicseteditor-editor.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/script/functions/magicseteditor-editor.o `test -f './src/script/functions/editor.cpp' || echo '$(srcdir)/'`./src/script/functions/editor.cpp - -./src/script/functions/magicseteditor-editor.obj: ./src/script/functions/editor.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/script/functions/magicseteditor-editor.obj -MD -MP -MF ./src/script/functions/$(DEPDIR)/magicseteditor-editor.Tpo -c -o ./src/script/functions/magicseteditor-editor.obj `if test -f './src/script/functions/editor.cpp'; then $(CYGPATH_W) './src/script/functions/editor.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/script/functions/editor.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/script/functions/$(DEPDIR)/magicseteditor-editor.Tpo ./src/script/functions/$(DEPDIR)/magicseteditor-editor.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/script/functions/editor.cpp' object='./src/script/functions/magicseteditor-editor.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/script/functions/magicseteditor-editor.obj `if test -f './src/script/functions/editor.cpp'; then $(CYGPATH_W) './src/script/functions/editor.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/script/functions/editor.cpp'; fi` - -./src/script/functions/magicseteditor-construction.o: ./src/script/functions/construction.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/script/functions/magicseteditor-construction.o -MD -MP -MF ./src/script/functions/$(DEPDIR)/magicseteditor-construction.Tpo -c -o ./src/script/functions/magicseteditor-construction.o `test -f './src/script/functions/construction.cpp' || echo '$(srcdir)/'`./src/script/functions/construction.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/script/functions/$(DEPDIR)/magicseteditor-construction.Tpo ./src/script/functions/$(DEPDIR)/magicseteditor-construction.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/script/functions/construction.cpp' object='./src/script/functions/magicseteditor-construction.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/script/functions/magicseteditor-construction.o `test -f './src/script/functions/construction.cpp' || echo '$(srcdir)/'`./src/script/functions/construction.cpp - -./src/script/functions/magicseteditor-construction.obj: ./src/script/functions/construction.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/script/functions/magicseteditor-construction.obj -MD -MP -MF ./src/script/functions/$(DEPDIR)/magicseteditor-construction.Tpo -c -o ./src/script/functions/magicseteditor-construction.obj `if test -f './src/script/functions/construction.cpp'; then $(CYGPATH_W) './src/script/functions/construction.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/script/functions/construction.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/script/functions/$(DEPDIR)/magicseteditor-construction.Tpo ./src/script/functions/$(DEPDIR)/magicseteditor-construction.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/script/functions/construction.cpp' object='./src/script/functions/magicseteditor-construction.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/script/functions/magicseteditor-construction.obj `if test -f './src/script/functions/construction.cpp'; then $(CYGPATH_W) './src/script/functions/construction.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/script/functions/construction.cpp'; fi` - -./src/script/functions/magicseteditor-spelling.o: ./src/script/functions/spelling.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/script/functions/magicseteditor-spelling.o -MD -MP -MF ./src/script/functions/$(DEPDIR)/magicseteditor-spelling.Tpo -c -o ./src/script/functions/magicseteditor-spelling.o `test -f './src/script/functions/spelling.cpp' || echo '$(srcdir)/'`./src/script/functions/spelling.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/script/functions/$(DEPDIR)/magicseteditor-spelling.Tpo ./src/script/functions/$(DEPDIR)/magicseteditor-spelling.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/script/functions/spelling.cpp' object='./src/script/functions/magicseteditor-spelling.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/script/functions/magicseteditor-spelling.o `test -f './src/script/functions/spelling.cpp' || echo '$(srcdir)/'`./src/script/functions/spelling.cpp - -./src/script/functions/magicseteditor-spelling.obj: ./src/script/functions/spelling.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/script/functions/magicseteditor-spelling.obj -MD -MP -MF ./src/script/functions/$(DEPDIR)/magicseteditor-spelling.Tpo -c -o ./src/script/functions/magicseteditor-spelling.obj `if test -f './src/script/functions/spelling.cpp'; then $(CYGPATH_W) './src/script/functions/spelling.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/script/functions/spelling.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/script/functions/$(DEPDIR)/magicseteditor-spelling.Tpo ./src/script/functions/$(DEPDIR)/magicseteditor-spelling.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/script/functions/spelling.cpp' object='./src/script/functions/magicseteditor-spelling.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/script/functions/magicseteditor-spelling.obj `if test -f './src/script/functions/spelling.cpp'; then $(CYGPATH_W) './src/script/functions/spelling.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/script/functions/spelling.cpp'; fi` - -./src/script/functions/magicseteditor-image.o: ./src/script/functions/image.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/script/functions/magicseteditor-image.o -MD -MP -MF ./src/script/functions/$(DEPDIR)/magicseteditor-image.Tpo -c -o ./src/script/functions/magicseteditor-image.o `test -f './src/script/functions/image.cpp' || echo '$(srcdir)/'`./src/script/functions/image.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/script/functions/$(DEPDIR)/magicseteditor-image.Tpo ./src/script/functions/$(DEPDIR)/magicseteditor-image.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/script/functions/image.cpp' object='./src/script/functions/magicseteditor-image.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/script/functions/magicseteditor-image.o `test -f './src/script/functions/image.cpp' || echo '$(srcdir)/'`./src/script/functions/image.cpp - -./src/script/functions/magicseteditor-image.obj: ./src/script/functions/image.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/script/functions/magicseteditor-image.obj -MD -MP -MF ./src/script/functions/$(DEPDIR)/magicseteditor-image.Tpo -c -o ./src/script/functions/magicseteditor-image.obj `if test -f './src/script/functions/image.cpp'; then $(CYGPATH_W) './src/script/functions/image.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/script/functions/image.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/script/functions/$(DEPDIR)/magicseteditor-image.Tpo ./src/script/functions/$(DEPDIR)/magicseteditor-image.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/script/functions/image.cpp' object='./src/script/functions/magicseteditor-image.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/script/functions/magicseteditor-image.obj `if test -f './src/script/functions/image.cpp'; then $(CYGPATH_W) './src/script/functions/image.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/script/functions/image.cpp'; fi` - -./src/script/functions/magicseteditor-english.o: ./src/script/functions/english.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/script/functions/magicseteditor-english.o -MD -MP -MF ./src/script/functions/$(DEPDIR)/magicseteditor-english.Tpo -c -o ./src/script/functions/magicseteditor-english.o `test -f './src/script/functions/english.cpp' || echo '$(srcdir)/'`./src/script/functions/english.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/script/functions/$(DEPDIR)/magicseteditor-english.Tpo ./src/script/functions/$(DEPDIR)/magicseteditor-english.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/script/functions/english.cpp' object='./src/script/functions/magicseteditor-english.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/script/functions/magicseteditor-english.o `test -f './src/script/functions/english.cpp' || echo '$(srcdir)/'`./src/script/functions/english.cpp - -./src/script/functions/magicseteditor-english.obj: ./src/script/functions/english.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/script/functions/magicseteditor-english.obj -MD -MP -MF ./src/script/functions/$(DEPDIR)/magicseteditor-english.Tpo -c -o ./src/script/functions/magicseteditor-english.obj `if test -f './src/script/functions/english.cpp'; then $(CYGPATH_W) './src/script/functions/english.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/script/functions/english.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/script/functions/$(DEPDIR)/magicseteditor-english.Tpo ./src/script/functions/$(DEPDIR)/magicseteditor-english.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/script/functions/english.cpp' object='./src/script/functions/magicseteditor-english.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/script/functions/magicseteditor-english.obj `if test -f './src/script/functions/english.cpp'; then $(CYGPATH_W) './src/script/functions/english.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/script/functions/english.cpp'; fi` - -./src/script/functions/magicseteditor-export.o: ./src/script/functions/export.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/script/functions/magicseteditor-export.o -MD -MP -MF ./src/script/functions/$(DEPDIR)/magicseteditor-export.Tpo -c -o ./src/script/functions/magicseteditor-export.o `test -f './src/script/functions/export.cpp' || echo '$(srcdir)/'`./src/script/functions/export.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/script/functions/$(DEPDIR)/magicseteditor-export.Tpo ./src/script/functions/$(DEPDIR)/magicseteditor-export.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/script/functions/export.cpp' object='./src/script/functions/magicseteditor-export.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/script/functions/magicseteditor-export.o `test -f './src/script/functions/export.cpp' || echo '$(srcdir)/'`./src/script/functions/export.cpp - -./src/script/functions/magicseteditor-export.obj: ./src/script/functions/export.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/script/functions/magicseteditor-export.obj -MD -MP -MF ./src/script/functions/$(DEPDIR)/magicseteditor-export.Tpo -c -o ./src/script/functions/magicseteditor-export.obj `if test -f './src/script/functions/export.cpp'; then $(CYGPATH_W) './src/script/functions/export.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/script/functions/export.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/script/functions/$(DEPDIR)/magicseteditor-export.Tpo ./src/script/functions/$(DEPDIR)/magicseteditor-export.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/script/functions/export.cpp' object='./src/script/functions/magicseteditor-export.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/script/functions/magicseteditor-export.obj `if test -f './src/script/functions/export.cpp'; then $(CYGPATH_W) './src/script/functions/export.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/script/functions/export.cpp'; fi` - -./src/script/magicseteditor-dependency.o: ./src/script/dependency.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/script/magicseteditor-dependency.o -MD -MP -MF ./src/script/$(DEPDIR)/magicseteditor-dependency.Tpo -c -o ./src/script/magicseteditor-dependency.o `test -f './src/script/dependency.cpp' || echo '$(srcdir)/'`./src/script/dependency.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/script/$(DEPDIR)/magicseteditor-dependency.Tpo ./src/script/$(DEPDIR)/magicseteditor-dependency.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/script/dependency.cpp' object='./src/script/magicseteditor-dependency.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/script/magicseteditor-dependency.o `test -f './src/script/dependency.cpp' || echo '$(srcdir)/'`./src/script/dependency.cpp - -./src/script/magicseteditor-dependency.obj: ./src/script/dependency.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/script/magicseteditor-dependency.obj -MD -MP -MF ./src/script/$(DEPDIR)/magicseteditor-dependency.Tpo -c -o ./src/script/magicseteditor-dependency.obj `if test -f './src/script/dependency.cpp'; then $(CYGPATH_W) './src/script/dependency.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/script/dependency.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/script/$(DEPDIR)/magicseteditor-dependency.Tpo ./src/script/$(DEPDIR)/magicseteditor-dependency.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/script/dependency.cpp' object='./src/script/magicseteditor-dependency.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/script/magicseteditor-dependency.obj `if test -f './src/script/dependency.cpp'; then $(CYGPATH_W) './src/script/dependency.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/script/dependency.cpp'; fi` - -./src/script/magicseteditor-parser.o: ./src/script/parser.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/script/magicseteditor-parser.o -MD -MP -MF ./src/script/$(DEPDIR)/magicseteditor-parser.Tpo -c -o ./src/script/magicseteditor-parser.o `test -f './src/script/parser.cpp' || echo '$(srcdir)/'`./src/script/parser.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/script/$(DEPDIR)/magicseteditor-parser.Tpo ./src/script/$(DEPDIR)/magicseteditor-parser.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/script/parser.cpp' object='./src/script/magicseteditor-parser.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/script/magicseteditor-parser.o `test -f './src/script/parser.cpp' || echo '$(srcdir)/'`./src/script/parser.cpp - -./src/script/magicseteditor-parser.obj: ./src/script/parser.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/script/magicseteditor-parser.obj -MD -MP -MF ./src/script/$(DEPDIR)/magicseteditor-parser.Tpo -c -o ./src/script/magicseteditor-parser.obj `if test -f './src/script/parser.cpp'; then $(CYGPATH_W) './src/script/parser.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/script/parser.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/script/$(DEPDIR)/magicseteditor-parser.Tpo ./src/script/$(DEPDIR)/magicseteditor-parser.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/script/parser.cpp' object='./src/script/magicseteditor-parser.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/script/magicseteditor-parser.obj `if test -f './src/script/parser.cpp'; then $(CYGPATH_W) './src/script/parser.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/script/parser.cpp'; fi` - -./src/script/magicseteditor-context.o: ./src/script/context.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/script/magicseteditor-context.o -MD -MP -MF ./src/script/$(DEPDIR)/magicseteditor-context.Tpo -c -o ./src/script/magicseteditor-context.o `test -f './src/script/context.cpp' || echo '$(srcdir)/'`./src/script/context.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/script/$(DEPDIR)/magicseteditor-context.Tpo ./src/script/$(DEPDIR)/magicseteditor-context.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/script/context.cpp' object='./src/script/magicseteditor-context.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/script/magicseteditor-context.o `test -f './src/script/context.cpp' || echo '$(srcdir)/'`./src/script/context.cpp - -./src/script/magicseteditor-context.obj: ./src/script/context.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/script/magicseteditor-context.obj -MD -MP -MF ./src/script/$(DEPDIR)/magicseteditor-context.Tpo -c -o ./src/script/magicseteditor-context.obj `if test -f './src/script/context.cpp'; then $(CYGPATH_W) './src/script/context.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/script/context.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/script/$(DEPDIR)/magicseteditor-context.Tpo ./src/script/$(DEPDIR)/magicseteditor-context.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/script/context.cpp' object='./src/script/magicseteditor-context.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/script/magicseteditor-context.obj `if test -f './src/script/context.cpp'; then $(CYGPATH_W) './src/script/context.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/script/context.cpp'; fi` - -./src/script/magicseteditor-image.o: ./src/script/image.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/script/magicseteditor-image.o -MD -MP -MF ./src/script/$(DEPDIR)/magicseteditor-image.Tpo -c -o ./src/script/magicseteditor-image.o `test -f './src/script/image.cpp' || echo '$(srcdir)/'`./src/script/image.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/script/$(DEPDIR)/magicseteditor-image.Tpo ./src/script/$(DEPDIR)/magicseteditor-image.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/script/image.cpp' object='./src/script/magicseteditor-image.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/script/magicseteditor-image.o `test -f './src/script/image.cpp' || echo '$(srcdir)/'`./src/script/image.cpp - -./src/script/magicseteditor-image.obj: ./src/script/image.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/script/magicseteditor-image.obj -MD -MP -MF ./src/script/$(DEPDIR)/magicseteditor-image.Tpo -c -o ./src/script/magicseteditor-image.obj `if test -f './src/script/image.cpp'; then $(CYGPATH_W) './src/script/image.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/script/image.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/script/$(DEPDIR)/magicseteditor-image.Tpo ./src/script/$(DEPDIR)/magicseteditor-image.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/script/image.cpp' object='./src/script/magicseteditor-image.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/script/magicseteditor-image.obj `if test -f './src/script/image.cpp'; then $(CYGPATH_W) './src/script/image.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/script/image.cpp'; fi` - -./src/script/magicseteditor-profiler.o: ./src/script/profiler.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/script/magicseteditor-profiler.o -MD -MP -MF ./src/script/$(DEPDIR)/magicseteditor-profiler.Tpo -c -o ./src/script/magicseteditor-profiler.o `test -f './src/script/profiler.cpp' || echo '$(srcdir)/'`./src/script/profiler.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/script/$(DEPDIR)/magicseteditor-profiler.Tpo ./src/script/$(DEPDIR)/magicseteditor-profiler.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/script/profiler.cpp' object='./src/script/magicseteditor-profiler.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/script/magicseteditor-profiler.o `test -f './src/script/profiler.cpp' || echo '$(srcdir)/'`./src/script/profiler.cpp - -./src/script/magicseteditor-profiler.obj: ./src/script/profiler.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/script/magicseteditor-profiler.obj -MD -MP -MF ./src/script/$(DEPDIR)/magicseteditor-profiler.Tpo -c -o ./src/script/magicseteditor-profiler.obj `if test -f './src/script/profiler.cpp'; then $(CYGPATH_W) './src/script/profiler.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/script/profiler.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/script/$(DEPDIR)/magicseteditor-profiler.Tpo ./src/script/$(DEPDIR)/magicseteditor-profiler.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/script/profiler.cpp' object='./src/script/magicseteditor-profiler.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/script/magicseteditor-profiler.obj `if test -f './src/script/profiler.cpp'; then $(CYGPATH_W) './src/script/profiler.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/script/profiler.cpp'; fi` - -./src/script/magicseteditor-scriptable.o: ./src/script/scriptable.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/script/magicseteditor-scriptable.o -MD -MP -MF ./src/script/$(DEPDIR)/magicseteditor-scriptable.Tpo -c -o ./src/script/magicseteditor-scriptable.o `test -f './src/script/scriptable.cpp' || echo '$(srcdir)/'`./src/script/scriptable.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/script/$(DEPDIR)/magicseteditor-scriptable.Tpo ./src/script/$(DEPDIR)/magicseteditor-scriptable.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/script/scriptable.cpp' object='./src/script/magicseteditor-scriptable.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/script/magicseteditor-scriptable.o `test -f './src/script/scriptable.cpp' || echo '$(srcdir)/'`./src/script/scriptable.cpp - -./src/script/magicseteditor-scriptable.obj: ./src/script/scriptable.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/script/magicseteditor-scriptable.obj -MD -MP -MF ./src/script/$(DEPDIR)/magicseteditor-scriptable.Tpo -c -o ./src/script/magicseteditor-scriptable.obj `if test -f './src/script/scriptable.cpp'; then $(CYGPATH_W) './src/script/scriptable.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/script/scriptable.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/script/$(DEPDIR)/magicseteditor-scriptable.Tpo ./src/script/$(DEPDIR)/magicseteditor-scriptable.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/script/scriptable.cpp' object='./src/script/magicseteditor-scriptable.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/script/magicseteditor-scriptable.obj `if test -f './src/script/scriptable.cpp'; then $(CYGPATH_W) './src/script/scriptable.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/script/scriptable.cpp'; fi` - -./src/script/magicseteditor-script.o: ./src/script/script.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/script/magicseteditor-script.o -MD -MP -MF ./src/script/$(DEPDIR)/magicseteditor-script.Tpo -c -o ./src/script/magicseteditor-script.o `test -f './src/script/script.cpp' || echo '$(srcdir)/'`./src/script/script.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/script/$(DEPDIR)/magicseteditor-script.Tpo ./src/script/$(DEPDIR)/magicseteditor-script.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/script/script.cpp' object='./src/script/magicseteditor-script.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/script/magicseteditor-script.o `test -f './src/script/script.cpp' || echo '$(srcdir)/'`./src/script/script.cpp - -./src/script/magicseteditor-script.obj: ./src/script/script.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/script/magicseteditor-script.obj -MD -MP -MF ./src/script/$(DEPDIR)/magicseteditor-script.Tpo -c -o ./src/script/magicseteditor-script.obj `if test -f './src/script/script.cpp'; then $(CYGPATH_W) './src/script/script.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/script/script.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/script/$(DEPDIR)/magicseteditor-script.Tpo ./src/script/$(DEPDIR)/magicseteditor-script.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/script/script.cpp' object='./src/script/magicseteditor-script.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/script/magicseteditor-script.obj `if test -f './src/script/script.cpp'; then $(CYGPATH_W) './src/script/script.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/script/script.cpp'; fi` - -./src/gui/magicseteditor-preferences_window.o: ./src/gui/preferences_window.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-preferences_window.o -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-preferences_window.Tpo -c -o ./src/gui/magicseteditor-preferences_window.o `test -f './src/gui/preferences_window.cpp' || echo '$(srcdir)/'`./src/gui/preferences_window.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-preferences_window.Tpo ./src/gui/$(DEPDIR)/magicseteditor-preferences_window.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/preferences_window.cpp' object='./src/gui/magicseteditor-preferences_window.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-preferences_window.o `test -f './src/gui/preferences_window.cpp' || echo '$(srcdir)/'`./src/gui/preferences_window.cpp - -./src/gui/magicseteditor-preferences_window.obj: ./src/gui/preferences_window.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-preferences_window.obj -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-preferences_window.Tpo -c -o ./src/gui/magicseteditor-preferences_window.obj `if test -f './src/gui/preferences_window.cpp'; then $(CYGPATH_W) './src/gui/preferences_window.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/preferences_window.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-preferences_window.Tpo ./src/gui/$(DEPDIR)/magicseteditor-preferences_window.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/preferences_window.cpp' object='./src/gui/magicseteditor-preferences_window.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-preferences_window.obj `if test -f './src/gui/preferences_window.cpp'; then $(CYGPATH_W) './src/gui/preferences_window.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/preferences_window.cpp'; fi` - -./src/gui/magicseteditor-profiler_window.o: ./src/gui/profiler_window.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-profiler_window.o -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-profiler_window.Tpo -c -o ./src/gui/magicseteditor-profiler_window.o `test -f './src/gui/profiler_window.cpp' || echo '$(srcdir)/'`./src/gui/profiler_window.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-profiler_window.Tpo ./src/gui/$(DEPDIR)/magicseteditor-profiler_window.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/profiler_window.cpp' object='./src/gui/magicseteditor-profiler_window.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-profiler_window.o `test -f './src/gui/profiler_window.cpp' || echo '$(srcdir)/'`./src/gui/profiler_window.cpp - -./src/gui/magicseteditor-profiler_window.obj: ./src/gui/profiler_window.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-profiler_window.obj -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-profiler_window.Tpo -c -o ./src/gui/magicseteditor-profiler_window.obj `if test -f './src/gui/profiler_window.cpp'; then $(CYGPATH_W) './src/gui/profiler_window.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/profiler_window.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-profiler_window.Tpo ./src/gui/$(DEPDIR)/magicseteditor-profiler_window.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/profiler_window.cpp' object='./src/gui/magicseteditor-profiler_window.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-profiler_window.obj `if test -f './src/gui/profiler_window.cpp'; then $(CYGPATH_W) './src/gui/profiler_window.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/profiler_window.cpp'; fi` - -./src/gui/symbol/magicseteditor-basic_shape_editor.o: ./src/gui/symbol/basic_shape_editor.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/symbol/magicseteditor-basic_shape_editor.o -MD -MP -MF ./src/gui/symbol/$(DEPDIR)/magicseteditor-basic_shape_editor.Tpo -c -o ./src/gui/symbol/magicseteditor-basic_shape_editor.o `test -f './src/gui/symbol/basic_shape_editor.cpp' || echo '$(srcdir)/'`./src/gui/symbol/basic_shape_editor.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/symbol/$(DEPDIR)/magicseteditor-basic_shape_editor.Tpo ./src/gui/symbol/$(DEPDIR)/magicseteditor-basic_shape_editor.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/symbol/basic_shape_editor.cpp' object='./src/gui/symbol/magicseteditor-basic_shape_editor.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/symbol/magicseteditor-basic_shape_editor.o `test -f './src/gui/symbol/basic_shape_editor.cpp' || echo '$(srcdir)/'`./src/gui/symbol/basic_shape_editor.cpp - -./src/gui/symbol/magicseteditor-basic_shape_editor.obj: ./src/gui/symbol/basic_shape_editor.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/symbol/magicseteditor-basic_shape_editor.obj -MD -MP -MF ./src/gui/symbol/$(DEPDIR)/magicseteditor-basic_shape_editor.Tpo -c -o ./src/gui/symbol/magicseteditor-basic_shape_editor.obj `if test -f './src/gui/symbol/basic_shape_editor.cpp'; then $(CYGPATH_W) './src/gui/symbol/basic_shape_editor.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/symbol/basic_shape_editor.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/symbol/$(DEPDIR)/magicseteditor-basic_shape_editor.Tpo ./src/gui/symbol/$(DEPDIR)/magicseteditor-basic_shape_editor.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/symbol/basic_shape_editor.cpp' object='./src/gui/symbol/magicseteditor-basic_shape_editor.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/symbol/magicseteditor-basic_shape_editor.obj `if test -f './src/gui/symbol/basic_shape_editor.cpp'; then $(CYGPATH_W) './src/gui/symbol/basic_shape_editor.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/symbol/basic_shape_editor.cpp'; fi` - -./src/gui/symbol/magicseteditor-point_editor.o: ./src/gui/symbol/point_editor.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/symbol/magicseteditor-point_editor.o -MD -MP -MF ./src/gui/symbol/$(DEPDIR)/magicseteditor-point_editor.Tpo -c -o ./src/gui/symbol/magicseteditor-point_editor.o `test -f './src/gui/symbol/point_editor.cpp' || echo '$(srcdir)/'`./src/gui/symbol/point_editor.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/symbol/$(DEPDIR)/magicseteditor-point_editor.Tpo ./src/gui/symbol/$(DEPDIR)/magicseteditor-point_editor.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/symbol/point_editor.cpp' object='./src/gui/symbol/magicseteditor-point_editor.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/symbol/magicseteditor-point_editor.o `test -f './src/gui/symbol/point_editor.cpp' || echo '$(srcdir)/'`./src/gui/symbol/point_editor.cpp - -./src/gui/symbol/magicseteditor-point_editor.obj: ./src/gui/symbol/point_editor.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/symbol/magicseteditor-point_editor.obj -MD -MP -MF ./src/gui/symbol/$(DEPDIR)/magicseteditor-point_editor.Tpo -c -o ./src/gui/symbol/magicseteditor-point_editor.obj `if test -f './src/gui/symbol/point_editor.cpp'; then $(CYGPATH_W) './src/gui/symbol/point_editor.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/symbol/point_editor.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/symbol/$(DEPDIR)/magicseteditor-point_editor.Tpo ./src/gui/symbol/$(DEPDIR)/magicseteditor-point_editor.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/symbol/point_editor.cpp' object='./src/gui/symbol/magicseteditor-point_editor.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/symbol/magicseteditor-point_editor.obj `if test -f './src/gui/symbol/point_editor.cpp'; then $(CYGPATH_W) './src/gui/symbol/point_editor.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/symbol/point_editor.cpp'; fi` - -./src/gui/symbol/magicseteditor-part_list.o: ./src/gui/symbol/part_list.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/symbol/magicseteditor-part_list.o -MD -MP -MF ./src/gui/symbol/$(DEPDIR)/magicseteditor-part_list.Tpo -c -o ./src/gui/symbol/magicseteditor-part_list.o `test -f './src/gui/symbol/part_list.cpp' || echo '$(srcdir)/'`./src/gui/symbol/part_list.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/symbol/$(DEPDIR)/magicseteditor-part_list.Tpo ./src/gui/symbol/$(DEPDIR)/magicseteditor-part_list.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/symbol/part_list.cpp' object='./src/gui/symbol/magicseteditor-part_list.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/symbol/magicseteditor-part_list.o `test -f './src/gui/symbol/part_list.cpp' || echo '$(srcdir)/'`./src/gui/symbol/part_list.cpp - -./src/gui/symbol/magicseteditor-part_list.obj: ./src/gui/symbol/part_list.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/symbol/magicseteditor-part_list.obj -MD -MP -MF ./src/gui/symbol/$(DEPDIR)/magicseteditor-part_list.Tpo -c -o ./src/gui/symbol/magicseteditor-part_list.obj `if test -f './src/gui/symbol/part_list.cpp'; then $(CYGPATH_W) './src/gui/symbol/part_list.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/symbol/part_list.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/symbol/$(DEPDIR)/magicseteditor-part_list.Tpo ./src/gui/symbol/$(DEPDIR)/magicseteditor-part_list.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/symbol/part_list.cpp' object='./src/gui/symbol/magicseteditor-part_list.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/symbol/magicseteditor-part_list.obj `if test -f './src/gui/symbol/part_list.cpp'; then $(CYGPATH_W) './src/gui/symbol/part_list.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/symbol/part_list.cpp'; fi` - -./src/gui/symbol/magicseteditor-symmetry_editor.o: ./src/gui/symbol/symmetry_editor.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/symbol/magicseteditor-symmetry_editor.o -MD -MP -MF ./src/gui/symbol/$(DEPDIR)/magicseteditor-symmetry_editor.Tpo -c -o ./src/gui/symbol/magicseteditor-symmetry_editor.o `test -f './src/gui/symbol/symmetry_editor.cpp' || echo '$(srcdir)/'`./src/gui/symbol/symmetry_editor.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/symbol/$(DEPDIR)/magicseteditor-symmetry_editor.Tpo ./src/gui/symbol/$(DEPDIR)/magicseteditor-symmetry_editor.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/symbol/symmetry_editor.cpp' object='./src/gui/symbol/magicseteditor-symmetry_editor.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/symbol/magicseteditor-symmetry_editor.o `test -f './src/gui/symbol/symmetry_editor.cpp' || echo '$(srcdir)/'`./src/gui/symbol/symmetry_editor.cpp - -./src/gui/symbol/magicseteditor-symmetry_editor.obj: ./src/gui/symbol/symmetry_editor.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/symbol/magicseteditor-symmetry_editor.obj -MD -MP -MF ./src/gui/symbol/$(DEPDIR)/magicseteditor-symmetry_editor.Tpo -c -o ./src/gui/symbol/magicseteditor-symmetry_editor.obj `if test -f './src/gui/symbol/symmetry_editor.cpp'; then $(CYGPATH_W) './src/gui/symbol/symmetry_editor.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/symbol/symmetry_editor.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/symbol/$(DEPDIR)/magicseteditor-symmetry_editor.Tpo ./src/gui/symbol/$(DEPDIR)/magicseteditor-symmetry_editor.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/symbol/symmetry_editor.cpp' object='./src/gui/symbol/magicseteditor-symmetry_editor.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/symbol/magicseteditor-symmetry_editor.obj `if test -f './src/gui/symbol/symmetry_editor.cpp'; then $(CYGPATH_W) './src/gui/symbol/symmetry_editor.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/symbol/symmetry_editor.cpp'; fi` - -./src/gui/symbol/magicseteditor-selection.o: ./src/gui/symbol/selection.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/symbol/magicseteditor-selection.o -MD -MP -MF ./src/gui/symbol/$(DEPDIR)/magicseteditor-selection.Tpo -c -o ./src/gui/symbol/magicseteditor-selection.o `test -f './src/gui/symbol/selection.cpp' || echo '$(srcdir)/'`./src/gui/symbol/selection.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/symbol/$(DEPDIR)/magicseteditor-selection.Tpo ./src/gui/symbol/$(DEPDIR)/magicseteditor-selection.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/symbol/selection.cpp' object='./src/gui/symbol/magicseteditor-selection.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/symbol/magicseteditor-selection.o `test -f './src/gui/symbol/selection.cpp' || echo '$(srcdir)/'`./src/gui/symbol/selection.cpp - -./src/gui/symbol/magicseteditor-selection.obj: ./src/gui/symbol/selection.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/symbol/magicseteditor-selection.obj -MD -MP -MF ./src/gui/symbol/$(DEPDIR)/magicseteditor-selection.Tpo -c -o ./src/gui/symbol/magicseteditor-selection.obj `if test -f './src/gui/symbol/selection.cpp'; then $(CYGPATH_W) './src/gui/symbol/selection.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/symbol/selection.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/symbol/$(DEPDIR)/magicseteditor-selection.Tpo ./src/gui/symbol/$(DEPDIR)/magicseteditor-selection.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/symbol/selection.cpp' object='./src/gui/symbol/magicseteditor-selection.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/symbol/magicseteditor-selection.obj `if test -f './src/gui/symbol/selection.cpp'; then $(CYGPATH_W) './src/gui/symbol/selection.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/symbol/selection.cpp'; fi` - -./src/gui/symbol/magicseteditor-window.o: ./src/gui/symbol/window.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/symbol/magicseteditor-window.o -MD -MP -MF ./src/gui/symbol/$(DEPDIR)/magicseteditor-window.Tpo -c -o ./src/gui/symbol/magicseteditor-window.o `test -f './src/gui/symbol/window.cpp' || echo '$(srcdir)/'`./src/gui/symbol/window.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/symbol/$(DEPDIR)/magicseteditor-window.Tpo ./src/gui/symbol/$(DEPDIR)/magicseteditor-window.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/symbol/window.cpp' object='./src/gui/symbol/magicseteditor-window.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/symbol/magicseteditor-window.o `test -f './src/gui/symbol/window.cpp' || echo '$(srcdir)/'`./src/gui/symbol/window.cpp - -./src/gui/symbol/magicseteditor-window.obj: ./src/gui/symbol/window.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/symbol/magicseteditor-window.obj -MD -MP -MF ./src/gui/symbol/$(DEPDIR)/magicseteditor-window.Tpo -c -o ./src/gui/symbol/magicseteditor-window.obj `if test -f './src/gui/symbol/window.cpp'; then $(CYGPATH_W) './src/gui/symbol/window.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/symbol/window.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/symbol/$(DEPDIR)/magicseteditor-window.Tpo ./src/gui/symbol/$(DEPDIR)/magicseteditor-window.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/symbol/window.cpp' object='./src/gui/symbol/magicseteditor-window.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/symbol/magicseteditor-window.obj `if test -f './src/gui/symbol/window.cpp'; then $(CYGPATH_W) './src/gui/symbol/window.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/symbol/window.cpp'; fi` - -./src/gui/symbol/magicseteditor-editor.o: ./src/gui/symbol/editor.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/symbol/magicseteditor-editor.o -MD -MP -MF ./src/gui/symbol/$(DEPDIR)/magicseteditor-editor.Tpo -c -o ./src/gui/symbol/magicseteditor-editor.o `test -f './src/gui/symbol/editor.cpp' || echo '$(srcdir)/'`./src/gui/symbol/editor.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/symbol/$(DEPDIR)/magicseteditor-editor.Tpo ./src/gui/symbol/$(DEPDIR)/magicseteditor-editor.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/symbol/editor.cpp' object='./src/gui/symbol/magicseteditor-editor.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/symbol/magicseteditor-editor.o `test -f './src/gui/symbol/editor.cpp' || echo '$(srcdir)/'`./src/gui/symbol/editor.cpp - -./src/gui/symbol/magicseteditor-editor.obj: ./src/gui/symbol/editor.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/symbol/magicseteditor-editor.obj -MD -MP -MF ./src/gui/symbol/$(DEPDIR)/magicseteditor-editor.Tpo -c -o ./src/gui/symbol/magicseteditor-editor.obj `if test -f './src/gui/symbol/editor.cpp'; then $(CYGPATH_W) './src/gui/symbol/editor.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/symbol/editor.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/symbol/$(DEPDIR)/magicseteditor-editor.Tpo ./src/gui/symbol/$(DEPDIR)/magicseteditor-editor.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/symbol/editor.cpp' object='./src/gui/symbol/magicseteditor-editor.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/symbol/magicseteditor-editor.obj `if test -f './src/gui/symbol/editor.cpp'; then $(CYGPATH_W) './src/gui/symbol/editor.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/symbol/editor.cpp'; fi` - -./src/gui/symbol/magicseteditor-select_editor.o: ./src/gui/symbol/select_editor.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/symbol/magicseteditor-select_editor.o -MD -MP -MF ./src/gui/symbol/$(DEPDIR)/magicseteditor-select_editor.Tpo -c -o ./src/gui/symbol/magicseteditor-select_editor.o `test -f './src/gui/symbol/select_editor.cpp' || echo '$(srcdir)/'`./src/gui/symbol/select_editor.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/symbol/$(DEPDIR)/magicseteditor-select_editor.Tpo ./src/gui/symbol/$(DEPDIR)/magicseteditor-select_editor.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/symbol/select_editor.cpp' object='./src/gui/symbol/magicseteditor-select_editor.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/symbol/magicseteditor-select_editor.o `test -f './src/gui/symbol/select_editor.cpp' || echo '$(srcdir)/'`./src/gui/symbol/select_editor.cpp - -./src/gui/symbol/magicseteditor-select_editor.obj: ./src/gui/symbol/select_editor.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/symbol/magicseteditor-select_editor.obj -MD -MP -MF ./src/gui/symbol/$(DEPDIR)/magicseteditor-select_editor.Tpo -c -o ./src/gui/symbol/magicseteditor-select_editor.obj `if test -f './src/gui/symbol/select_editor.cpp'; then $(CYGPATH_W) './src/gui/symbol/select_editor.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/symbol/select_editor.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/symbol/$(DEPDIR)/magicseteditor-select_editor.Tpo ./src/gui/symbol/$(DEPDIR)/magicseteditor-select_editor.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/symbol/select_editor.cpp' object='./src/gui/symbol/magicseteditor-select_editor.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/symbol/magicseteditor-select_editor.obj `if test -f './src/gui/symbol/select_editor.cpp'; then $(CYGPATH_W) './src/gui/symbol/select_editor.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/symbol/select_editor.cpp'; fi` - -./src/gui/symbol/magicseteditor-control.o: ./src/gui/symbol/control.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/symbol/magicseteditor-control.o -MD -MP -MF ./src/gui/symbol/$(DEPDIR)/magicseteditor-control.Tpo -c -o ./src/gui/symbol/magicseteditor-control.o `test -f './src/gui/symbol/control.cpp' || echo '$(srcdir)/'`./src/gui/symbol/control.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/symbol/$(DEPDIR)/magicseteditor-control.Tpo ./src/gui/symbol/$(DEPDIR)/magicseteditor-control.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/symbol/control.cpp' object='./src/gui/symbol/magicseteditor-control.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/symbol/magicseteditor-control.o `test -f './src/gui/symbol/control.cpp' || echo '$(srcdir)/'`./src/gui/symbol/control.cpp - -./src/gui/symbol/magicseteditor-control.obj: ./src/gui/symbol/control.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/symbol/magicseteditor-control.obj -MD -MP -MF ./src/gui/symbol/$(DEPDIR)/magicseteditor-control.Tpo -c -o ./src/gui/symbol/magicseteditor-control.obj `if test -f './src/gui/symbol/control.cpp'; then $(CYGPATH_W) './src/gui/symbol/control.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/symbol/control.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/symbol/$(DEPDIR)/magicseteditor-control.Tpo ./src/gui/symbol/$(DEPDIR)/magicseteditor-control.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/symbol/control.cpp' object='./src/gui/symbol/magicseteditor-control.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/symbol/magicseteditor-control.obj `if test -f './src/gui/symbol/control.cpp'; then $(CYGPATH_W) './src/gui/symbol/control.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/symbol/control.cpp'; fi` - -./src/gui/magicseteditor-card_select_window.o: ./src/gui/card_select_window.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-card_select_window.o -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-card_select_window.Tpo -c -o ./src/gui/magicseteditor-card_select_window.o `test -f './src/gui/card_select_window.cpp' || echo '$(srcdir)/'`./src/gui/card_select_window.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-card_select_window.Tpo ./src/gui/$(DEPDIR)/magicseteditor-card_select_window.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/card_select_window.cpp' object='./src/gui/magicseteditor-card_select_window.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-card_select_window.o `test -f './src/gui/card_select_window.cpp' || echo '$(srcdir)/'`./src/gui/card_select_window.cpp - -./src/gui/magicseteditor-card_select_window.obj: ./src/gui/card_select_window.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-card_select_window.obj -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-card_select_window.Tpo -c -o ./src/gui/magicseteditor-card_select_window.obj `if test -f './src/gui/card_select_window.cpp'; then $(CYGPATH_W) './src/gui/card_select_window.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/card_select_window.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-card_select_window.Tpo ./src/gui/$(DEPDIR)/magicseteditor-card_select_window.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/card_select_window.cpp' object='./src/gui/magicseteditor-card_select_window.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-card_select_window.obj `if test -f './src/gui/card_select_window.cpp'; then $(CYGPATH_W) './src/gui/card_select_window.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/card_select_window.cpp'; fi` - -./src/gui/control/magicseteditor-card_list.o: ./src/gui/control/card_list.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/control/magicseteditor-card_list.o -MD -MP -MF ./src/gui/control/$(DEPDIR)/magicseteditor-card_list.Tpo -c -o ./src/gui/control/magicseteditor-card_list.o `test -f './src/gui/control/card_list.cpp' || echo '$(srcdir)/'`./src/gui/control/card_list.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/control/$(DEPDIR)/magicseteditor-card_list.Tpo ./src/gui/control/$(DEPDIR)/magicseteditor-card_list.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/control/card_list.cpp' object='./src/gui/control/magicseteditor-card_list.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/control/magicseteditor-card_list.o `test -f './src/gui/control/card_list.cpp' || echo '$(srcdir)/'`./src/gui/control/card_list.cpp - -./src/gui/control/magicseteditor-card_list.obj: ./src/gui/control/card_list.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/control/magicseteditor-card_list.obj -MD -MP -MF ./src/gui/control/$(DEPDIR)/magicseteditor-card_list.Tpo -c -o ./src/gui/control/magicseteditor-card_list.obj `if test -f './src/gui/control/card_list.cpp'; then $(CYGPATH_W) './src/gui/control/card_list.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/control/card_list.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/control/$(DEPDIR)/magicseteditor-card_list.Tpo ./src/gui/control/$(DEPDIR)/magicseteditor-card_list.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/control/card_list.cpp' object='./src/gui/control/magicseteditor-card_list.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/control/magicseteditor-card_list.obj `if test -f './src/gui/control/card_list.cpp'; then $(CYGPATH_W) './src/gui/control/card_list.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/control/card_list.cpp'; fi` - -./src/gui/control/magicseteditor-gallery_list.o: ./src/gui/control/gallery_list.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/control/magicseteditor-gallery_list.o -MD -MP -MF ./src/gui/control/$(DEPDIR)/magicseteditor-gallery_list.Tpo -c -o ./src/gui/control/magicseteditor-gallery_list.o `test -f './src/gui/control/gallery_list.cpp' || echo '$(srcdir)/'`./src/gui/control/gallery_list.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/control/$(DEPDIR)/magicseteditor-gallery_list.Tpo ./src/gui/control/$(DEPDIR)/magicseteditor-gallery_list.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/control/gallery_list.cpp' object='./src/gui/control/magicseteditor-gallery_list.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/control/magicseteditor-gallery_list.o `test -f './src/gui/control/gallery_list.cpp' || echo '$(srcdir)/'`./src/gui/control/gallery_list.cpp - -./src/gui/control/magicseteditor-gallery_list.obj: ./src/gui/control/gallery_list.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/control/magicseteditor-gallery_list.obj -MD -MP -MF ./src/gui/control/$(DEPDIR)/magicseteditor-gallery_list.Tpo -c -o ./src/gui/control/magicseteditor-gallery_list.obj `if test -f './src/gui/control/gallery_list.cpp'; then $(CYGPATH_W) './src/gui/control/gallery_list.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/control/gallery_list.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/control/$(DEPDIR)/magicseteditor-gallery_list.Tpo ./src/gui/control/$(DEPDIR)/magicseteditor-gallery_list.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/control/gallery_list.cpp' object='./src/gui/control/magicseteditor-gallery_list.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/control/magicseteditor-gallery_list.obj `if test -f './src/gui/control/gallery_list.cpp'; then $(CYGPATH_W) './src/gui/control/gallery_list.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/control/gallery_list.cpp'; fi` - -./src/gui/control/magicseteditor-keyword_list.o: ./src/gui/control/keyword_list.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/control/magicseteditor-keyword_list.o -MD -MP -MF ./src/gui/control/$(DEPDIR)/magicseteditor-keyword_list.Tpo -c -o ./src/gui/control/magicseteditor-keyword_list.o `test -f './src/gui/control/keyword_list.cpp' || echo '$(srcdir)/'`./src/gui/control/keyword_list.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/control/$(DEPDIR)/magicseteditor-keyword_list.Tpo ./src/gui/control/$(DEPDIR)/magicseteditor-keyword_list.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/control/keyword_list.cpp' object='./src/gui/control/magicseteditor-keyword_list.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/control/magicseteditor-keyword_list.o `test -f './src/gui/control/keyword_list.cpp' || echo '$(srcdir)/'`./src/gui/control/keyword_list.cpp - -./src/gui/control/magicseteditor-keyword_list.obj: ./src/gui/control/keyword_list.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/control/magicseteditor-keyword_list.obj -MD -MP -MF ./src/gui/control/$(DEPDIR)/magicseteditor-keyword_list.Tpo -c -o ./src/gui/control/magicseteditor-keyword_list.obj `if test -f './src/gui/control/keyword_list.cpp'; then $(CYGPATH_W) './src/gui/control/keyword_list.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/control/keyword_list.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/control/$(DEPDIR)/magicseteditor-keyword_list.Tpo ./src/gui/control/$(DEPDIR)/magicseteditor-keyword_list.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/control/keyword_list.cpp' object='./src/gui/control/magicseteditor-keyword_list.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/control/magicseteditor-keyword_list.obj `if test -f './src/gui/control/keyword_list.cpp'; then $(CYGPATH_W) './src/gui/control/keyword_list.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/control/keyword_list.cpp'; fi` - -./src/gui/control/magicseteditor-graph.o: ./src/gui/control/graph.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/control/magicseteditor-graph.o -MD -MP -MF ./src/gui/control/$(DEPDIR)/magicseteditor-graph.Tpo -c -o ./src/gui/control/magicseteditor-graph.o `test -f './src/gui/control/graph.cpp' || echo '$(srcdir)/'`./src/gui/control/graph.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/control/$(DEPDIR)/magicseteditor-graph.Tpo ./src/gui/control/$(DEPDIR)/magicseteditor-graph.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/control/graph.cpp' object='./src/gui/control/magicseteditor-graph.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/control/magicseteditor-graph.o `test -f './src/gui/control/graph.cpp' || echo '$(srcdir)/'`./src/gui/control/graph.cpp - -./src/gui/control/magicseteditor-graph.obj: ./src/gui/control/graph.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/control/magicseteditor-graph.obj -MD -MP -MF ./src/gui/control/$(DEPDIR)/magicseteditor-graph.Tpo -c -o ./src/gui/control/magicseteditor-graph.obj `if test -f './src/gui/control/graph.cpp'; then $(CYGPATH_W) './src/gui/control/graph.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/control/graph.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/control/$(DEPDIR)/magicseteditor-graph.Tpo ./src/gui/control/$(DEPDIR)/magicseteditor-graph.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/control/graph.cpp' object='./src/gui/control/magicseteditor-graph.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/control/magicseteditor-graph.obj `if test -f './src/gui/control/graph.cpp'; then $(CYGPATH_W) './src/gui/control/graph.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/control/graph.cpp'; fi` - -./src/gui/control/magicseteditor-image_card_list.o: ./src/gui/control/image_card_list.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/control/magicseteditor-image_card_list.o -MD -MP -MF ./src/gui/control/$(DEPDIR)/magicseteditor-image_card_list.Tpo -c -o ./src/gui/control/magicseteditor-image_card_list.o `test -f './src/gui/control/image_card_list.cpp' || echo '$(srcdir)/'`./src/gui/control/image_card_list.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/control/$(DEPDIR)/magicseteditor-image_card_list.Tpo ./src/gui/control/$(DEPDIR)/magicseteditor-image_card_list.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/control/image_card_list.cpp' object='./src/gui/control/magicseteditor-image_card_list.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/control/magicseteditor-image_card_list.o `test -f './src/gui/control/image_card_list.cpp' || echo '$(srcdir)/'`./src/gui/control/image_card_list.cpp - -./src/gui/control/magicseteditor-image_card_list.obj: ./src/gui/control/image_card_list.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/control/magicseteditor-image_card_list.obj -MD -MP -MF ./src/gui/control/$(DEPDIR)/magicseteditor-image_card_list.Tpo -c -o ./src/gui/control/magicseteditor-image_card_list.obj `if test -f './src/gui/control/image_card_list.cpp'; then $(CYGPATH_W) './src/gui/control/image_card_list.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/control/image_card_list.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/control/$(DEPDIR)/magicseteditor-image_card_list.Tpo ./src/gui/control/$(DEPDIR)/magicseteditor-image_card_list.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/control/image_card_list.cpp' object='./src/gui/control/magicseteditor-image_card_list.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/control/magicseteditor-image_card_list.obj `if test -f './src/gui/control/image_card_list.cpp'; then $(CYGPATH_W) './src/gui/control/image_card_list.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/control/image_card_list.cpp'; fi` - -./src/gui/control/magicseteditor-card_viewer.o: ./src/gui/control/card_viewer.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/control/magicseteditor-card_viewer.o -MD -MP -MF ./src/gui/control/$(DEPDIR)/magicseteditor-card_viewer.Tpo -c -o ./src/gui/control/magicseteditor-card_viewer.o `test -f './src/gui/control/card_viewer.cpp' || echo '$(srcdir)/'`./src/gui/control/card_viewer.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/control/$(DEPDIR)/magicseteditor-card_viewer.Tpo ./src/gui/control/$(DEPDIR)/magicseteditor-card_viewer.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/control/card_viewer.cpp' object='./src/gui/control/magicseteditor-card_viewer.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/control/magicseteditor-card_viewer.o `test -f './src/gui/control/card_viewer.cpp' || echo '$(srcdir)/'`./src/gui/control/card_viewer.cpp - -./src/gui/control/magicseteditor-card_viewer.obj: ./src/gui/control/card_viewer.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/control/magicseteditor-card_viewer.obj -MD -MP -MF ./src/gui/control/$(DEPDIR)/magicseteditor-card_viewer.Tpo -c -o ./src/gui/control/magicseteditor-card_viewer.obj `if test -f './src/gui/control/card_viewer.cpp'; then $(CYGPATH_W) './src/gui/control/card_viewer.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/control/card_viewer.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/control/$(DEPDIR)/magicseteditor-card_viewer.Tpo ./src/gui/control/$(DEPDIR)/magicseteditor-card_viewer.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/control/card_viewer.cpp' object='./src/gui/control/magicseteditor-card_viewer.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/control/magicseteditor-card_viewer.obj `if test -f './src/gui/control/card_viewer.cpp'; then $(CYGPATH_W) './src/gui/control/card_viewer.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/control/card_viewer.cpp'; fi` - -./src/gui/control/magicseteditor-native_look_editor.o: ./src/gui/control/native_look_editor.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/control/magicseteditor-native_look_editor.o -MD -MP -MF ./src/gui/control/$(DEPDIR)/magicseteditor-native_look_editor.Tpo -c -o ./src/gui/control/magicseteditor-native_look_editor.o `test -f './src/gui/control/native_look_editor.cpp' || echo '$(srcdir)/'`./src/gui/control/native_look_editor.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/control/$(DEPDIR)/magicseteditor-native_look_editor.Tpo ./src/gui/control/$(DEPDIR)/magicseteditor-native_look_editor.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/control/native_look_editor.cpp' object='./src/gui/control/magicseteditor-native_look_editor.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/control/magicseteditor-native_look_editor.o `test -f './src/gui/control/native_look_editor.cpp' || echo '$(srcdir)/'`./src/gui/control/native_look_editor.cpp - -./src/gui/control/magicseteditor-native_look_editor.obj: ./src/gui/control/native_look_editor.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/control/magicseteditor-native_look_editor.obj -MD -MP -MF ./src/gui/control/$(DEPDIR)/magicseteditor-native_look_editor.Tpo -c -o ./src/gui/control/magicseteditor-native_look_editor.obj `if test -f './src/gui/control/native_look_editor.cpp'; then $(CYGPATH_W) './src/gui/control/native_look_editor.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/control/native_look_editor.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/control/$(DEPDIR)/magicseteditor-native_look_editor.Tpo ./src/gui/control/$(DEPDIR)/magicseteditor-native_look_editor.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/control/native_look_editor.cpp' object='./src/gui/control/magicseteditor-native_look_editor.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/control/magicseteditor-native_look_editor.obj `if test -f './src/gui/control/native_look_editor.cpp'; then $(CYGPATH_W) './src/gui/control/native_look_editor.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/control/native_look_editor.cpp'; fi` - -./src/gui/control/magicseteditor-select_card_list.o: ./src/gui/control/select_card_list.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/control/magicseteditor-select_card_list.o -MD -MP -MF ./src/gui/control/$(DEPDIR)/magicseteditor-select_card_list.Tpo -c -o ./src/gui/control/magicseteditor-select_card_list.o `test -f './src/gui/control/select_card_list.cpp' || echo '$(srcdir)/'`./src/gui/control/select_card_list.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/control/$(DEPDIR)/magicseteditor-select_card_list.Tpo ./src/gui/control/$(DEPDIR)/magicseteditor-select_card_list.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/control/select_card_list.cpp' object='./src/gui/control/magicseteditor-select_card_list.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/control/magicseteditor-select_card_list.o `test -f './src/gui/control/select_card_list.cpp' || echo '$(srcdir)/'`./src/gui/control/select_card_list.cpp - -./src/gui/control/magicseteditor-select_card_list.obj: ./src/gui/control/select_card_list.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/control/magicseteditor-select_card_list.obj -MD -MP -MF ./src/gui/control/$(DEPDIR)/magicseteditor-select_card_list.Tpo -c -o ./src/gui/control/magicseteditor-select_card_list.obj `if test -f './src/gui/control/select_card_list.cpp'; then $(CYGPATH_W) './src/gui/control/select_card_list.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/control/select_card_list.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/control/$(DEPDIR)/magicseteditor-select_card_list.Tpo ./src/gui/control/$(DEPDIR)/magicseteditor-select_card_list.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/control/select_card_list.cpp' object='./src/gui/control/magicseteditor-select_card_list.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/control/magicseteditor-select_card_list.obj `if test -f './src/gui/control/select_card_list.cpp'; then $(CYGPATH_W) './src/gui/control/select_card_list.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/control/select_card_list.cpp'; fi` - -./src/gui/control/magicseteditor-item_list.o: ./src/gui/control/item_list.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/control/magicseteditor-item_list.o -MD -MP -MF ./src/gui/control/$(DEPDIR)/magicseteditor-item_list.Tpo -c -o ./src/gui/control/magicseteditor-item_list.o `test -f './src/gui/control/item_list.cpp' || echo '$(srcdir)/'`./src/gui/control/item_list.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/control/$(DEPDIR)/magicseteditor-item_list.Tpo ./src/gui/control/$(DEPDIR)/magicseteditor-item_list.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/control/item_list.cpp' object='./src/gui/control/magicseteditor-item_list.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/control/magicseteditor-item_list.o `test -f './src/gui/control/item_list.cpp' || echo '$(srcdir)/'`./src/gui/control/item_list.cpp - -./src/gui/control/magicseteditor-item_list.obj: ./src/gui/control/item_list.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/control/magicseteditor-item_list.obj -MD -MP -MF ./src/gui/control/$(DEPDIR)/magicseteditor-item_list.Tpo -c -o ./src/gui/control/magicseteditor-item_list.obj `if test -f './src/gui/control/item_list.cpp'; then $(CYGPATH_W) './src/gui/control/item_list.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/control/item_list.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/control/$(DEPDIR)/magicseteditor-item_list.Tpo ./src/gui/control/$(DEPDIR)/magicseteditor-item_list.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/control/item_list.cpp' object='./src/gui/control/magicseteditor-item_list.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/control/magicseteditor-item_list.obj `if test -f './src/gui/control/item_list.cpp'; then $(CYGPATH_W) './src/gui/control/item_list.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/control/item_list.cpp'; fi` - -./src/gui/control/magicseteditor-text_ctrl.o: ./src/gui/control/text_ctrl.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/control/magicseteditor-text_ctrl.o -MD -MP -MF ./src/gui/control/$(DEPDIR)/magicseteditor-text_ctrl.Tpo -c -o ./src/gui/control/magicseteditor-text_ctrl.o `test -f './src/gui/control/text_ctrl.cpp' || echo '$(srcdir)/'`./src/gui/control/text_ctrl.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/control/$(DEPDIR)/magicseteditor-text_ctrl.Tpo ./src/gui/control/$(DEPDIR)/magicseteditor-text_ctrl.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/control/text_ctrl.cpp' object='./src/gui/control/magicseteditor-text_ctrl.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/control/magicseteditor-text_ctrl.o `test -f './src/gui/control/text_ctrl.cpp' || echo '$(srcdir)/'`./src/gui/control/text_ctrl.cpp - -./src/gui/control/magicseteditor-text_ctrl.obj: ./src/gui/control/text_ctrl.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/control/magicseteditor-text_ctrl.obj -MD -MP -MF ./src/gui/control/$(DEPDIR)/magicseteditor-text_ctrl.Tpo -c -o ./src/gui/control/magicseteditor-text_ctrl.obj `if test -f './src/gui/control/text_ctrl.cpp'; then $(CYGPATH_W) './src/gui/control/text_ctrl.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/control/text_ctrl.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/control/$(DEPDIR)/magicseteditor-text_ctrl.Tpo ./src/gui/control/$(DEPDIR)/magicseteditor-text_ctrl.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/control/text_ctrl.cpp' object='./src/gui/control/magicseteditor-text_ctrl.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/control/magicseteditor-text_ctrl.obj `if test -f './src/gui/control/text_ctrl.cpp'; then $(CYGPATH_W) './src/gui/control/text_ctrl.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/control/text_ctrl.cpp'; fi` - -./src/gui/control/magicseteditor-card_editor.o: ./src/gui/control/card_editor.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/control/magicseteditor-card_editor.o -MD -MP -MF ./src/gui/control/$(DEPDIR)/magicseteditor-card_editor.Tpo -c -o ./src/gui/control/magicseteditor-card_editor.o `test -f './src/gui/control/card_editor.cpp' || echo '$(srcdir)/'`./src/gui/control/card_editor.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/control/$(DEPDIR)/magicseteditor-card_editor.Tpo ./src/gui/control/$(DEPDIR)/magicseteditor-card_editor.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/control/card_editor.cpp' object='./src/gui/control/magicseteditor-card_editor.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/control/magicseteditor-card_editor.o `test -f './src/gui/control/card_editor.cpp' || echo '$(srcdir)/'`./src/gui/control/card_editor.cpp - -./src/gui/control/magicseteditor-card_editor.obj: ./src/gui/control/card_editor.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/control/magicseteditor-card_editor.obj -MD -MP -MF ./src/gui/control/$(DEPDIR)/magicseteditor-card_editor.Tpo -c -o ./src/gui/control/magicseteditor-card_editor.obj `if test -f './src/gui/control/card_editor.cpp'; then $(CYGPATH_W) './src/gui/control/card_editor.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/control/card_editor.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/control/$(DEPDIR)/magicseteditor-card_editor.Tpo ./src/gui/control/$(DEPDIR)/magicseteditor-card_editor.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/control/card_editor.cpp' object='./src/gui/control/magicseteditor-card_editor.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/control/magicseteditor-card_editor.obj `if test -f './src/gui/control/card_editor.cpp'; then $(CYGPATH_W) './src/gui/control/card_editor.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/control/card_editor.cpp'; fi` - -./src/gui/control/magicseteditor-filtered_card_list.o: ./src/gui/control/filtered_card_list.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/control/magicseteditor-filtered_card_list.o -MD -MP -MF ./src/gui/control/$(DEPDIR)/magicseteditor-filtered_card_list.Tpo -c -o ./src/gui/control/magicseteditor-filtered_card_list.o `test -f './src/gui/control/filtered_card_list.cpp' || echo '$(srcdir)/'`./src/gui/control/filtered_card_list.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/control/$(DEPDIR)/magicseteditor-filtered_card_list.Tpo ./src/gui/control/$(DEPDIR)/magicseteditor-filtered_card_list.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/control/filtered_card_list.cpp' object='./src/gui/control/magicseteditor-filtered_card_list.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/control/magicseteditor-filtered_card_list.o `test -f './src/gui/control/filtered_card_list.cpp' || echo '$(srcdir)/'`./src/gui/control/filtered_card_list.cpp - -./src/gui/control/magicseteditor-filtered_card_list.obj: ./src/gui/control/filtered_card_list.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/control/magicseteditor-filtered_card_list.obj -MD -MP -MF ./src/gui/control/$(DEPDIR)/magicseteditor-filtered_card_list.Tpo -c -o ./src/gui/control/magicseteditor-filtered_card_list.obj `if test -f './src/gui/control/filtered_card_list.cpp'; then $(CYGPATH_W) './src/gui/control/filtered_card_list.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/control/filtered_card_list.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/control/$(DEPDIR)/magicseteditor-filtered_card_list.Tpo ./src/gui/control/$(DEPDIR)/magicseteditor-filtered_card_list.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/control/filtered_card_list.cpp' object='./src/gui/control/magicseteditor-filtered_card_list.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/control/magicseteditor-filtered_card_list.obj `if test -f './src/gui/control/filtered_card_list.cpp'; then $(CYGPATH_W) './src/gui/control/filtered_card_list.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/control/filtered_card_list.cpp'; fi` - -./src/gui/control/magicseteditor-filter_ctrl.o: ./src/gui/control/filter_ctrl.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/control/magicseteditor-filter_ctrl.o -MD -MP -MF ./src/gui/control/$(DEPDIR)/magicseteditor-filter_ctrl.Tpo -c -o ./src/gui/control/magicseteditor-filter_ctrl.o `test -f './src/gui/control/filter_ctrl.cpp' || echo '$(srcdir)/'`./src/gui/control/filter_ctrl.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/control/$(DEPDIR)/magicseteditor-filter_ctrl.Tpo ./src/gui/control/$(DEPDIR)/magicseteditor-filter_ctrl.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/control/filter_ctrl.cpp' object='./src/gui/control/magicseteditor-filter_ctrl.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/control/magicseteditor-filter_ctrl.o `test -f './src/gui/control/filter_ctrl.cpp' || echo '$(srcdir)/'`./src/gui/control/filter_ctrl.cpp - -./src/gui/control/magicseteditor-filter_ctrl.obj: ./src/gui/control/filter_ctrl.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/control/magicseteditor-filter_ctrl.obj -MD -MP -MF ./src/gui/control/$(DEPDIR)/magicseteditor-filter_ctrl.Tpo -c -o ./src/gui/control/magicseteditor-filter_ctrl.obj `if test -f './src/gui/control/filter_ctrl.cpp'; then $(CYGPATH_W) './src/gui/control/filter_ctrl.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/control/filter_ctrl.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/control/$(DEPDIR)/magicseteditor-filter_ctrl.Tpo ./src/gui/control/$(DEPDIR)/magicseteditor-filter_ctrl.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/control/filter_ctrl.cpp' object='./src/gui/control/magicseteditor-filter_ctrl.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/control/magicseteditor-filter_ctrl.obj `if test -f './src/gui/control/filter_ctrl.cpp'; then $(CYGPATH_W) './src/gui/control/filter_ctrl.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/control/filter_ctrl.cpp'; fi` - -./src/gui/control/magicseteditor-package_list.o: ./src/gui/control/package_list.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/control/magicseteditor-package_list.o -MD -MP -MF ./src/gui/control/$(DEPDIR)/magicseteditor-package_list.Tpo -c -o ./src/gui/control/magicseteditor-package_list.o `test -f './src/gui/control/package_list.cpp' || echo '$(srcdir)/'`./src/gui/control/package_list.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/control/$(DEPDIR)/magicseteditor-package_list.Tpo ./src/gui/control/$(DEPDIR)/magicseteditor-package_list.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/control/package_list.cpp' object='./src/gui/control/magicseteditor-package_list.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/control/magicseteditor-package_list.o `test -f './src/gui/control/package_list.cpp' || echo '$(srcdir)/'`./src/gui/control/package_list.cpp - -./src/gui/control/magicseteditor-package_list.obj: ./src/gui/control/package_list.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/control/magicseteditor-package_list.obj -MD -MP -MF ./src/gui/control/$(DEPDIR)/magicseteditor-package_list.Tpo -c -o ./src/gui/control/magicseteditor-package_list.obj `if test -f './src/gui/control/package_list.cpp'; then $(CYGPATH_W) './src/gui/control/package_list.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/control/package_list.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/control/$(DEPDIR)/magicseteditor-package_list.Tpo ./src/gui/control/$(DEPDIR)/magicseteditor-package_list.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/control/package_list.cpp' object='./src/gui/control/magicseteditor-package_list.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/control/magicseteditor-package_list.obj `if test -f './src/gui/control/package_list.cpp'; then $(CYGPATH_W) './src/gui/control/package_list.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/control/package_list.cpp'; fi` - -./src/gui/control/magicseteditor-tree_list.o: ./src/gui/control/tree_list.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/control/magicseteditor-tree_list.o -MD -MP -MF ./src/gui/control/$(DEPDIR)/magicseteditor-tree_list.Tpo -c -o ./src/gui/control/magicseteditor-tree_list.o `test -f './src/gui/control/tree_list.cpp' || echo '$(srcdir)/'`./src/gui/control/tree_list.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/control/$(DEPDIR)/magicseteditor-tree_list.Tpo ./src/gui/control/$(DEPDIR)/magicseteditor-tree_list.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/control/tree_list.cpp' object='./src/gui/control/magicseteditor-tree_list.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/control/magicseteditor-tree_list.o `test -f './src/gui/control/tree_list.cpp' || echo '$(srcdir)/'`./src/gui/control/tree_list.cpp - -./src/gui/control/magicseteditor-tree_list.obj: ./src/gui/control/tree_list.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/control/magicseteditor-tree_list.obj -MD -MP -MF ./src/gui/control/$(DEPDIR)/magicseteditor-tree_list.Tpo -c -o ./src/gui/control/magicseteditor-tree_list.obj `if test -f './src/gui/control/tree_list.cpp'; then $(CYGPATH_W) './src/gui/control/tree_list.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/control/tree_list.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/control/$(DEPDIR)/magicseteditor-tree_list.Tpo ./src/gui/control/$(DEPDIR)/magicseteditor-tree_list.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/control/tree_list.cpp' object='./src/gui/control/magicseteditor-tree_list.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/control/magicseteditor-tree_list.obj `if test -f './src/gui/control/tree_list.cpp'; then $(CYGPATH_W) './src/gui/control/tree_list.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/control/tree_list.cpp'; fi` - -./src/gui/control/magicseteditor-card_list_column_select.o: ./src/gui/control/card_list_column_select.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/control/magicseteditor-card_list_column_select.o -MD -MP -MF ./src/gui/control/$(DEPDIR)/magicseteditor-card_list_column_select.Tpo -c -o ./src/gui/control/magicseteditor-card_list_column_select.o `test -f './src/gui/control/card_list_column_select.cpp' || echo '$(srcdir)/'`./src/gui/control/card_list_column_select.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/control/$(DEPDIR)/magicseteditor-card_list_column_select.Tpo ./src/gui/control/$(DEPDIR)/magicseteditor-card_list_column_select.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/control/card_list_column_select.cpp' object='./src/gui/control/magicseteditor-card_list_column_select.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/control/magicseteditor-card_list_column_select.o `test -f './src/gui/control/card_list_column_select.cpp' || echo '$(srcdir)/'`./src/gui/control/card_list_column_select.cpp - -./src/gui/control/magicseteditor-card_list_column_select.obj: ./src/gui/control/card_list_column_select.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/control/magicseteditor-card_list_column_select.obj -MD -MP -MF ./src/gui/control/$(DEPDIR)/magicseteditor-card_list_column_select.Tpo -c -o ./src/gui/control/magicseteditor-card_list_column_select.obj `if test -f './src/gui/control/card_list_column_select.cpp'; then $(CYGPATH_W) './src/gui/control/card_list_column_select.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/control/card_list_column_select.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/control/$(DEPDIR)/magicseteditor-card_list_column_select.Tpo ./src/gui/control/$(DEPDIR)/magicseteditor-card_list_column_select.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/control/card_list_column_select.cpp' object='./src/gui/control/magicseteditor-card_list_column_select.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/control/magicseteditor-card_list_column_select.obj `if test -f './src/gui/control/card_list_column_select.cpp'; then $(CYGPATH_W) './src/gui/control/card_list_column_select.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/control/card_list_column_select.cpp'; fi` - -./src/gui/magicseteditor-package_update_list.o: ./src/gui/package_update_list.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-package_update_list.o -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-package_update_list.Tpo -c -o ./src/gui/magicseteditor-package_update_list.o `test -f './src/gui/package_update_list.cpp' || echo '$(srcdir)/'`./src/gui/package_update_list.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-package_update_list.Tpo ./src/gui/$(DEPDIR)/magicseteditor-package_update_list.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/package_update_list.cpp' object='./src/gui/magicseteditor-package_update_list.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-package_update_list.o `test -f './src/gui/package_update_list.cpp' || echo '$(srcdir)/'`./src/gui/package_update_list.cpp - -./src/gui/magicseteditor-package_update_list.obj: ./src/gui/package_update_list.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-package_update_list.obj -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-package_update_list.Tpo -c -o ./src/gui/magicseteditor-package_update_list.obj `if test -f './src/gui/package_update_list.cpp'; then $(CYGPATH_W) './src/gui/package_update_list.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/package_update_list.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-package_update_list.Tpo ./src/gui/$(DEPDIR)/magicseteditor-package_update_list.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/package_update_list.cpp' object='./src/gui/magicseteditor-package_update_list.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-package_update_list.obj `if test -f './src/gui/package_update_list.cpp'; then $(CYGPATH_W) './src/gui/package_update_list.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/package_update_list.cpp'; fi` - -./src/gui/magicseteditor-drop_down_list.o: ./src/gui/drop_down_list.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-drop_down_list.o -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-drop_down_list.Tpo -c -o ./src/gui/magicseteditor-drop_down_list.o `test -f './src/gui/drop_down_list.cpp' || echo '$(srcdir)/'`./src/gui/drop_down_list.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-drop_down_list.Tpo ./src/gui/$(DEPDIR)/magicseteditor-drop_down_list.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/drop_down_list.cpp' object='./src/gui/magicseteditor-drop_down_list.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-drop_down_list.o `test -f './src/gui/drop_down_list.cpp' || echo '$(srcdir)/'`./src/gui/drop_down_list.cpp - -./src/gui/magicseteditor-drop_down_list.obj: ./src/gui/drop_down_list.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-drop_down_list.obj -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-drop_down_list.Tpo -c -o ./src/gui/magicseteditor-drop_down_list.obj `if test -f './src/gui/drop_down_list.cpp'; then $(CYGPATH_W) './src/gui/drop_down_list.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/drop_down_list.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-drop_down_list.Tpo ./src/gui/$(DEPDIR)/magicseteditor-drop_down_list.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/drop_down_list.cpp' object='./src/gui/magicseteditor-drop_down_list.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-drop_down_list.obj `if test -f './src/gui/drop_down_list.cpp'; then $(CYGPATH_W) './src/gui/drop_down_list.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/drop_down_list.cpp'; fi` - -./src/gui/value/magicseteditor-symbol.o: ./src/gui/value/symbol.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/value/magicseteditor-symbol.o -MD -MP -MF ./src/gui/value/$(DEPDIR)/magicseteditor-symbol.Tpo -c -o ./src/gui/value/magicseteditor-symbol.o `test -f './src/gui/value/symbol.cpp' || echo '$(srcdir)/'`./src/gui/value/symbol.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/value/$(DEPDIR)/magicseteditor-symbol.Tpo ./src/gui/value/$(DEPDIR)/magicseteditor-symbol.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/value/symbol.cpp' object='./src/gui/value/magicseteditor-symbol.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/value/magicseteditor-symbol.o `test -f './src/gui/value/symbol.cpp' || echo '$(srcdir)/'`./src/gui/value/symbol.cpp - -./src/gui/value/magicseteditor-symbol.obj: ./src/gui/value/symbol.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/value/magicseteditor-symbol.obj -MD -MP -MF ./src/gui/value/$(DEPDIR)/magicseteditor-symbol.Tpo -c -o ./src/gui/value/magicseteditor-symbol.obj `if test -f './src/gui/value/symbol.cpp'; then $(CYGPATH_W) './src/gui/value/symbol.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/value/symbol.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/value/$(DEPDIR)/magicseteditor-symbol.Tpo ./src/gui/value/$(DEPDIR)/magicseteditor-symbol.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/value/symbol.cpp' object='./src/gui/value/magicseteditor-symbol.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/value/magicseteditor-symbol.obj `if test -f './src/gui/value/symbol.cpp'; then $(CYGPATH_W) './src/gui/value/symbol.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/value/symbol.cpp'; fi` - -./src/gui/value/magicseteditor-package_choice.o: ./src/gui/value/package_choice.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/value/magicseteditor-package_choice.o -MD -MP -MF ./src/gui/value/$(DEPDIR)/magicseteditor-package_choice.Tpo -c -o ./src/gui/value/magicseteditor-package_choice.o `test -f './src/gui/value/package_choice.cpp' || echo '$(srcdir)/'`./src/gui/value/package_choice.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/value/$(DEPDIR)/magicseteditor-package_choice.Tpo ./src/gui/value/$(DEPDIR)/magicseteditor-package_choice.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/value/package_choice.cpp' object='./src/gui/value/magicseteditor-package_choice.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/value/magicseteditor-package_choice.o `test -f './src/gui/value/package_choice.cpp' || echo '$(srcdir)/'`./src/gui/value/package_choice.cpp - -./src/gui/value/magicseteditor-package_choice.obj: ./src/gui/value/package_choice.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/value/magicseteditor-package_choice.obj -MD -MP -MF ./src/gui/value/$(DEPDIR)/magicseteditor-package_choice.Tpo -c -o ./src/gui/value/magicseteditor-package_choice.obj `if test -f './src/gui/value/package_choice.cpp'; then $(CYGPATH_W) './src/gui/value/package_choice.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/value/package_choice.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/value/$(DEPDIR)/magicseteditor-package_choice.Tpo ./src/gui/value/$(DEPDIR)/magicseteditor-package_choice.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/value/package_choice.cpp' object='./src/gui/value/magicseteditor-package_choice.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/value/magicseteditor-package_choice.obj `if test -f './src/gui/value/package_choice.cpp'; then $(CYGPATH_W) './src/gui/value/package_choice.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/value/package_choice.cpp'; fi` - -./src/gui/value/magicseteditor-color.o: ./src/gui/value/color.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/value/magicseteditor-color.o -MD -MP -MF ./src/gui/value/$(DEPDIR)/magicseteditor-color.Tpo -c -o ./src/gui/value/magicseteditor-color.o `test -f './src/gui/value/color.cpp' || echo '$(srcdir)/'`./src/gui/value/color.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/value/$(DEPDIR)/magicseteditor-color.Tpo ./src/gui/value/$(DEPDIR)/magicseteditor-color.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/value/color.cpp' object='./src/gui/value/magicseteditor-color.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/value/magicseteditor-color.o `test -f './src/gui/value/color.cpp' || echo '$(srcdir)/'`./src/gui/value/color.cpp - -./src/gui/value/magicseteditor-color.obj: ./src/gui/value/color.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/value/magicseteditor-color.obj -MD -MP -MF ./src/gui/value/$(DEPDIR)/magicseteditor-color.Tpo -c -o ./src/gui/value/magicseteditor-color.obj `if test -f './src/gui/value/color.cpp'; then $(CYGPATH_W) './src/gui/value/color.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/value/color.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/value/$(DEPDIR)/magicseteditor-color.Tpo ./src/gui/value/$(DEPDIR)/magicseteditor-color.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/value/color.cpp' object='./src/gui/value/magicseteditor-color.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/value/magicseteditor-color.obj `if test -f './src/gui/value/color.cpp'; then $(CYGPATH_W) './src/gui/value/color.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/value/color.cpp'; fi` - -./src/gui/value/magicseteditor-text.o: ./src/gui/value/text.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/value/magicseteditor-text.o -MD -MP -MF ./src/gui/value/$(DEPDIR)/magicseteditor-text.Tpo -c -o ./src/gui/value/magicseteditor-text.o `test -f './src/gui/value/text.cpp' || echo '$(srcdir)/'`./src/gui/value/text.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/value/$(DEPDIR)/magicseteditor-text.Tpo ./src/gui/value/$(DEPDIR)/magicseteditor-text.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/value/text.cpp' object='./src/gui/value/magicseteditor-text.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/value/magicseteditor-text.o `test -f './src/gui/value/text.cpp' || echo '$(srcdir)/'`./src/gui/value/text.cpp - -./src/gui/value/magicseteditor-text.obj: ./src/gui/value/text.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/value/magicseteditor-text.obj -MD -MP -MF ./src/gui/value/$(DEPDIR)/magicseteditor-text.Tpo -c -o ./src/gui/value/magicseteditor-text.obj `if test -f './src/gui/value/text.cpp'; then $(CYGPATH_W) './src/gui/value/text.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/value/text.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/value/$(DEPDIR)/magicseteditor-text.Tpo ./src/gui/value/$(DEPDIR)/magicseteditor-text.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/value/text.cpp' object='./src/gui/value/magicseteditor-text.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/value/magicseteditor-text.obj `if test -f './src/gui/value/text.cpp'; then $(CYGPATH_W) './src/gui/value/text.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/value/text.cpp'; fi` - -./src/gui/value/magicseteditor-multiple_choice.o: ./src/gui/value/multiple_choice.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/value/magicseteditor-multiple_choice.o -MD -MP -MF ./src/gui/value/$(DEPDIR)/magicseteditor-multiple_choice.Tpo -c -o ./src/gui/value/magicseteditor-multiple_choice.o `test -f './src/gui/value/multiple_choice.cpp' || echo '$(srcdir)/'`./src/gui/value/multiple_choice.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/value/$(DEPDIR)/magicseteditor-multiple_choice.Tpo ./src/gui/value/$(DEPDIR)/magicseteditor-multiple_choice.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/value/multiple_choice.cpp' object='./src/gui/value/magicseteditor-multiple_choice.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/value/magicseteditor-multiple_choice.o `test -f './src/gui/value/multiple_choice.cpp' || echo '$(srcdir)/'`./src/gui/value/multiple_choice.cpp - -./src/gui/value/magicseteditor-multiple_choice.obj: ./src/gui/value/multiple_choice.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/value/magicseteditor-multiple_choice.obj -MD -MP -MF ./src/gui/value/$(DEPDIR)/magicseteditor-multiple_choice.Tpo -c -o ./src/gui/value/magicseteditor-multiple_choice.obj `if test -f './src/gui/value/multiple_choice.cpp'; then $(CYGPATH_W) './src/gui/value/multiple_choice.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/value/multiple_choice.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/value/$(DEPDIR)/magicseteditor-multiple_choice.Tpo ./src/gui/value/$(DEPDIR)/magicseteditor-multiple_choice.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/value/multiple_choice.cpp' object='./src/gui/value/magicseteditor-multiple_choice.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/value/magicseteditor-multiple_choice.obj `if test -f './src/gui/value/multiple_choice.cpp'; then $(CYGPATH_W) './src/gui/value/multiple_choice.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/value/multiple_choice.cpp'; fi` - -./src/gui/value/magicseteditor-editor.o: ./src/gui/value/editor.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/value/magicseteditor-editor.o -MD -MP -MF ./src/gui/value/$(DEPDIR)/magicseteditor-editor.Tpo -c -o ./src/gui/value/magicseteditor-editor.o `test -f './src/gui/value/editor.cpp' || echo '$(srcdir)/'`./src/gui/value/editor.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/value/$(DEPDIR)/magicseteditor-editor.Tpo ./src/gui/value/$(DEPDIR)/magicseteditor-editor.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/value/editor.cpp' object='./src/gui/value/magicseteditor-editor.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/value/magicseteditor-editor.o `test -f './src/gui/value/editor.cpp' || echo '$(srcdir)/'`./src/gui/value/editor.cpp - -./src/gui/value/magicseteditor-editor.obj: ./src/gui/value/editor.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/value/magicseteditor-editor.obj -MD -MP -MF ./src/gui/value/$(DEPDIR)/magicseteditor-editor.Tpo -c -o ./src/gui/value/magicseteditor-editor.obj `if test -f './src/gui/value/editor.cpp'; then $(CYGPATH_W) './src/gui/value/editor.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/value/editor.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/value/$(DEPDIR)/magicseteditor-editor.Tpo ./src/gui/value/$(DEPDIR)/magicseteditor-editor.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/value/editor.cpp' object='./src/gui/value/magicseteditor-editor.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/value/magicseteditor-editor.obj `if test -f './src/gui/value/editor.cpp'; then $(CYGPATH_W) './src/gui/value/editor.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/value/editor.cpp'; fi` - -./src/gui/value/magicseteditor-information.o: ./src/gui/value/information.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/value/magicseteditor-information.o -MD -MP -MF ./src/gui/value/$(DEPDIR)/magicseteditor-information.Tpo -c -o ./src/gui/value/magicseteditor-information.o `test -f './src/gui/value/information.cpp' || echo '$(srcdir)/'`./src/gui/value/information.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/value/$(DEPDIR)/magicseteditor-information.Tpo ./src/gui/value/$(DEPDIR)/magicseteditor-information.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/value/information.cpp' object='./src/gui/value/magicseteditor-information.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/value/magicseteditor-information.o `test -f './src/gui/value/information.cpp' || echo '$(srcdir)/'`./src/gui/value/information.cpp - -./src/gui/value/magicseteditor-information.obj: ./src/gui/value/information.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/value/magicseteditor-information.obj -MD -MP -MF ./src/gui/value/$(DEPDIR)/magicseteditor-information.Tpo -c -o ./src/gui/value/magicseteditor-information.obj `if test -f './src/gui/value/information.cpp'; then $(CYGPATH_W) './src/gui/value/information.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/value/information.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/value/$(DEPDIR)/magicseteditor-information.Tpo ./src/gui/value/$(DEPDIR)/magicseteditor-information.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/value/information.cpp' object='./src/gui/value/magicseteditor-information.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/value/magicseteditor-information.obj `if test -f './src/gui/value/information.cpp'; then $(CYGPATH_W) './src/gui/value/information.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/value/information.cpp'; fi` - -./src/gui/value/magicseteditor-choice.o: ./src/gui/value/choice.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/value/magicseteditor-choice.o -MD -MP -MF ./src/gui/value/$(DEPDIR)/magicseteditor-choice.Tpo -c -o ./src/gui/value/magicseteditor-choice.o `test -f './src/gui/value/choice.cpp' || echo '$(srcdir)/'`./src/gui/value/choice.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/value/$(DEPDIR)/magicseteditor-choice.Tpo ./src/gui/value/$(DEPDIR)/magicseteditor-choice.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/value/choice.cpp' object='./src/gui/value/magicseteditor-choice.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/value/magicseteditor-choice.o `test -f './src/gui/value/choice.cpp' || echo '$(srcdir)/'`./src/gui/value/choice.cpp - -./src/gui/value/magicseteditor-choice.obj: ./src/gui/value/choice.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/value/magicseteditor-choice.obj -MD -MP -MF ./src/gui/value/$(DEPDIR)/magicseteditor-choice.Tpo -c -o ./src/gui/value/magicseteditor-choice.obj `if test -f './src/gui/value/choice.cpp'; then $(CYGPATH_W) './src/gui/value/choice.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/value/choice.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/value/$(DEPDIR)/magicseteditor-choice.Tpo ./src/gui/value/$(DEPDIR)/magicseteditor-choice.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/value/choice.cpp' object='./src/gui/value/magicseteditor-choice.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/value/magicseteditor-choice.obj `if test -f './src/gui/value/choice.cpp'; then $(CYGPATH_W) './src/gui/value/choice.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/value/choice.cpp'; fi` - -./src/gui/value/magicseteditor-image.o: ./src/gui/value/image.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/value/magicseteditor-image.o -MD -MP -MF ./src/gui/value/$(DEPDIR)/magicseteditor-image.Tpo -c -o ./src/gui/value/magicseteditor-image.o `test -f './src/gui/value/image.cpp' || echo '$(srcdir)/'`./src/gui/value/image.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/value/$(DEPDIR)/magicseteditor-image.Tpo ./src/gui/value/$(DEPDIR)/magicseteditor-image.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/value/image.cpp' object='./src/gui/value/magicseteditor-image.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/value/magicseteditor-image.o `test -f './src/gui/value/image.cpp' || echo '$(srcdir)/'`./src/gui/value/image.cpp - -./src/gui/value/magicseteditor-image.obj: ./src/gui/value/image.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/value/magicseteditor-image.obj -MD -MP -MF ./src/gui/value/$(DEPDIR)/magicseteditor-image.Tpo -c -o ./src/gui/value/magicseteditor-image.obj `if test -f './src/gui/value/image.cpp'; then $(CYGPATH_W) './src/gui/value/image.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/value/image.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/value/$(DEPDIR)/magicseteditor-image.Tpo ./src/gui/value/$(DEPDIR)/magicseteditor-image.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/value/image.cpp' object='./src/gui/value/magicseteditor-image.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/value/magicseteditor-image.obj `if test -f './src/gui/value/image.cpp'; then $(CYGPATH_W) './src/gui/value/image.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/value/image.cpp'; fi` - -./src/gui/magicseteditor-packages_window.o: ./src/gui/packages_window.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-packages_window.o -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-packages_window.Tpo -c -o ./src/gui/magicseteditor-packages_window.o `test -f './src/gui/packages_window.cpp' || echo '$(srcdir)/'`./src/gui/packages_window.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-packages_window.Tpo ./src/gui/$(DEPDIR)/magicseteditor-packages_window.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/packages_window.cpp' object='./src/gui/magicseteditor-packages_window.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-packages_window.o `test -f './src/gui/packages_window.cpp' || echo '$(srcdir)/'`./src/gui/packages_window.cpp - -./src/gui/magicseteditor-packages_window.obj: ./src/gui/packages_window.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-packages_window.obj -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-packages_window.Tpo -c -o ./src/gui/magicseteditor-packages_window.obj `if test -f './src/gui/packages_window.cpp'; then $(CYGPATH_W) './src/gui/packages_window.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/packages_window.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-packages_window.Tpo ./src/gui/$(DEPDIR)/magicseteditor-packages_window.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/packages_window.cpp' object='./src/gui/magicseteditor-packages_window.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-packages_window.obj `if test -f './src/gui/packages_window.cpp'; then $(CYGPATH_W) './src/gui/packages_window.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/packages_window.cpp'; fi` - -./src/gui/set/magicseteditor-keywords_panel.o: ./src/gui/set/keywords_panel.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/set/magicseteditor-keywords_panel.o -MD -MP -MF ./src/gui/set/$(DEPDIR)/magicseteditor-keywords_panel.Tpo -c -o ./src/gui/set/magicseteditor-keywords_panel.o `test -f './src/gui/set/keywords_panel.cpp' || echo '$(srcdir)/'`./src/gui/set/keywords_panel.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/set/$(DEPDIR)/magicseteditor-keywords_panel.Tpo ./src/gui/set/$(DEPDIR)/magicseteditor-keywords_panel.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/set/keywords_panel.cpp' object='./src/gui/set/magicseteditor-keywords_panel.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/set/magicseteditor-keywords_panel.o `test -f './src/gui/set/keywords_panel.cpp' || echo '$(srcdir)/'`./src/gui/set/keywords_panel.cpp - -./src/gui/set/magicseteditor-keywords_panel.obj: ./src/gui/set/keywords_panel.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/set/magicseteditor-keywords_panel.obj -MD -MP -MF ./src/gui/set/$(DEPDIR)/magicseteditor-keywords_panel.Tpo -c -o ./src/gui/set/magicseteditor-keywords_panel.obj `if test -f './src/gui/set/keywords_panel.cpp'; then $(CYGPATH_W) './src/gui/set/keywords_panel.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/set/keywords_panel.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/set/$(DEPDIR)/magicseteditor-keywords_panel.Tpo ./src/gui/set/$(DEPDIR)/magicseteditor-keywords_panel.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/set/keywords_panel.cpp' object='./src/gui/set/magicseteditor-keywords_panel.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/set/magicseteditor-keywords_panel.obj `if test -f './src/gui/set/keywords_panel.cpp'; then $(CYGPATH_W) './src/gui/set/keywords_panel.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/set/keywords_panel.cpp'; fi` - -./src/gui/set/magicseteditor-panel.o: ./src/gui/set/panel.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/set/magicseteditor-panel.o -MD -MP -MF ./src/gui/set/$(DEPDIR)/magicseteditor-panel.Tpo -c -o ./src/gui/set/magicseteditor-panel.o `test -f './src/gui/set/panel.cpp' || echo '$(srcdir)/'`./src/gui/set/panel.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/set/$(DEPDIR)/magicseteditor-panel.Tpo ./src/gui/set/$(DEPDIR)/magicseteditor-panel.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/set/panel.cpp' object='./src/gui/set/magicseteditor-panel.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/set/magicseteditor-panel.o `test -f './src/gui/set/panel.cpp' || echo '$(srcdir)/'`./src/gui/set/panel.cpp - -./src/gui/set/magicseteditor-panel.obj: ./src/gui/set/panel.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/set/magicseteditor-panel.obj -MD -MP -MF ./src/gui/set/$(DEPDIR)/magicseteditor-panel.Tpo -c -o ./src/gui/set/magicseteditor-panel.obj `if test -f './src/gui/set/panel.cpp'; then $(CYGPATH_W) './src/gui/set/panel.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/set/panel.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/set/$(DEPDIR)/magicseteditor-panel.Tpo ./src/gui/set/$(DEPDIR)/magicseteditor-panel.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/set/panel.cpp' object='./src/gui/set/magicseteditor-panel.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/set/magicseteditor-panel.obj `if test -f './src/gui/set/panel.cpp'; then $(CYGPATH_W) './src/gui/set/panel.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/set/panel.cpp'; fi` - -./src/gui/set/magicseteditor-random_pack_panel.o: ./src/gui/set/random_pack_panel.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/set/magicseteditor-random_pack_panel.o -MD -MP -MF ./src/gui/set/$(DEPDIR)/magicseteditor-random_pack_panel.Tpo -c -o ./src/gui/set/magicseteditor-random_pack_panel.o `test -f './src/gui/set/random_pack_panel.cpp' || echo '$(srcdir)/'`./src/gui/set/random_pack_panel.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/set/$(DEPDIR)/magicseteditor-random_pack_panel.Tpo ./src/gui/set/$(DEPDIR)/magicseteditor-random_pack_panel.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/set/random_pack_panel.cpp' object='./src/gui/set/magicseteditor-random_pack_panel.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/set/magicseteditor-random_pack_panel.o `test -f './src/gui/set/random_pack_panel.cpp' || echo '$(srcdir)/'`./src/gui/set/random_pack_panel.cpp - -./src/gui/set/magicseteditor-random_pack_panel.obj: ./src/gui/set/random_pack_panel.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/set/magicseteditor-random_pack_panel.obj -MD -MP -MF ./src/gui/set/$(DEPDIR)/magicseteditor-random_pack_panel.Tpo -c -o ./src/gui/set/magicseteditor-random_pack_panel.obj `if test -f './src/gui/set/random_pack_panel.cpp'; then $(CYGPATH_W) './src/gui/set/random_pack_panel.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/set/random_pack_panel.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/set/$(DEPDIR)/magicseteditor-random_pack_panel.Tpo ./src/gui/set/$(DEPDIR)/magicseteditor-random_pack_panel.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/set/random_pack_panel.cpp' object='./src/gui/set/magicseteditor-random_pack_panel.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/set/magicseteditor-random_pack_panel.obj `if test -f './src/gui/set/random_pack_panel.cpp'; then $(CYGPATH_W) './src/gui/set/random_pack_panel.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/set/random_pack_panel.cpp'; fi` - -./src/gui/set/magicseteditor-window.o: ./src/gui/set/window.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/set/magicseteditor-window.o -MD -MP -MF ./src/gui/set/$(DEPDIR)/magicseteditor-window.Tpo -c -o ./src/gui/set/magicseteditor-window.o `test -f './src/gui/set/window.cpp' || echo '$(srcdir)/'`./src/gui/set/window.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/set/$(DEPDIR)/magicseteditor-window.Tpo ./src/gui/set/$(DEPDIR)/magicseteditor-window.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/set/window.cpp' object='./src/gui/set/magicseteditor-window.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/set/magicseteditor-window.o `test -f './src/gui/set/window.cpp' || echo '$(srcdir)/'`./src/gui/set/window.cpp - -./src/gui/set/magicseteditor-window.obj: ./src/gui/set/window.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/set/magicseteditor-window.obj -MD -MP -MF ./src/gui/set/$(DEPDIR)/magicseteditor-window.Tpo -c -o ./src/gui/set/magicseteditor-window.obj `if test -f './src/gui/set/window.cpp'; then $(CYGPATH_W) './src/gui/set/window.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/set/window.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/set/$(DEPDIR)/magicseteditor-window.Tpo ./src/gui/set/$(DEPDIR)/magicseteditor-window.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/set/window.cpp' object='./src/gui/set/magicseteditor-window.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/set/magicseteditor-window.obj `if test -f './src/gui/set/window.cpp'; then $(CYGPATH_W) './src/gui/set/window.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/set/window.cpp'; fi` - -./src/gui/set/magicseteditor-stats_panel.o: ./src/gui/set/stats_panel.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/set/magicseteditor-stats_panel.o -MD -MP -MF ./src/gui/set/$(DEPDIR)/magicseteditor-stats_panel.Tpo -c -o ./src/gui/set/magicseteditor-stats_panel.o `test -f './src/gui/set/stats_panel.cpp' || echo '$(srcdir)/'`./src/gui/set/stats_panel.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/set/$(DEPDIR)/magicseteditor-stats_panel.Tpo ./src/gui/set/$(DEPDIR)/magicseteditor-stats_panel.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/set/stats_panel.cpp' object='./src/gui/set/magicseteditor-stats_panel.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/set/magicseteditor-stats_panel.o `test -f './src/gui/set/stats_panel.cpp' || echo '$(srcdir)/'`./src/gui/set/stats_panel.cpp - -./src/gui/set/magicseteditor-stats_panel.obj: ./src/gui/set/stats_panel.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/set/magicseteditor-stats_panel.obj -MD -MP -MF ./src/gui/set/$(DEPDIR)/magicseteditor-stats_panel.Tpo -c -o ./src/gui/set/magicseteditor-stats_panel.obj `if test -f './src/gui/set/stats_panel.cpp'; then $(CYGPATH_W) './src/gui/set/stats_panel.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/set/stats_panel.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/set/$(DEPDIR)/magicseteditor-stats_panel.Tpo ./src/gui/set/$(DEPDIR)/magicseteditor-stats_panel.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/set/stats_panel.cpp' object='./src/gui/set/magicseteditor-stats_panel.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/set/magicseteditor-stats_panel.obj `if test -f './src/gui/set/stats_panel.cpp'; then $(CYGPATH_W) './src/gui/set/stats_panel.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/set/stats_panel.cpp'; fi` - -./src/gui/set/magicseteditor-cards_panel.o: ./src/gui/set/cards_panel.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/set/magicseteditor-cards_panel.o -MD -MP -MF ./src/gui/set/$(DEPDIR)/magicseteditor-cards_panel.Tpo -c -o ./src/gui/set/magicseteditor-cards_panel.o `test -f './src/gui/set/cards_panel.cpp' || echo '$(srcdir)/'`./src/gui/set/cards_panel.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/set/$(DEPDIR)/magicseteditor-cards_panel.Tpo ./src/gui/set/$(DEPDIR)/magicseteditor-cards_panel.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/set/cards_panel.cpp' object='./src/gui/set/magicseteditor-cards_panel.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/set/magicseteditor-cards_panel.o `test -f './src/gui/set/cards_panel.cpp' || echo '$(srcdir)/'`./src/gui/set/cards_panel.cpp - -./src/gui/set/magicseteditor-cards_panel.obj: ./src/gui/set/cards_panel.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/set/magicseteditor-cards_panel.obj -MD -MP -MF ./src/gui/set/$(DEPDIR)/magicseteditor-cards_panel.Tpo -c -o ./src/gui/set/magicseteditor-cards_panel.obj `if test -f './src/gui/set/cards_panel.cpp'; then $(CYGPATH_W) './src/gui/set/cards_panel.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/set/cards_panel.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/set/$(DEPDIR)/magicseteditor-cards_panel.Tpo ./src/gui/set/$(DEPDIR)/magicseteditor-cards_panel.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/set/cards_panel.cpp' object='./src/gui/set/magicseteditor-cards_panel.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/set/magicseteditor-cards_panel.obj `if test -f './src/gui/set/cards_panel.cpp'; then $(CYGPATH_W) './src/gui/set/cards_panel.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/set/cards_panel.cpp'; fi` - -./src/gui/set/magicseteditor-style_panel.o: ./src/gui/set/style_panel.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/set/magicseteditor-style_panel.o -MD -MP -MF ./src/gui/set/$(DEPDIR)/magicseteditor-style_panel.Tpo -c -o ./src/gui/set/magicseteditor-style_panel.o `test -f './src/gui/set/style_panel.cpp' || echo '$(srcdir)/'`./src/gui/set/style_panel.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/set/$(DEPDIR)/magicseteditor-style_panel.Tpo ./src/gui/set/$(DEPDIR)/magicseteditor-style_panel.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/set/style_panel.cpp' object='./src/gui/set/magicseteditor-style_panel.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/set/magicseteditor-style_panel.o `test -f './src/gui/set/style_panel.cpp' || echo '$(srcdir)/'`./src/gui/set/style_panel.cpp - -./src/gui/set/magicseteditor-style_panel.obj: ./src/gui/set/style_panel.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/set/magicseteditor-style_panel.obj -MD -MP -MF ./src/gui/set/$(DEPDIR)/magicseteditor-style_panel.Tpo -c -o ./src/gui/set/magicseteditor-style_panel.obj `if test -f './src/gui/set/style_panel.cpp'; then $(CYGPATH_W) './src/gui/set/style_panel.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/set/style_panel.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/set/$(DEPDIR)/magicseteditor-style_panel.Tpo ./src/gui/set/$(DEPDIR)/magicseteditor-style_panel.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/set/style_panel.cpp' object='./src/gui/set/magicseteditor-style_panel.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/set/magicseteditor-style_panel.obj `if test -f './src/gui/set/style_panel.cpp'; then $(CYGPATH_W) './src/gui/set/style_panel.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/set/style_panel.cpp'; fi` - -./src/gui/set/magicseteditor-console_panel.o: ./src/gui/set/console_panel.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/set/magicseteditor-console_panel.o -MD -MP -MF ./src/gui/set/$(DEPDIR)/magicseteditor-console_panel.Tpo -c -o ./src/gui/set/magicseteditor-console_panel.o `test -f './src/gui/set/console_panel.cpp' || echo '$(srcdir)/'`./src/gui/set/console_panel.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/set/$(DEPDIR)/magicseteditor-console_panel.Tpo ./src/gui/set/$(DEPDIR)/magicseteditor-console_panel.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/set/console_panel.cpp' object='./src/gui/set/magicseteditor-console_panel.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/set/magicseteditor-console_panel.o `test -f './src/gui/set/console_panel.cpp' || echo '$(srcdir)/'`./src/gui/set/console_panel.cpp - -./src/gui/set/magicseteditor-console_panel.obj: ./src/gui/set/console_panel.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/set/magicseteditor-console_panel.obj -MD -MP -MF ./src/gui/set/$(DEPDIR)/magicseteditor-console_panel.Tpo -c -o ./src/gui/set/magicseteditor-console_panel.obj `if test -f './src/gui/set/console_panel.cpp'; then $(CYGPATH_W) './src/gui/set/console_panel.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/set/console_panel.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/set/$(DEPDIR)/magicseteditor-console_panel.Tpo ./src/gui/set/$(DEPDIR)/magicseteditor-console_panel.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/set/console_panel.cpp' object='./src/gui/set/magicseteditor-console_panel.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/set/magicseteditor-console_panel.obj `if test -f './src/gui/set/console_panel.cpp'; then $(CYGPATH_W) './src/gui/set/console_panel.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/set/console_panel.cpp'; fi` - -./src/gui/set/magicseteditor-set_info_panel.o: ./src/gui/set/set_info_panel.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/set/magicseteditor-set_info_panel.o -MD -MP -MF ./src/gui/set/$(DEPDIR)/magicseteditor-set_info_panel.Tpo -c -o ./src/gui/set/magicseteditor-set_info_panel.o `test -f './src/gui/set/set_info_panel.cpp' || echo '$(srcdir)/'`./src/gui/set/set_info_panel.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/set/$(DEPDIR)/magicseteditor-set_info_panel.Tpo ./src/gui/set/$(DEPDIR)/magicseteditor-set_info_panel.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/set/set_info_panel.cpp' object='./src/gui/set/magicseteditor-set_info_panel.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/set/magicseteditor-set_info_panel.o `test -f './src/gui/set/set_info_panel.cpp' || echo '$(srcdir)/'`./src/gui/set/set_info_panel.cpp - -./src/gui/set/magicseteditor-set_info_panel.obj: ./src/gui/set/set_info_panel.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/set/magicseteditor-set_info_panel.obj -MD -MP -MF ./src/gui/set/$(DEPDIR)/magicseteditor-set_info_panel.Tpo -c -o ./src/gui/set/magicseteditor-set_info_panel.obj `if test -f './src/gui/set/set_info_panel.cpp'; then $(CYGPATH_W) './src/gui/set/set_info_panel.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/set/set_info_panel.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/set/$(DEPDIR)/magicseteditor-set_info_panel.Tpo ./src/gui/set/$(DEPDIR)/magicseteditor-set_info_panel.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/set/set_info_panel.cpp' object='./src/gui/set/magicseteditor-set_info_panel.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/set/magicseteditor-set_info_panel.obj `if test -f './src/gui/set/set_info_panel.cpp'; then $(CYGPATH_W) './src/gui/set/set_info_panel.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/set/set_info_panel.cpp'; fi` - -./src/gui/magicseteditor-html_export_window.o: ./src/gui/html_export_window.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-html_export_window.o -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-html_export_window.Tpo -c -o ./src/gui/magicseteditor-html_export_window.o `test -f './src/gui/html_export_window.cpp' || echo '$(srcdir)/'`./src/gui/html_export_window.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-html_export_window.Tpo ./src/gui/$(DEPDIR)/magicseteditor-html_export_window.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/html_export_window.cpp' object='./src/gui/magicseteditor-html_export_window.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-html_export_window.o `test -f './src/gui/html_export_window.cpp' || echo '$(srcdir)/'`./src/gui/html_export_window.cpp - -./src/gui/magicseteditor-html_export_window.obj: ./src/gui/html_export_window.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-html_export_window.obj -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-html_export_window.Tpo -c -o ./src/gui/magicseteditor-html_export_window.obj `if test -f './src/gui/html_export_window.cpp'; then $(CYGPATH_W) './src/gui/html_export_window.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/html_export_window.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-html_export_window.Tpo ./src/gui/$(DEPDIR)/magicseteditor-html_export_window.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/html_export_window.cpp' object='./src/gui/magicseteditor-html_export_window.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-html_export_window.obj `if test -f './src/gui/html_export_window.cpp'; then $(CYGPATH_W) './src/gui/html_export_window.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/html_export_window.cpp'; fi` - -./src/gui/magicseteditor-new_window.o: ./src/gui/new_window.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-new_window.o -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-new_window.Tpo -c -o ./src/gui/magicseteditor-new_window.o `test -f './src/gui/new_window.cpp' || echo '$(srcdir)/'`./src/gui/new_window.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-new_window.Tpo ./src/gui/$(DEPDIR)/magicseteditor-new_window.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/new_window.cpp' object='./src/gui/magicseteditor-new_window.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-new_window.o `test -f './src/gui/new_window.cpp' || echo '$(srcdir)/'`./src/gui/new_window.cpp - -./src/gui/magicseteditor-new_window.obj: ./src/gui/new_window.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-new_window.obj -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-new_window.Tpo -c -o ./src/gui/magicseteditor-new_window.obj `if test -f './src/gui/new_window.cpp'; then $(CYGPATH_W) './src/gui/new_window.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/new_window.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-new_window.Tpo ./src/gui/$(DEPDIR)/magicseteditor-new_window.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/new_window.cpp' object='./src/gui/magicseteditor-new_window.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-new_window.obj `if test -f './src/gui/new_window.cpp'; then $(CYGPATH_W) './src/gui/new_window.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/new_window.cpp'; fi` - -./src/gui/magicseteditor-thumbnail_thread.o: ./src/gui/thumbnail_thread.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-thumbnail_thread.o -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-thumbnail_thread.Tpo -c -o ./src/gui/magicseteditor-thumbnail_thread.o `test -f './src/gui/thumbnail_thread.cpp' || echo '$(srcdir)/'`./src/gui/thumbnail_thread.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-thumbnail_thread.Tpo ./src/gui/$(DEPDIR)/magicseteditor-thumbnail_thread.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/thumbnail_thread.cpp' object='./src/gui/magicseteditor-thumbnail_thread.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-thumbnail_thread.o `test -f './src/gui/thumbnail_thread.cpp' || echo '$(srcdir)/'`./src/gui/thumbnail_thread.cpp - -./src/gui/magicseteditor-thumbnail_thread.obj: ./src/gui/thumbnail_thread.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-thumbnail_thread.obj -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-thumbnail_thread.Tpo -c -o ./src/gui/magicseteditor-thumbnail_thread.obj `if test -f './src/gui/thumbnail_thread.cpp'; then $(CYGPATH_W) './src/gui/thumbnail_thread.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/thumbnail_thread.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-thumbnail_thread.Tpo ./src/gui/$(DEPDIR)/magicseteditor-thumbnail_thread.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/thumbnail_thread.cpp' object='./src/gui/magicseteditor-thumbnail_thread.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-thumbnail_thread.obj `if test -f './src/gui/thumbnail_thread.cpp'; then $(CYGPATH_W) './src/gui/thumbnail_thread.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/thumbnail_thread.cpp'; fi` - -./src/gui/magicseteditor-util.o: ./src/gui/util.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-util.o -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-util.Tpo -c -o ./src/gui/magicseteditor-util.o `test -f './src/gui/util.cpp' || echo '$(srcdir)/'`./src/gui/util.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-util.Tpo ./src/gui/$(DEPDIR)/magicseteditor-util.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/util.cpp' object='./src/gui/magicseteditor-util.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-util.o `test -f './src/gui/util.cpp' || echo '$(srcdir)/'`./src/gui/util.cpp - -./src/gui/magicseteditor-util.obj: ./src/gui/util.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-util.obj -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-util.Tpo -c -o ./src/gui/magicseteditor-util.obj `if test -f './src/gui/util.cpp'; then $(CYGPATH_W) './src/gui/util.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/util.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-util.Tpo ./src/gui/$(DEPDIR)/magicseteditor-util.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/util.cpp' object='./src/gui/magicseteditor-util.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-util.obj `if test -f './src/gui/util.cpp'; then $(CYGPATH_W) './src/gui/util.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/util.cpp'; fi` - -./src/gui/magicseteditor-welcome_window.o: ./src/gui/welcome_window.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-welcome_window.o -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-welcome_window.Tpo -c -o ./src/gui/magicseteditor-welcome_window.o `test -f './src/gui/welcome_window.cpp' || echo '$(srcdir)/'`./src/gui/welcome_window.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-welcome_window.Tpo ./src/gui/$(DEPDIR)/magicseteditor-welcome_window.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/welcome_window.cpp' object='./src/gui/magicseteditor-welcome_window.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-welcome_window.o `test -f './src/gui/welcome_window.cpp' || echo '$(srcdir)/'`./src/gui/welcome_window.cpp - -./src/gui/magicseteditor-welcome_window.obj: ./src/gui/welcome_window.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-welcome_window.obj -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-welcome_window.Tpo -c -o ./src/gui/magicseteditor-welcome_window.obj `if test -f './src/gui/welcome_window.cpp'; then $(CYGPATH_W) './src/gui/welcome_window.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/welcome_window.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-welcome_window.Tpo ./src/gui/$(DEPDIR)/magicseteditor-welcome_window.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/welcome_window.cpp' object='./src/gui/magicseteditor-welcome_window.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-welcome_window.obj `if test -f './src/gui/welcome_window.cpp'; then $(CYGPATH_W) './src/gui/welcome_window.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/welcome_window.cpp'; fi` - -./src/gui/magicseteditor-auto_replace_window.o: ./src/gui/auto_replace_window.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-auto_replace_window.o -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-auto_replace_window.Tpo -c -o ./src/gui/magicseteditor-auto_replace_window.o `test -f './src/gui/auto_replace_window.cpp' || echo '$(srcdir)/'`./src/gui/auto_replace_window.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-auto_replace_window.Tpo ./src/gui/$(DEPDIR)/magicseteditor-auto_replace_window.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/auto_replace_window.cpp' object='./src/gui/magicseteditor-auto_replace_window.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-auto_replace_window.o `test -f './src/gui/auto_replace_window.cpp' || echo '$(srcdir)/'`./src/gui/auto_replace_window.cpp - -./src/gui/magicseteditor-auto_replace_window.obj: ./src/gui/auto_replace_window.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-auto_replace_window.obj -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-auto_replace_window.Tpo -c -o ./src/gui/magicseteditor-auto_replace_window.obj `if test -f './src/gui/auto_replace_window.cpp'; then $(CYGPATH_W) './src/gui/auto_replace_window.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/auto_replace_window.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-auto_replace_window.Tpo ./src/gui/$(DEPDIR)/magicseteditor-auto_replace_window.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/auto_replace_window.cpp' object='./src/gui/magicseteditor-auto_replace_window.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-auto_replace_window.obj `if test -f './src/gui/auto_replace_window.cpp'; then $(CYGPATH_W) './src/gui/auto_replace_window.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/auto_replace_window.cpp'; fi` - -./src/gui/magicseteditor-image_slice_window.o: ./src/gui/image_slice_window.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-image_slice_window.o -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-image_slice_window.Tpo -c -o ./src/gui/magicseteditor-image_slice_window.o `test -f './src/gui/image_slice_window.cpp' || echo '$(srcdir)/'`./src/gui/image_slice_window.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-image_slice_window.Tpo ./src/gui/$(DEPDIR)/magicseteditor-image_slice_window.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/image_slice_window.cpp' object='./src/gui/magicseteditor-image_slice_window.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-image_slice_window.o `test -f './src/gui/image_slice_window.cpp' || echo '$(srcdir)/'`./src/gui/image_slice_window.cpp - -./src/gui/magicseteditor-image_slice_window.obj: ./src/gui/image_slice_window.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-image_slice_window.obj -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-image_slice_window.Tpo -c -o ./src/gui/magicseteditor-image_slice_window.obj `if test -f './src/gui/image_slice_window.cpp'; then $(CYGPATH_W) './src/gui/image_slice_window.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/image_slice_window.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-image_slice_window.Tpo ./src/gui/$(DEPDIR)/magicseteditor-image_slice_window.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/image_slice_window.cpp' object='./src/gui/magicseteditor-image_slice_window.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-image_slice_window.obj `if test -f './src/gui/image_slice_window.cpp'; then $(CYGPATH_W) './src/gui/image_slice_window.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/image_slice_window.cpp'; fi` - -./src/gui/magicseteditor-about_window.o: ./src/gui/about_window.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-about_window.o -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-about_window.Tpo -c -o ./src/gui/magicseteditor-about_window.o `test -f './src/gui/about_window.cpp' || echo '$(srcdir)/'`./src/gui/about_window.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-about_window.Tpo ./src/gui/$(DEPDIR)/magicseteditor-about_window.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/about_window.cpp' object='./src/gui/magicseteditor-about_window.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-about_window.o `test -f './src/gui/about_window.cpp' || echo '$(srcdir)/'`./src/gui/about_window.cpp - -./src/gui/magicseteditor-about_window.obj: ./src/gui/about_window.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-about_window.obj -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-about_window.Tpo -c -o ./src/gui/magicseteditor-about_window.obj `if test -f './src/gui/about_window.cpp'; then $(CYGPATH_W) './src/gui/about_window.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/about_window.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-about_window.Tpo ./src/gui/$(DEPDIR)/magicseteditor-about_window.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/about_window.cpp' object='./src/gui/magicseteditor-about_window.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-about_window.obj `if test -f './src/gui/about_window.cpp'; then $(CYGPATH_W) './src/gui/about_window.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/about_window.cpp'; fi` - -./src/gui/magicseteditor-print_window.o: ./src/gui/print_window.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-print_window.o -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-print_window.Tpo -c -o ./src/gui/magicseteditor-print_window.o `test -f './src/gui/print_window.cpp' || echo '$(srcdir)/'`./src/gui/print_window.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-print_window.Tpo ./src/gui/$(DEPDIR)/magicseteditor-print_window.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/print_window.cpp' object='./src/gui/magicseteditor-print_window.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-print_window.o `test -f './src/gui/print_window.cpp' || echo '$(srcdir)/'`./src/gui/print_window.cpp - -./src/gui/magicseteditor-print_window.obj: ./src/gui/print_window.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-print_window.obj -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-print_window.Tpo -c -o ./src/gui/magicseteditor-print_window.obj `if test -f './src/gui/print_window.cpp'; then $(CYGPATH_W) './src/gui/print_window.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/print_window.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-print_window.Tpo ./src/gui/$(DEPDIR)/magicseteditor-print_window.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/print_window.cpp' object='./src/gui/magicseteditor-print_window.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-print_window.obj `if test -f './src/gui/print_window.cpp'; then $(CYGPATH_W) './src/gui/print_window.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/print_window.cpp'; fi` - -./src/gui/magicseteditor-images_export_window.o: ./src/gui/images_export_window.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-images_export_window.o -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-images_export_window.Tpo -c -o ./src/gui/magicseteditor-images_export_window.o `test -f './src/gui/images_export_window.cpp' || echo '$(srcdir)/'`./src/gui/images_export_window.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-images_export_window.Tpo ./src/gui/$(DEPDIR)/magicseteditor-images_export_window.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/images_export_window.cpp' object='./src/gui/magicseteditor-images_export_window.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-images_export_window.o `test -f './src/gui/images_export_window.cpp' || echo '$(srcdir)/'`./src/gui/images_export_window.cpp - -./src/gui/magicseteditor-images_export_window.obj: ./src/gui/images_export_window.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-images_export_window.obj -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-images_export_window.Tpo -c -o ./src/gui/magicseteditor-images_export_window.obj `if test -f './src/gui/images_export_window.cpp'; then $(CYGPATH_W) './src/gui/images_export_window.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/images_export_window.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-images_export_window.Tpo ./src/gui/$(DEPDIR)/magicseteditor-images_export_window.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/images_export_window.cpp' object='./src/gui/magicseteditor-images_export_window.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-images_export_window.obj `if test -f './src/gui/images_export_window.cpp'; then $(CYGPATH_W) './src/gui/images_export_window.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/images_export_window.cpp'; fi` - -./src/gui/magicseteditor-update_checker.o: ./src/gui/update_checker.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-update_checker.o -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-update_checker.Tpo -c -o ./src/gui/magicseteditor-update_checker.o `test -f './src/gui/update_checker.cpp' || echo '$(srcdir)/'`./src/gui/update_checker.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-update_checker.Tpo ./src/gui/$(DEPDIR)/magicseteditor-update_checker.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/update_checker.cpp' object='./src/gui/magicseteditor-update_checker.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-update_checker.o `test -f './src/gui/update_checker.cpp' || echo '$(srcdir)/'`./src/gui/update_checker.cpp - -./src/gui/magicseteditor-update_checker.obj: ./src/gui/update_checker.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-update_checker.obj -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-update_checker.Tpo -c -o ./src/gui/magicseteditor-update_checker.obj `if test -f './src/gui/update_checker.cpp'; then $(CYGPATH_W) './src/gui/update_checker.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/update_checker.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-update_checker.Tpo ./src/gui/$(DEPDIR)/magicseteditor-update_checker.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/update_checker.cpp' object='./src/gui/magicseteditor-update_checker.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-update_checker.obj `if test -f './src/gui/update_checker.cpp'; then $(CYGPATH_W) './src/gui/update_checker.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/update_checker.cpp'; fi` - -./src/gui/magicseteditor-icon_menu.o: ./src/gui/icon_menu.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-icon_menu.o -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-icon_menu.Tpo -c -o ./src/gui/magicseteditor-icon_menu.o `test -f './src/gui/icon_menu.cpp' || echo '$(srcdir)/'`./src/gui/icon_menu.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-icon_menu.Tpo ./src/gui/$(DEPDIR)/magicseteditor-icon_menu.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/icon_menu.cpp' object='./src/gui/magicseteditor-icon_menu.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-icon_menu.o `test -f './src/gui/icon_menu.cpp' || echo '$(srcdir)/'`./src/gui/icon_menu.cpp - -./src/gui/magicseteditor-icon_menu.obj: ./src/gui/icon_menu.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-icon_menu.obj -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-icon_menu.Tpo -c -o ./src/gui/magicseteditor-icon_menu.obj `if test -f './src/gui/icon_menu.cpp'; then $(CYGPATH_W) './src/gui/icon_menu.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/icon_menu.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-icon_menu.Tpo ./src/gui/$(DEPDIR)/magicseteditor-icon_menu.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/icon_menu.cpp' object='./src/gui/magicseteditor-icon_menu.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-icon_menu.obj `if test -f './src/gui/icon_menu.cpp'; then $(CYGPATH_W) './src/gui/icon_menu.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/icon_menu.cpp'; fi` - -./src/magicseteditor-code_template.o: ./src/code_template.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/magicseteditor-code_template.o -MD -MP -MF ./src/$(DEPDIR)/magicseteditor-code_template.Tpo -c -o ./src/magicseteditor-code_template.o `test -f './src/code_template.cpp' || echo '$(srcdir)/'`./src/code_template.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/$(DEPDIR)/magicseteditor-code_template.Tpo ./src/$(DEPDIR)/magicseteditor-code_template.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/code_template.cpp' object='./src/magicseteditor-code_template.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/magicseteditor-code_template.o `test -f './src/code_template.cpp' || echo '$(srcdir)/'`./src/code_template.cpp - -./src/magicseteditor-code_template.obj: ./src/code_template.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/magicseteditor-code_template.obj -MD -MP -MF ./src/$(DEPDIR)/magicseteditor-code_template.Tpo -c -o ./src/magicseteditor-code_template.obj `if test -f './src/code_template.cpp'; then $(CYGPATH_W) './src/code_template.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/code_template.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/$(DEPDIR)/magicseteditor-code_template.Tpo ./src/$(DEPDIR)/magicseteditor-code_template.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/code_template.cpp' object='./src/magicseteditor-code_template.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/magicseteditor-code_template.obj `if test -f './src/code_template.cpp'; then $(CYGPATH_W) './src/code_template.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/code_template.cpp'; fi` - -./src/util/magicseteditor-error.o: ./src/util/error.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/magicseteditor-error.o -MD -MP -MF ./src/util/$(DEPDIR)/magicseteditor-error.Tpo -c -o ./src/util/magicseteditor-error.o `test -f './src/util/error.cpp' || echo '$(srcdir)/'`./src/util/error.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/$(DEPDIR)/magicseteditor-error.Tpo ./src/util/$(DEPDIR)/magicseteditor-error.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/error.cpp' object='./src/util/magicseteditor-error.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/magicseteditor-error.o `test -f './src/util/error.cpp' || echo '$(srcdir)/'`./src/util/error.cpp - -./src/util/magicseteditor-error.obj: ./src/util/error.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/magicseteditor-error.obj -MD -MP -MF ./src/util/$(DEPDIR)/magicseteditor-error.Tpo -c -o ./src/util/magicseteditor-error.obj `if test -f './src/util/error.cpp'; then $(CYGPATH_W) './src/util/error.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/error.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/$(DEPDIR)/magicseteditor-error.Tpo ./src/util/$(DEPDIR)/magicseteditor-error.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/error.cpp' object='./src/util/magicseteditor-error.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/magicseteditor-error.obj `if test -f './src/util/error.cpp'; then $(CYGPATH_W) './src/util/error.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/error.cpp'; fi` - -./src/util/magicseteditor-file_utils.o: ./src/util/file_utils.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/magicseteditor-file_utils.o -MD -MP -MF ./src/util/$(DEPDIR)/magicseteditor-file_utils.Tpo -c -o ./src/util/magicseteditor-file_utils.o `test -f './src/util/file_utils.cpp' || echo '$(srcdir)/'`./src/util/file_utils.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/$(DEPDIR)/magicseteditor-file_utils.Tpo ./src/util/$(DEPDIR)/magicseteditor-file_utils.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/file_utils.cpp' object='./src/util/magicseteditor-file_utils.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/magicseteditor-file_utils.o `test -f './src/util/file_utils.cpp' || echo '$(srcdir)/'`./src/util/file_utils.cpp - -./src/util/magicseteditor-file_utils.obj: ./src/util/file_utils.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/magicseteditor-file_utils.obj -MD -MP -MF ./src/util/$(DEPDIR)/magicseteditor-file_utils.Tpo -c -o ./src/util/magicseteditor-file_utils.obj `if test -f './src/util/file_utils.cpp'; then $(CYGPATH_W) './src/util/file_utils.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/file_utils.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/$(DEPDIR)/magicseteditor-file_utils.Tpo ./src/util/$(DEPDIR)/magicseteditor-file_utils.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/file_utils.cpp' object='./src/util/magicseteditor-file_utils.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/magicseteditor-file_utils.obj `if test -f './src/util/file_utils.cpp'; then $(CYGPATH_W) './src/util/file_utils.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/file_utils.cpp'; fi` - -./src/util/magicseteditor-alignment.o: ./src/util/alignment.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/magicseteditor-alignment.o -MD -MP -MF ./src/util/$(DEPDIR)/magicseteditor-alignment.Tpo -c -o ./src/util/magicseteditor-alignment.o `test -f './src/util/alignment.cpp' || echo '$(srcdir)/'`./src/util/alignment.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/$(DEPDIR)/magicseteditor-alignment.Tpo ./src/util/$(DEPDIR)/magicseteditor-alignment.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/alignment.cpp' object='./src/util/magicseteditor-alignment.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/magicseteditor-alignment.o `test -f './src/util/alignment.cpp' || echo '$(srcdir)/'`./src/util/alignment.cpp - -./src/util/magicseteditor-alignment.obj: ./src/util/alignment.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/magicseteditor-alignment.obj -MD -MP -MF ./src/util/$(DEPDIR)/magicseteditor-alignment.Tpo -c -o ./src/util/magicseteditor-alignment.obj `if test -f './src/util/alignment.cpp'; then $(CYGPATH_W) './src/util/alignment.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/alignment.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/$(DEPDIR)/magicseteditor-alignment.Tpo ./src/util/$(DEPDIR)/magicseteditor-alignment.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/alignment.cpp' object='./src/util/magicseteditor-alignment.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/magicseteditor-alignment.obj `if test -f './src/util/alignment.cpp'; then $(CYGPATH_W) './src/util/alignment.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/alignment.cpp'; fi` - -./src/util/magicseteditor-string.o: ./src/util/string.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/magicseteditor-string.o -MD -MP -MF ./src/util/$(DEPDIR)/magicseteditor-string.Tpo -c -o ./src/util/magicseteditor-string.o `test -f './src/util/string.cpp' || echo '$(srcdir)/'`./src/util/string.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/$(DEPDIR)/magicseteditor-string.Tpo ./src/util/$(DEPDIR)/magicseteditor-string.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/string.cpp' object='./src/util/magicseteditor-string.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/magicseteditor-string.o `test -f './src/util/string.cpp' || echo '$(srcdir)/'`./src/util/string.cpp - -./src/util/magicseteditor-string.obj: ./src/util/string.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/magicseteditor-string.obj -MD -MP -MF ./src/util/$(DEPDIR)/magicseteditor-string.Tpo -c -o ./src/util/magicseteditor-string.obj `if test -f './src/util/string.cpp'; then $(CYGPATH_W) './src/util/string.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/string.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/$(DEPDIR)/magicseteditor-string.Tpo ./src/util/$(DEPDIR)/magicseteditor-string.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/string.cpp' object='./src/util/magicseteditor-string.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/magicseteditor-string.obj `if test -f './src/util/string.cpp'; then $(CYGPATH_W) './src/util/string.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/string.cpp'; fi` - -./src/util/magicseteditor-tagged_string.o: ./src/util/tagged_string.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/magicseteditor-tagged_string.o -MD -MP -MF ./src/util/$(DEPDIR)/magicseteditor-tagged_string.Tpo -c -o ./src/util/magicseteditor-tagged_string.o `test -f './src/util/tagged_string.cpp' || echo '$(srcdir)/'`./src/util/tagged_string.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/$(DEPDIR)/magicseteditor-tagged_string.Tpo ./src/util/$(DEPDIR)/magicseteditor-tagged_string.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/tagged_string.cpp' object='./src/util/magicseteditor-tagged_string.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/magicseteditor-tagged_string.o `test -f './src/util/tagged_string.cpp' || echo '$(srcdir)/'`./src/util/tagged_string.cpp - -./src/util/magicseteditor-tagged_string.obj: ./src/util/tagged_string.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/magicseteditor-tagged_string.obj -MD -MP -MF ./src/util/$(DEPDIR)/magicseteditor-tagged_string.Tpo -c -o ./src/util/magicseteditor-tagged_string.obj `if test -f './src/util/tagged_string.cpp'; then $(CYGPATH_W) './src/util/tagged_string.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/tagged_string.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/$(DEPDIR)/magicseteditor-tagged_string.Tpo ./src/util/$(DEPDIR)/magicseteditor-tagged_string.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/tagged_string.cpp' object='./src/util/magicseteditor-tagged_string.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/magicseteditor-tagged_string.obj `if test -f './src/util/tagged_string.cpp'; then $(CYGPATH_W) './src/util/tagged_string.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/tagged_string.cpp'; fi` - -./src/util/magicseteditor-age.o: ./src/util/age.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/magicseteditor-age.o -MD -MP -MF ./src/util/$(DEPDIR)/magicseteditor-age.Tpo -c -o ./src/util/magicseteditor-age.o `test -f './src/util/age.cpp' || echo '$(srcdir)/'`./src/util/age.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/$(DEPDIR)/magicseteditor-age.Tpo ./src/util/$(DEPDIR)/magicseteditor-age.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/age.cpp' object='./src/util/magicseteditor-age.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/magicseteditor-age.o `test -f './src/util/age.cpp' || echo '$(srcdir)/'`./src/util/age.cpp - -./src/util/magicseteditor-age.obj: ./src/util/age.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/magicseteditor-age.obj -MD -MP -MF ./src/util/$(DEPDIR)/magicseteditor-age.Tpo -c -o ./src/util/magicseteditor-age.obj `if test -f './src/util/age.cpp'; then $(CYGPATH_W) './src/util/age.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/age.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/$(DEPDIR)/magicseteditor-age.Tpo ./src/util/$(DEPDIR)/magicseteditor-age.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/age.cpp' object='./src/util/magicseteditor-age.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/magicseteditor-age.obj `if test -f './src/util/age.cpp'; then $(CYGPATH_W) './src/util/age.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/age.cpp'; fi` - -./src/util/magicseteditor-action_stack.o: ./src/util/action_stack.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/magicseteditor-action_stack.o -MD -MP -MF ./src/util/$(DEPDIR)/magicseteditor-action_stack.Tpo -c -o ./src/util/magicseteditor-action_stack.o `test -f './src/util/action_stack.cpp' || echo '$(srcdir)/'`./src/util/action_stack.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/$(DEPDIR)/magicseteditor-action_stack.Tpo ./src/util/$(DEPDIR)/magicseteditor-action_stack.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/action_stack.cpp' object='./src/util/magicseteditor-action_stack.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/magicseteditor-action_stack.o `test -f './src/util/action_stack.cpp' || echo '$(srcdir)/'`./src/util/action_stack.cpp - -./src/util/magicseteditor-action_stack.obj: ./src/util/action_stack.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/magicseteditor-action_stack.obj -MD -MP -MF ./src/util/$(DEPDIR)/magicseteditor-action_stack.Tpo -c -o ./src/util/magicseteditor-action_stack.obj `if test -f './src/util/action_stack.cpp'; then $(CYGPATH_W) './src/util/action_stack.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/action_stack.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/$(DEPDIR)/magicseteditor-action_stack.Tpo ./src/util/$(DEPDIR)/magicseteditor-action_stack.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/action_stack.cpp' object='./src/util/magicseteditor-action_stack.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/magicseteditor-action_stack.obj `if test -f './src/util/action_stack.cpp'; then $(CYGPATH_W) './src/util/action_stack.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/action_stack.cpp'; fi` - -./src/util/magicseteditor-regex.o: ./src/util/regex.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/magicseteditor-regex.o -MD -MP -MF ./src/util/$(DEPDIR)/magicseteditor-regex.Tpo -c -o ./src/util/magicseteditor-regex.o `test -f './src/util/regex.cpp' || echo '$(srcdir)/'`./src/util/regex.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/$(DEPDIR)/magicseteditor-regex.Tpo ./src/util/$(DEPDIR)/magicseteditor-regex.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/regex.cpp' object='./src/util/magicseteditor-regex.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/magicseteditor-regex.o `test -f './src/util/regex.cpp' || echo '$(srcdir)/'`./src/util/regex.cpp - -./src/util/magicseteditor-regex.obj: ./src/util/regex.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/magicseteditor-regex.obj -MD -MP -MF ./src/util/$(DEPDIR)/magicseteditor-regex.Tpo -c -o ./src/util/magicseteditor-regex.obj `if test -f './src/util/regex.cpp'; then $(CYGPATH_W) './src/util/regex.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/regex.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/$(DEPDIR)/magicseteditor-regex.Tpo ./src/util/$(DEPDIR)/magicseteditor-regex.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/regex.cpp' object='./src/util/magicseteditor-regex.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/magicseteditor-regex.obj `if test -f './src/util/regex.cpp'; then $(CYGPATH_W) './src/util/regex.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/regex.cpp'; fi` - -./src/util/magicseteditor-vcs.o: ./src/util/vcs.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/magicseteditor-vcs.o -MD -MP -MF ./src/util/$(DEPDIR)/magicseteditor-vcs.Tpo -c -o ./src/util/magicseteditor-vcs.o `test -f './src/util/vcs.cpp' || echo '$(srcdir)/'`./src/util/vcs.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/$(DEPDIR)/magicseteditor-vcs.Tpo ./src/util/$(DEPDIR)/magicseteditor-vcs.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/vcs.cpp' object='./src/util/magicseteditor-vcs.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/magicseteditor-vcs.o `test -f './src/util/vcs.cpp' || echo '$(srcdir)/'`./src/util/vcs.cpp - -./src/util/magicseteditor-vcs.obj: ./src/util/vcs.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/magicseteditor-vcs.obj -MD -MP -MF ./src/util/$(DEPDIR)/magicseteditor-vcs.Tpo -c -o ./src/util/magicseteditor-vcs.obj `if test -f './src/util/vcs.cpp'; then $(CYGPATH_W) './src/util/vcs.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/vcs.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/$(DEPDIR)/magicseteditor-vcs.Tpo ./src/util/$(DEPDIR)/magicseteditor-vcs.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/vcs.cpp' object='./src/util/magicseteditor-vcs.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/magicseteditor-vcs.obj `if test -f './src/util/vcs.cpp'; then $(CYGPATH_W) './src/util/vcs.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/vcs.cpp'; fi` - -./src/util/magicseteditor-rotation.o: ./src/util/rotation.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/magicseteditor-rotation.o -MD -MP -MF ./src/util/$(DEPDIR)/magicseteditor-rotation.Tpo -c -o ./src/util/magicseteditor-rotation.o `test -f './src/util/rotation.cpp' || echo '$(srcdir)/'`./src/util/rotation.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/$(DEPDIR)/magicseteditor-rotation.Tpo ./src/util/$(DEPDIR)/magicseteditor-rotation.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/rotation.cpp' object='./src/util/magicseteditor-rotation.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/magicseteditor-rotation.o `test -f './src/util/rotation.cpp' || echo '$(srcdir)/'`./src/util/rotation.cpp - -./src/util/magicseteditor-rotation.obj: ./src/util/rotation.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/magicseteditor-rotation.obj -MD -MP -MF ./src/util/$(DEPDIR)/magicseteditor-rotation.Tpo -c -o ./src/util/magicseteditor-rotation.obj `if test -f './src/util/rotation.cpp'; then $(CYGPATH_W) './src/util/rotation.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/rotation.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/$(DEPDIR)/magicseteditor-rotation.Tpo ./src/util/$(DEPDIR)/magicseteditor-rotation.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/rotation.cpp' object='./src/util/magicseteditor-rotation.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/magicseteditor-rotation.obj `if test -f './src/util/rotation.cpp'; then $(CYGPATH_W) './src/util/rotation.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/rotation.cpp'; fi` - -./src/util/magicseteditor-spec_sort.o: ./src/util/spec_sort.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/magicseteditor-spec_sort.o -MD -MP -MF ./src/util/$(DEPDIR)/magicseteditor-spec_sort.Tpo -c -o ./src/util/magicseteditor-spec_sort.o `test -f './src/util/spec_sort.cpp' || echo '$(srcdir)/'`./src/util/spec_sort.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/$(DEPDIR)/magicseteditor-spec_sort.Tpo ./src/util/$(DEPDIR)/magicseteditor-spec_sort.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/spec_sort.cpp' object='./src/util/magicseteditor-spec_sort.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/magicseteditor-spec_sort.o `test -f './src/util/spec_sort.cpp' || echo '$(srcdir)/'`./src/util/spec_sort.cpp - -./src/util/magicseteditor-spec_sort.obj: ./src/util/spec_sort.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/magicseteditor-spec_sort.obj -MD -MP -MF ./src/util/$(DEPDIR)/magicseteditor-spec_sort.Tpo -c -o ./src/util/magicseteditor-spec_sort.obj `if test -f './src/util/spec_sort.cpp'; then $(CYGPATH_W) './src/util/spec_sort.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/spec_sort.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/$(DEPDIR)/magicseteditor-spec_sort.Tpo ./src/util/$(DEPDIR)/magicseteditor-spec_sort.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/spec_sort.cpp' object='./src/util/magicseteditor-spec_sort.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/magicseteditor-spec_sort.obj `if test -f './src/util/spec_sort.cpp'; then $(CYGPATH_W) './src/util/spec_sort.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/spec_sort.cpp'; fi` - -./src/util/magicseteditor-spell_checker.o: ./src/util/spell_checker.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/magicseteditor-spell_checker.o -MD -MP -MF ./src/util/$(DEPDIR)/magicseteditor-spell_checker.Tpo -c -o ./src/util/magicseteditor-spell_checker.o `test -f './src/util/spell_checker.cpp' || echo '$(srcdir)/'`./src/util/spell_checker.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/$(DEPDIR)/magicseteditor-spell_checker.Tpo ./src/util/$(DEPDIR)/magicseteditor-spell_checker.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/spell_checker.cpp' object='./src/util/magicseteditor-spell_checker.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/magicseteditor-spell_checker.o `test -f './src/util/spell_checker.cpp' || echo '$(srcdir)/'`./src/util/spell_checker.cpp - -./src/util/magicseteditor-spell_checker.obj: ./src/util/spell_checker.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/magicseteditor-spell_checker.obj -MD -MP -MF ./src/util/$(DEPDIR)/magicseteditor-spell_checker.Tpo -c -o ./src/util/magicseteditor-spell_checker.obj `if test -f './src/util/spell_checker.cpp'; then $(CYGPATH_W) './src/util/spell_checker.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/spell_checker.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/$(DEPDIR)/magicseteditor-spell_checker.Tpo ./src/util/$(DEPDIR)/magicseteditor-spell_checker.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/spell_checker.cpp' object='./src/util/magicseteditor-spell_checker.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/magicseteditor-spell_checker.obj `if test -f './src/util/spell_checker.cpp'; then $(CYGPATH_W) './src/util/spell_checker.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/spell_checker.cpp'; fi` - -./src/util/magicseteditor-version.o: ./src/util/version.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/magicseteditor-version.o -MD -MP -MF ./src/util/$(DEPDIR)/magicseteditor-version.Tpo -c -o ./src/util/magicseteditor-version.o `test -f './src/util/version.cpp' || echo '$(srcdir)/'`./src/util/version.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/$(DEPDIR)/magicseteditor-version.Tpo ./src/util/$(DEPDIR)/magicseteditor-version.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/version.cpp' object='./src/util/magicseteditor-version.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/magicseteditor-version.o `test -f './src/util/version.cpp' || echo '$(srcdir)/'`./src/util/version.cpp - -./src/util/magicseteditor-version.obj: ./src/util/version.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/magicseteditor-version.obj -MD -MP -MF ./src/util/$(DEPDIR)/magicseteditor-version.Tpo -c -o ./src/util/magicseteditor-version.obj `if test -f './src/util/version.cpp'; then $(CYGPATH_W) './src/util/version.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/version.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/$(DEPDIR)/magicseteditor-version.Tpo ./src/util/$(DEPDIR)/magicseteditor-version.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/version.cpp' object='./src/util/magicseteditor-version.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/magicseteditor-version.obj `if test -f './src/util/version.cpp'; then $(CYGPATH_W) './src/util/version.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/version.cpp'; fi` - -./src/util/io/magicseteditor-get_member.o: ./src/util/io/get_member.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/io/magicseteditor-get_member.o -MD -MP -MF ./src/util/io/$(DEPDIR)/magicseteditor-get_member.Tpo -c -o ./src/util/io/magicseteditor-get_member.o `test -f './src/util/io/get_member.cpp' || echo '$(srcdir)/'`./src/util/io/get_member.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/io/$(DEPDIR)/magicseteditor-get_member.Tpo ./src/util/io/$(DEPDIR)/magicseteditor-get_member.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/io/get_member.cpp' object='./src/util/io/magicseteditor-get_member.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/io/magicseteditor-get_member.o `test -f './src/util/io/get_member.cpp' || echo '$(srcdir)/'`./src/util/io/get_member.cpp - -./src/util/io/magicseteditor-get_member.obj: ./src/util/io/get_member.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/io/magicseteditor-get_member.obj -MD -MP -MF ./src/util/io/$(DEPDIR)/magicseteditor-get_member.Tpo -c -o ./src/util/io/magicseteditor-get_member.obj `if test -f './src/util/io/get_member.cpp'; then $(CYGPATH_W) './src/util/io/get_member.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/io/get_member.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/io/$(DEPDIR)/magicseteditor-get_member.Tpo ./src/util/io/$(DEPDIR)/magicseteditor-get_member.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/io/get_member.cpp' object='./src/util/io/magicseteditor-get_member.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/io/magicseteditor-get_member.obj `if test -f './src/util/io/get_member.cpp'; then $(CYGPATH_W) './src/util/io/get_member.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/io/get_member.cpp'; fi` - -./src/util/io/magicseteditor-package_manager.o: ./src/util/io/package_manager.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/io/magicseteditor-package_manager.o -MD -MP -MF ./src/util/io/$(DEPDIR)/magicseteditor-package_manager.Tpo -c -o ./src/util/io/magicseteditor-package_manager.o `test -f './src/util/io/package_manager.cpp' || echo '$(srcdir)/'`./src/util/io/package_manager.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/io/$(DEPDIR)/magicseteditor-package_manager.Tpo ./src/util/io/$(DEPDIR)/magicseteditor-package_manager.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/io/package_manager.cpp' object='./src/util/io/magicseteditor-package_manager.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/io/magicseteditor-package_manager.o `test -f './src/util/io/package_manager.cpp' || echo '$(srcdir)/'`./src/util/io/package_manager.cpp - -./src/util/io/magicseteditor-package_manager.obj: ./src/util/io/package_manager.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/io/magicseteditor-package_manager.obj -MD -MP -MF ./src/util/io/$(DEPDIR)/magicseteditor-package_manager.Tpo -c -o ./src/util/io/magicseteditor-package_manager.obj `if test -f './src/util/io/package_manager.cpp'; then $(CYGPATH_W) './src/util/io/package_manager.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/io/package_manager.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/io/$(DEPDIR)/magicseteditor-package_manager.Tpo ./src/util/io/$(DEPDIR)/magicseteditor-package_manager.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/io/package_manager.cpp' object='./src/util/io/magicseteditor-package_manager.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/io/magicseteditor-package_manager.obj `if test -f './src/util/io/package_manager.cpp'; then $(CYGPATH_W) './src/util/io/package_manager.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/io/package_manager.cpp'; fi` - -./src/util/io/magicseteditor-writer.o: ./src/util/io/writer.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/io/magicseteditor-writer.o -MD -MP -MF ./src/util/io/$(DEPDIR)/magicseteditor-writer.Tpo -c -o ./src/util/io/magicseteditor-writer.o `test -f './src/util/io/writer.cpp' || echo '$(srcdir)/'`./src/util/io/writer.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/io/$(DEPDIR)/magicseteditor-writer.Tpo ./src/util/io/$(DEPDIR)/magicseteditor-writer.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/io/writer.cpp' object='./src/util/io/magicseteditor-writer.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/io/magicseteditor-writer.o `test -f './src/util/io/writer.cpp' || echo '$(srcdir)/'`./src/util/io/writer.cpp - -./src/util/io/magicseteditor-writer.obj: ./src/util/io/writer.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/io/magicseteditor-writer.obj -MD -MP -MF ./src/util/io/$(DEPDIR)/magicseteditor-writer.Tpo -c -o ./src/util/io/magicseteditor-writer.obj `if test -f './src/util/io/writer.cpp'; then $(CYGPATH_W) './src/util/io/writer.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/io/writer.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/io/$(DEPDIR)/magicseteditor-writer.Tpo ./src/util/io/$(DEPDIR)/magicseteditor-writer.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/io/writer.cpp' object='./src/util/io/magicseteditor-writer.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/io/magicseteditor-writer.obj `if test -f './src/util/io/writer.cpp'; then $(CYGPATH_W) './src/util/io/writer.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/io/writer.cpp'; fi` - -./src/util/io/magicseteditor-reader.o: ./src/util/io/reader.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/io/magicseteditor-reader.o -MD -MP -MF ./src/util/io/$(DEPDIR)/magicseteditor-reader.Tpo -c -o ./src/util/io/magicseteditor-reader.o `test -f './src/util/io/reader.cpp' || echo '$(srcdir)/'`./src/util/io/reader.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/io/$(DEPDIR)/magicseteditor-reader.Tpo ./src/util/io/$(DEPDIR)/magicseteditor-reader.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/io/reader.cpp' object='./src/util/io/magicseteditor-reader.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/io/magicseteditor-reader.o `test -f './src/util/io/reader.cpp' || echo '$(srcdir)/'`./src/util/io/reader.cpp - -./src/util/io/magicseteditor-reader.obj: ./src/util/io/reader.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/io/magicseteditor-reader.obj -MD -MP -MF ./src/util/io/$(DEPDIR)/magicseteditor-reader.Tpo -c -o ./src/util/io/magicseteditor-reader.obj `if test -f './src/util/io/reader.cpp'; then $(CYGPATH_W) './src/util/io/reader.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/io/reader.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/io/$(DEPDIR)/magicseteditor-reader.Tpo ./src/util/io/$(DEPDIR)/magicseteditor-reader.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/io/reader.cpp' object='./src/util/io/magicseteditor-reader.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/io/magicseteditor-reader.obj `if test -f './src/util/io/reader.cpp'; then $(CYGPATH_W) './src/util/io/reader.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/io/reader.cpp'; fi` - -./src/util/io/magicseteditor-package.o: ./src/util/io/package.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/io/magicseteditor-package.o -MD -MP -MF ./src/util/io/$(DEPDIR)/magicseteditor-package.Tpo -c -o ./src/util/io/magicseteditor-package.o `test -f './src/util/io/package.cpp' || echo '$(srcdir)/'`./src/util/io/package.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/io/$(DEPDIR)/magicseteditor-package.Tpo ./src/util/io/$(DEPDIR)/magicseteditor-package.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/io/package.cpp' object='./src/util/io/magicseteditor-package.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/io/magicseteditor-package.o `test -f './src/util/io/package.cpp' || echo '$(srcdir)/'`./src/util/io/package.cpp - -./src/util/io/magicseteditor-package.obj: ./src/util/io/package.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/io/magicseteditor-package.obj -MD -MP -MF ./src/util/io/$(DEPDIR)/magicseteditor-package.Tpo -c -o ./src/util/io/magicseteditor-package.obj `if test -f './src/util/io/package.cpp'; then $(CYGPATH_W) './src/util/io/package.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/io/package.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/io/$(DEPDIR)/magicseteditor-package.Tpo ./src/util/io/$(DEPDIR)/magicseteditor-package.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/io/package.cpp' object='./src/util/io/magicseteditor-package.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/io/magicseteditor-package.obj `if test -f './src/util/io/package.cpp'; then $(CYGPATH_W) './src/util/io/package.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/io/package.cpp'; fi` - -./src/util/vcs/magicseteditor-subversion.o: ./src/util/vcs/subversion.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/vcs/magicseteditor-subversion.o -MD -MP -MF ./src/util/vcs/$(DEPDIR)/magicseteditor-subversion.Tpo -c -o ./src/util/vcs/magicseteditor-subversion.o `test -f './src/util/vcs/subversion.cpp' || echo '$(srcdir)/'`./src/util/vcs/subversion.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/vcs/$(DEPDIR)/magicseteditor-subversion.Tpo ./src/util/vcs/$(DEPDIR)/magicseteditor-subversion.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/vcs/subversion.cpp' object='./src/util/vcs/magicseteditor-subversion.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/vcs/magicseteditor-subversion.o `test -f './src/util/vcs/subversion.cpp' || echo '$(srcdir)/'`./src/util/vcs/subversion.cpp - -./src/util/vcs/magicseteditor-subversion.obj: ./src/util/vcs/subversion.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/vcs/magicseteditor-subversion.obj -MD -MP -MF ./src/util/vcs/$(DEPDIR)/magicseteditor-subversion.Tpo -c -o ./src/util/vcs/magicseteditor-subversion.obj `if test -f './src/util/vcs/subversion.cpp'; then $(CYGPATH_W) './src/util/vcs/subversion.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/vcs/subversion.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/vcs/$(DEPDIR)/magicseteditor-subversion.Tpo ./src/util/vcs/$(DEPDIR)/magicseteditor-subversion.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/vcs/subversion.cpp' object='./src/util/vcs/magicseteditor-subversion.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/vcs/magicseteditor-subversion.obj `if test -f './src/util/vcs/subversion.cpp'; then $(CYGPATH_W) './src/util/vcs/subversion.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/vcs/subversion.cpp'; fi` - -./src/render/symbol/magicseteditor-viewer.o: ./src/render/symbol/viewer.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/render/symbol/magicseteditor-viewer.o -MD -MP -MF ./src/render/symbol/$(DEPDIR)/magicseteditor-viewer.Tpo -c -o ./src/render/symbol/magicseteditor-viewer.o `test -f './src/render/symbol/viewer.cpp' || echo '$(srcdir)/'`./src/render/symbol/viewer.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/render/symbol/$(DEPDIR)/magicseteditor-viewer.Tpo ./src/render/symbol/$(DEPDIR)/magicseteditor-viewer.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/render/symbol/viewer.cpp' object='./src/render/symbol/magicseteditor-viewer.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/render/symbol/magicseteditor-viewer.o `test -f './src/render/symbol/viewer.cpp' || echo '$(srcdir)/'`./src/render/symbol/viewer.cpp - -./src/render/symbol/magicseteditor-viewer.obj: ./src/render/symbol/viewer.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/render/symbol/magicseteditor-viewer.obj -MD -MP -MF ./src/render/symbol/$(DEPDIR)/magicseteditor-viewer.Tpo -c -o ./src/render/symbol/magicseteditor-viewer.obj `if test -f './src/render/symbol/viewer.cpp'; then $(CYGPATH_W) './src/render/symbol/viewer.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/render/symbol/viewer.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/render/symbol/$(DEPDIR)/magicseteditor-viewer.Tpo ./src/render/symbol/$(DEPDIR)/magicseteditor-viewer.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/render/symbol/viewer.cpp' object='./src/render/symbol/magicseteditor-viewer.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/render/symbol/magicseteditor-viewer.obj `if test -f './src/render/symbol/viewer.cpp'; then $(CYGPATH_W) './src/render/symbol/viewer.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/render/symbol/viewer.cpp'; fi` - -./src/render/symbol/magicseteditor-filter.o: ./src/render/symbol/filter.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/render/symbol/magicseteditor-filter.o -MD -MP -MF ./src/render/symbol/$(DEPDIR)/magicseteditor-filter.Tpo -c -o ./src/render/symbol/magicseteditor-filter.o `test -f './src/render/symbol/filter.cpp' || echo '$(srcdir)/'`./src/render/symbol/filter.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/render/symbol/$(DEPDIR)/magicseteditor-filter.Tpo ./src/render/symbol/$(DEPDIR)/magicseteditor-filter.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/render/symbol/filter.cpp' object='./src/render/symbol/magicseteditor-filter.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/render/symbol/magicseteditor-filter.o `test -f './src/render/symbol/filter.cpp' || echo '$(srcdir)/'`./src/render/symbol/filter.cpp - -./src/render/symbol/magicseteditor-filter.obj: ./src/render/symbol/filter.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/render/symbol/magicseteditor-filter.obj -MD -MP -MF ./src/render/symbol/$(DEPDIR)/magicseteditor-filter.Tpo -c -o ./src/render/symbol/magicseteditor-filter.obj `if test -f './src/render/symbol/filter.cpp'; then $(CYGPATH_W) './src/render/symbol/filter.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/render/symbol/filter.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/render/symbol/$(DEPDIR)/magicseteditor-filter.Tpo ./src/render/symbol/$(DEPDIR)/magicseteditor-filter.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/render/symbol/filter.cpp' object='./src/render/symbol/magicseteditor-filter.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/render/symbol/magicseteditor-filter.obj `if test -f './src/render/symbol/filter.cpp'; then $(CYGPATH_W) './src/render/symbol/filter.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/render/symbol/filter.cpp'; fi` - -./src/render/value/magicseteditor-symbol.o: ./src/render/value/symbol.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/render/value/magicseteditor-symbol.o -MD -MP -MF ./src/render/value/$(DEPDIR)/magicseteditor-symbol.Tpo -c -o ./src/render/value/magicseteditor-symbol.o `test -f './src/render/value/symbol.cpp' || echo '$(srcdir)/'`./src/render/value/symbol.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/render/value/$(DEPDIR)/magicseteditor-symbol.Tpo ./src/render/value/$(DEPDIR)/magicseteditor-symbol.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/render/value/symbol.cpp' object='./src/render/value/magicseteditor-symbol.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/render/value/magicseteditor-symbol.o `test -f './src/render/value/symbol.cpp' || echo '$(srcdir)/'`./src/render/value/symbol.cpp - -./src/render/value/magicseteditor-symbol.obj: ./src/render/value/symbol.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/render/value/magicseteditor-symbol.obj -MD -MP -MF ./src/render/value/$(DEPDIR)/magicseteditor-symbol.Tpo -c -o ./src/render/value/magicseteditor-symbol.obj `if test -f './src/render/value/symbol.cpp'; then $(CYGPATH_W) './src/render/value/symbol.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/render/value/symbol.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/render/value/$(DEPDIR)/magicseteditor-symbol.Tpo ./src/render/value/$(DEPDIR)/magicseteditor-symbol.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/render/value/symbol.cpp' object='./src/render/value/magicseteditor-symbol.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/render/value/magicseteditor-symbol.obj `if test -f './src/render/value/symbol.cpp'; then $(CYGPATH_W) './src/render/value/symbol.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/render/value/symbol.cpp'; fi` - -./src/render/value/magicseteditor-package_choice.o: ./src/render/value/package_choice.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/render/value/magicseteditor-package_choice.o -MD -MP -MF ./src/render/value/$(DEPDIR)/magicseteditor-package_choice.Tpo -c -o ./src/render/value/magicseteditor-package_choice.o `test -f './src/render/value/package_choice.cpp' || echo '$(srcdir)/'`./src/render/value/package_choice.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/render/value/$(DEPDIR)/magicseteditor-package_choice.Tpo ./src/render/value/$(DEPDIR)/magicseteditor-package_choice.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/render/value/package_choice.cpp' object='./src/render/value/magicseteditor-package_choice.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/render/value/magicseteditor-package_choice.o `test -f './src/render/value/package_choice.cpp' || echo '$(srcdir)/'`./src/render/value/package_choice.cpp - -./src/render/value/magicseteditor-package_choice.obj: ./src/render/value/package_choice.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/render/value/magicseteditor-package_choice.obj -MD -MP -MF ./src/render/value/$(DEPDIR)/magicseteditor-package_choice.Tpo -c -o ./src/render/value/magicseteditor-package_choice.obj `if test -f './src/render/value/package_choice.cpp'; then $(CYGPATH_W) './src/render/value/package_choice.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/render/value/package_choice.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/render/value/$(DEPDIR)/magicseteditor-package_choice.Tpo ./src/render/value/$(DEPDIR)/magicseteditor-package_choice.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/render/value/package_choice.cpp' object='./src/render/value/magicseteditor-package_choice.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/render/value/magicseteditor-package_choice.obj `if test -f './src/render/value/package_choice.cpp'; then $(CYGPATH_W) './src/render/value/package_choice.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/render/value/package_choice.cpp'; fi` - -./src/render/value/magicseteditor-color.o: ./src/render/value/color.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/render/value/magicseteditor-color.o -MD -MP -MF ./src/render/value/$(DEPDIR)/magicseteditor-color.Tpo -c -o ./src/render/value/magicseteditor-color.o `test -f './src/render/value/color.cpp' || echo '$(srcdir)/'`./src/render/value/color.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/render/value/$(DEPDIR)/magicseteditor-color.Tpo ./src/render/value/$(DEPDIR)/magicseteditor-color.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/render/value/color.cpp' object='./src/render/value/magicseteditor-color.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/render/value/magicseteditor-color.o `test -f './src/render/value/color.cpp' || echo '$(srcdir)/'`./src/render/value/color.cpp - -./src/render/value/magicseteditor-color.obj: ./src/render/value/color.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/render/value/magicseteditor-color.obj -MD -MP -MF ./src/render/value/$(DEPDIR)/magicseteditor-color.Tpo -c -o ./src/render/value/magicseteditor-color.obj `if test -f './src/render/value/color.cpp'; then $(CYGPATH_W) './src/render/value/color.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/render/value/color.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/render/value/$(DEPDIR)/magicseteditor-color.Tpo ./src/render/value/$(DEPDIR)/magicseteditor-color.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/render/value/color.cpp' object='./src/render/value/magicseteditor-color.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/render/value/magicseteditor-color.obj `if test -f './src/render/value/color.cpp'; then $(CYGPATH_W) './src/render/value/color.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/render/value/color.cpp'; fi` - -./src/render/value/magicseteditor-viewer.o: ./src/render/value/viewer.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/render/value/magicseteditor-viewer.o -MD -MP -MF ./src/render/value/$(DEPDIR)/magicseteditor-viewer.Tpo -c -o ./src/render/value/magicseteditor-viewer.o `test -f './src/render/value/viewer.cpp' || echo '$(srcdir)/'`./src/render/value/viewer.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/render/value/$(DEPDIR)/magicseteditor-viewer.Tpo ./src/render/value/$(DEPDIR)/magicseteditor-viewer.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/render/value/viewer.cpp' object='./src/render/value/magicseteditor-viewer.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/render/value/magicseteditor-viewer.o `test -f './src/render/value/viewer.cpp' || echo '$(srcdir)/'`./src/render/value/viewer.cpp - -./src/render/value/magicseteditor-viewer.obj: ./src/render/value/viewer.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/render/value/magicseteditor-viewer.obj -MD -MP -MF ./src/render/value/$(DEPDIR)/magicseteditor-viewer.Tpo -c -o ./src/render/value/magicseteditor-viewer.obj `if test -f './src/render/value/viewer.cpp'; then $(CYGPATH_W) './src/render/value/viewer.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/render/value/viewer.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/render/value/$(DEPDIR)/magicseteditor-viewer.Tpo ./src/render/value/$(DEPDIR)/magicseteditor-viewer.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/render/value/viewer.cpp' object='./src/render/value/magicseteditor-viewer.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/render/value/magicseteditor-viewer.obj `if test -f './src/render/value/viewer.cpp'; then $(CYGPATH_W) './src/render/value/viewer.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/render/value/viewer.cpp'; fi` - -./src/render/value/magicseteditor-text.o: ./src/render/value/text.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/render/value/magicseteditor-text.o -MD -MP -MF ./src/render/value/$(DEPDIR)/magicseteditor-text.Tpo -c -o ./src/render/value/magicseteditor-text.o `test -f './src/render/value/text.cpp' || echo '$(srcdir)/'`./src/render/value/text.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/render/value/$(DEPDIR)/magicseteditor-text.Tpo ./src/render/value/$(DEPDIR)/magicseteditor-text.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/render/value/text.cpp' object='./src/render/value/magicseteditor-text.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/render/value/magicseteditor-text.o `test -f './src/render/value/text.cpp' || echo '$(srcdir)/'`./src/render/value/text.cpp - -./src/render/value/magicseteditor-text.obj: ./src/render/value/text.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/render/value/magicseteditor-text.obj -MD -MP -MF ./src/render/value/$(DEPDIR)/magicseteditor-text.Tpo -c -o ./src/render/value/magicseteditor-text.obj `if test -f './src/render/value/text.cpp'; then $(CYGPATH_W) './src/render/value/text.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/render/value/text.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/render/value/$(DEPDIR)/magicseteditor-text.Tpo ./src/render/value/$(DEPDIR)/magicseteditor-text.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/render/value/text.cpp' object='./src/render/value/magicseteditor-text.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/render/value/magicseteditor-text.obj `if test -f './src/render/value/text.cpp'; then $(CYGPATH_W) './src/render/value/text.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/render/value/text.cpp'; fi` - -./src/render/value/magicseteditor-multiple_choice.o: ./src/render/value/multiple_choice.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/render/value/magicseteditor-multiple_choice.o -MD -MP -MF ./src/render/value/$(DEPDIR)/magicseteditor-multiple_choice.Tpo -c -o ./src/render/value/magicseteditor-multiple_choice.o `test -f './src/render/value/multiple_choice.cpp' || echo '$(srcdir)/'`./src/render/value/multiple_choice.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/render/value/$(DEPDIR)/magicseteditor-multiple_choice.Tpo ./src/render/value/$(DEPDIR)/magicseteditor-multiple_choice.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/render/value/multiple_choice.cpp' object='./src/render/value/magicseteditor-multiple_choice.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/render/value/magicseteditor-multiple_choice.o `test -f './src/render/value/multiple_choice.cpp' || echo '$(srcdir)/'`./src/render/value/multiple_choice.cpp - -./src/render/value/magicseteditor-multiple_choice.obj: ./src/render/value/multiple_choice.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/render/value/magicseteditor-multiple_choice.obj -MD -MP -MF ./src/render/value/$(DEPDIR)/magicseteditor-multiple_choice.Tpo -c -o ./src/render/value/magicseteditor-multiple_choice.obj `if test -f './src/render/value/multiple_choice.cpp'; then $(CYGPATH_W) './src/render/value/multiple_choice.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/render/value/multiple_choice.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/render/value/$(DEPDIR)/magicseteditor-multiple_choice.Tpo ./src/render/value/$(DEPDIR)/magicseteditor-multiple_choice.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/render/value/multiple_choice.cpp' object='./src/render/value/magicseteditor-multiple_choice.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/render/value/magicseteditor-multiple_choice.obj `if test -f './src/render/value/multiple_choice.cpp'; then $(CYGPATH_W) './src/render/value/multiple_choice.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/render/value/multiple_choice.cpp'; fi` - -./src/render/value/magicseteditor-information.o: ./src/render/value/information.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/render/value/magicseteditor-information.o -MD -MP -MF ./src/render/value/$(DEPDIR)/magicseteditor-information.Tpo -c -o ./src/render/value/magicseteditor-information.o `test -f './src/render/value/information.cpp' || echo '$(srcdir)/'`./src/render/value/information.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/render/value/$(DEPDIR)/magicseteditor-information.Tpo ./src/render/value/$(DEPDIR)/magicseteditor-information.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/render/value/information.cpp' object='./src/render/value/magicseteditor-information.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/render/value/magicseteditor-information.o `test -f './src/render/value/information.cpp' || echo '$(srcdir)/'`./src/render/value/information.cpp - -./src/render/value/magicseteditor-information.obj: ./src/render/value/information.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/render/value/magicseteditor-information.obj -MD -MP -MF ./src/render/value/$(DEPDIR)/magicseteditor-information.Tpo -c -o ./src/render/value/magicseteditor-information.obj `if test -f './src/render/value/information.cpp'; then $(CYGPATH_W) './src/render/value/information.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/render/value/information.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/render/value/$(DEPDIR)/magicseteditor-information.Tpo ./src/render/value/$(DEPDIR)/magicseteditor-information.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/render/value/information.cpp' object='./src/render/value/magicseteditor-information.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/render/value/magicseteditor-information.obj `if test -f './src/render/value/information.cpp'; then $(CYGPATH_W) './src/render/value/information.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/render/value/information.cpp'; fi` - -./src/render/value/magicseteditor-choice.o: ./src/render/value/choice.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/render/value/magicseteditor-choice.o -MD -MP -MF ./src/render/value/$(DEPDIR)/magicseteditor-choice.Tpo -c -o ./src/render/value/magicseteditor-choice.o `test -f './src/render/value/choice.cpp' || echo '$(srcdir)/'`./src/render/value/choice.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/render/value/$(DEPDIR)/magicseteditor-choice.Tpo ./src/render/value/$(DEPDIR)/magicseteditor-choice.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/render/value/choice.cpp' object='./src/render/value/magicseteditor-choice.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/render/value/magicseteditor-choice.o `test -f './src/render/value/choice.cpp' || echo '$(srcdir)/'`./src/render/value/choice.cpp - -./src/render/value/magicseteditor-choice.obj: ./src/render/value/choice.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/render/value/magicseteditor-choice.obj -MD -MP -MF ./src/render/value/$(DEPDIR)/magicseteditor-choice.Tpo -c -o ./src/render/value/magicseteditor-choice.obj `if test -f './src/render/value/choice.cpp'; then $(CYGPATH_W) './src/render/value/choice.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/render/value/choice.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/render/value/$(DEPDIR)/magicseteditor-choice.Tpo ./src/render/value/$(DEPDIR)/magicseteditor-choice.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/render/value/choice.cpp' object='./src/render/value/magicseteditor-choice.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/render/value/magicseteditor-choice.obj `if test -f './src/render/value/choice.cpp'; then $(CYGPATH_W) './src/render/value/choice.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/render/value/choice.cpp'; fi` - -./src/render/value/magicseteditor-image.o: ./src/render/value/image.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/render/value/magicseteditor-image.o -MD -MP -MF ./src/render/value/$(DEPDIR)/magicseteditor-image.Tpo -c -o ./src/render/value/magicseteditor-image.o `test -f './src/render/value/image.cpp' || echo '$(srcdir)/'`./src/render/value/image.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/render/value/$(DEPDIR)/magicseteditor-image.Tpo ./src/render/value/$(DEPDIR)/magicseteditor-image.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/render/value/image.cpp' object='./src/render/value/magicseteditor-image.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/render/value/magicseteditor-image.o `test -f './src/render/value/image.cpp' || echo '$(srcdir)/'`./src/render/value/image.cpp - -./src/render/value/magicseteditor-image.obj: ./src/render/value/image.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/render/value/magicseteditor-image.obj -MD -MP -MF ./src/render/value/$(DEPDIR)/magicseteditor-image.Tpo -c -o ./src/render/value/magicseteditor-image.obj `if test -f './src/render/value/image.cpp'; then $(CYGPATH_W) './src/render/value/image.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/render/value/image.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/render/value/$(DEPDIR)/magicseteditor-image.Tpo ./src/render/value/$(DEPDIR)/magicseteditor-image.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/render/value/image.cpp' object='./src/render/value/magicseteditor-image.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/render/value/magicseteditor-image.obj `if test -f './src/render/value/image.cpp'; then $(CYGPATH_W) './src/render/value/image.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/render/value/image.cpp'; fi` - -./src/render/text/magicseteditor-symbol.o: ./src/render/text/symbol.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/render/text/magicseteditor-symbol.o -MD -MP -MF ./src/render/text/$(DEPDIR)/magicseteditor-symbol.Tpo -c -o ./src/render/text/magicseteditor-symbol.o `test -f './src/render/text/symbol.cpp' || echo '$(srcdir)/'`./src/render/text/symbol.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/render/text/$(DEPDIR)/magicseteditor-symbol.Tpo ./src/render/text/$(DEPDIR)/magicseteditor-symbol.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/render/text/symbol.cpp' object='./src/render/text/magicseteditor-symbol.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/render/text/magicseteditor-symbol.o `test -f './src/render/text/symbol.cpp' || echo '$(srcdir)/'`./src/render/text/symbol.cpp - -./src/render/text/magicseteditor-symbol.obj: ./src/render/text/symbol.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/render/text/magicseteditor-symbol.obj -MD -MP -MF ./src/render/text/$(DEPDIR)/magicseteditor-symbol.Tpo -c -o ./src/render/text/magicseteditor-symbol.obj `if test -f './src/render/text/symbol.cpp'; then $(CYGPATH_W) './src/render/text/symbol.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/render/text/symbol.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/render/text/$(DEPDIR)/magicseteditor-symbol.Tpo ./src/render/text/$(DEPDIR)/magicseteditor-symbol.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/render/text/symbol.cpp' object='./src/render/text/magicseteditor-symbol.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/render/text/magicseteditor-symbol.obj `if test -f './src/render/text/symbol.cpp'; then $(CYGPATH_W) './src/render/text/symbol.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/render/text/symbol.cpp'; fi` - -./src/render/text/magicseteditor-viewer.o: ./src/render/text/viewer.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/render/text/magicseteditor-viewer.o -MD -MP -MF ./src/render/text/$(DEPDIR)/magicseteditor-viewer.Tpo -c -o ./src/render/text/magicseteditor-viewer.o `test -f './src/render/text/viewer.cpp' || echo '$(srcdir)/'`./src/render/text/viewer.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/render/text/$(DEPDIR)/magicseteditor-viewer.Tpo ./src/render/text/$(DEPDIR)/magicseteditor-viewer.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/render/text/viewer.cpp' object='./src/render/text/magicseteditor-viewer.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/render/text/magicseteditor-viewer.o `test -f './src/render/text/viewer.cpp' || echo '$(srcdir)/'`./src/render/text/viewer.cpp - -./src/render/text/magicseteditor-viewer.obj: ./src/render/text/viewer.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/render/text/magicseteditor-viewer.obj -MD -MP -MF ./src/render/text/$(DEPDIR)/magicseteditor-viewer.Tpo -c -o ./src/render/text/magicseteditor-viewer.obj `if test -f './src/render/text/viewer.cpp'; then $(CYGPATH_W) './src/render/text/viewer.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/render/text/viewer.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/render/text/$(DEPDIR)/magicseteditor-viewer.Tpo ./src/render/text/$(DEPDIR)/magicseteditor-viewer.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/render/text/viewer.cpp' object='./src/render/text/magicseteditor-viewer.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/render/text/magicseteditor-viewer.obj `if test -f './src/render/text/viewer.cpp'; then $(CYGPATH_W) './src/render/text/viewer.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/render/text/viewer.cpp'; fi` - -./src/render/text/magicseteditor-element.o: ./src/render/text/element.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/render/text/magicseteditor-element.o -MD -MP -MF ./src/render/text/$(DEPDIR)/magicseteditor-element.Tpo -c -o ./src/render/text/magicseteditor-element.o `test -f './src/render/text/element.cpp' || echo '$(srcdir)/'`./src/render/text/element.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/render/text/$(DEPDIR)/magicseteditor-element.Tpo ./src/render/text/$(DEPDIR)/magicseteditor-element.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/render/text/element.cpp' object='./src/render/text/magicseteditor-element.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/render/text/magicseteditor-element.o `test -f './src/render/text/element.cpp' || echo '$(srcdir)/'`./src/render/text/element.cpp - -./src/render/text/magicseteditor-element.obj: ./src/render/text/element.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/render/text/magicseteditor-element.obj -MD -MP -MF ./src/render/text/$(DEPDIR)/magicseteditor-element.Tpo -c -o ./src/render/text/magicseteditor-element.obj `if test -f './src/render/text/element.cpp'; then $(CYGPATH_W) './src/render/text/element.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/render/text/element.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/render/text/$(DEPDIR)/magicseteditor-element.Tpo ./src/render/text/$(DEPDIR)/magicseteditor-element.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/render/text/element.cpp' object='./src/render/text/magicseteditor-element.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/render/text/magicseteditor-element.obj `if test -f './src/render/text/element.cpp'; then $(CYGPATH_W) './src/render/text/element.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/render/text/element.cpp'; fi` - -./src/render/text/magicseteditor-font.o: ./src/render/text/font.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/render/text/magicseteditor-font.o -MD -MP -MF ./src/render/text/$(DEPDIR)/magicseteditor-font.Tpo -c -o ./src/render/text/magicseteditor-font.o `test -f './src/render/text/font.cpp' || echo '$(srcdir)/'`./src/render/text/font.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/render/text/$(DEPDIR)/magicseteditor-font.Tpo ./src/render/text/$(DEPDIR)/magicseteditor-font.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/render/text/font.cpp' object='./src/render/text/magicseteditor-font.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/render/text/magicseteditor-font.o `test -f './src/render/text/font.cpp' || echo '$(srcdir)/'`./src/render/text/font.cpp - -./src/render/text/magicseteditor-font.obj: ./src/render/text/font.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/render/text/magicseteditor-font.obj -MD -MP -MF ./src/render/text/$(DEPDIR)/magicseteditor-font.Tpo -c -o ./src/render/text/magicseteditor-font.obj `if test -f './src/render/text/font.cpp'; then $(CYGPATH_W) './src/render/text/font.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/render/text/font.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/render/text/$(DEPDIR)/magicseteditor-font.Tpo ./src/render/text/$(DEPDIR)/magicseteditor-font.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/render/text/font.cpp' object='./src/render/text/magicseteditor-font.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/render/text/magicseteditor-font.obj `if test -f './src/render/text/font.cpp'; then $(CYGPATH_W) './src/render/text/font.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/render/text/font.cpp'; fi` - -./src/render/text/magicseteditor-compound.o: ./src/render/text/compound.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/render/text/magicseteditor-compound.o -MD -MP -MF ./src/render/text/$(DEPDIR)/magicseteditor-compound.Tpo -c -o ./src/render/text/magicseteditor-compound.o `test -f './src/render/text/compound.cpp' || echo '$(srcdir)/'`./src/render/text/compound.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/render/text/$(DEPDIR)/magicseteditor-compound.Tpo ./src/render/text/$(DEPDIR)/magicseteditor-compound.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/render/text/compound.cpp' object='./src/render/text/magicseteditor-compound.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/render/text/magicseteditor-compound.o `test -f './src/render/text/compound.cpp' || echo '$(srcdir)/'`./src/render/text/compound.cpp - -./src/render/text/magicseteditor-compound.obj: ./src/render/text/compound.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/render/text/magicseteditor-compound.obj -MD -MP -MF ./src/render/text/$(DEPDIR)/magicseteditor-compound.Tpo -c -o ./src/render/text/magicseteditor-compound.obj `if test -f './src/render/text/compound.cpp'; then $(CYGPATH_W) './src/render/text/compound.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/render/text/compound.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/render/text/$(DEPDIR)/magicseteditor-compound.Tpo ./src/render/text/$(DEPDIR)/magicseteditor-compound.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/render/text/compound.cpp' object='./src/render/text/magicseteditor-compound.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/render/text/magicseteditor-compound.obj `if test -f './src/render/text/compound.cpp'; then $(CYGPATH_W) './src/render/text/compound.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/render/text/compound.cpp'; fi` - -./src/render/card/magicseteditor-viewer.o: ./src/render/card/viewer.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/render/card/magicseteditor-viewer.o -MD -MP -MF ./src/render/card/$(DEPDIR)/magicseteditor-viewer.Tpo -c -o ./src/render/card/magicseteditor-viewer.o `test -f './src/render/card/viewer.cpp' || echo '$(srcdir)/'`./src/render/card/viewer.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/render/card/$(DEPDIR)/magicseteditor-viewer.Tpo ./src/render/card/$(DEPDIR)/magicseteditor-viewer.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/render/card/viewer.cpp' object='./src/render/card/magicseteditor-viewer.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/render/card/magicseteditor-viewer.o `test -f './src/render/card/viewer.cpp' || echo '$(srcdir)/'`./src/render/card/viewer.cpp - -./src/render/card/magicseteditor-viewer.obj: ./src/render/card/viewer.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/render/card/magicseteditor-viewer.obj -MD -MP -MF ./src/render/card/$(DEPDIR)/magicseteditor-viewer.Tpo -c -o ./src/render/card/magicseteditor-viewer.obj `if test -f './src/render/card/viewer.cpp'; then $(CYGPATH_W) './src/render/card/viewer.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/render/card/viewer.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/render/card/$(DEPDIR)/magicseteditor-viewer.Tpo ./src/render/card/$(DEPDIR)/magicseteditor-viewer.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/render/card/viewer.cpp' object='./src/render/card/magicseteditor-viewer.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/render/card/magicseteditor-viewer.obj `if test -f './src/render/card/viewer.cpp'; then $(CYGPATH_W) './src/render/card/viewer.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/render/card/viewer.cpp'; fi` - -./src/data/magicseteditor-field.o: ./src/data/field.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/magicseteditor-field.o -MD -MP -MF ./src/data/$(DEPDIR)/magicseteditor-field.Tpo -c -o ./src/data/magicseteditor-field.o `test -f './src/data/field.cpp' || echo '$(srcdir)/'`./src/data/field.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/$(DEPDIR)/magicseteditor-field.Tpo ./src/data/$(DEPDIR)/magicseteditor-field.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/field.cpp' object='./src/data/magicseteditor-field.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/magicseteditor-field.o `test -f './src/data/field.cpp' || echo '$(srcdir)/'`./src/data/field.cpp - -./src/data/magicseteditor-field.obj: ./src/data/field.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/magicseteditor-field.obj -MD -MP -MF ./src/data/$(DEPDIR)/magicseteditor-field.Tpo -c -o ./src/data/magicseteditor-field.obj `if test -f './src/data/field.cpp'; then $(CYGPATH_W) './src/data/field.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/field.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/$(DEPDIR)/magicseteditor-field.Tpo ./src/data/$(DEPDIR)/magicseteditor-field.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/field.cpp' object='./src/data/magicseteditor-field.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/magicseteditor-field.obj `if test -f './src/data/field.cpp'; then $(CYGPATH_W) './src/data/field.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/field.cpp'; fi` - -./src/data/magicseteditor-keyword.o: ./src/data/keyword.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/magicseteditor-keyword.o -MD -MP -MF ./src/data/$(DEPDIR)/magicseteditor-keyword.Tpo -c -o ./src/data/magicseteditor-keyword.o `test -f './src/data/keyword.cpp' || echo '$(srcdir)/'`./src/data/keyword.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/$(DEPDIR)/magicseteditor-keyword.Tpo ./src/data/$(DEPDIR)/magicseteditor-keyword.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/keyword.cpp' object='./src/data/magicseteditor-keyword.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/magicseteditor-keyword.o `test -f './src/data/keyword.cpp' || echo '$(srcdir)/'`./src/data/keyword.cpp - -./src/data/magicseteditor-keyword.obj: ./src/data/keyword.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/magicseteditor-keyword.obj -MD -MP -MF ./src/data/$(DEPDIR)/magicseteditor-keyword.Tpo -c -o ./src/data/magicseteditor-keyword.obj `if test -f './src/data/keyword.cpp'; then $(CYGPATH_W) './src/data/keyword.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/keyword.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/$(DEPDIR)/magicseteditor-keyword.Tpo ./src/data/$(DEPDIR)/magicseteditor-keyword.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/keyword.cpp' object='./src/data/magicseteditor-keyword.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/magicseteditor-keyword.obj `if test -f './src/data/keyword.cpp'; then $(CYGPATH_W) './src/data/keyword.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/keyword.cpp'; fi` - -./src/data/magicseteditor-symbol.o: ./src/data/symbol.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/magicseteditor-symbol.o -MD -MP -MF ./src/data/$(DEPDIR)/magicseteditor-symbol.Tpo -c -o ./src/data/magicseteditor-symbol.o `test -f './src/data/symbol.cpp' || echo '$(srcdir)/'`./src/data/symbol.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/$(DEPDIR)/magicseteditor-symbol.Tpo ./src/data/$(DEPDIR)/magicseteditor-symbol.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/symbol.cpp' object='./src/data/magicseteditor-symbol.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/magicseteditor-symbol.o `test -f './src/data/symbol.cpp' || echo '$(srcdir)/'`./src/data/symbol.cpp - -./src/data/magicseteditor-symbol.obj: ./src/data/symbol.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/magicseteditor-symbol.obj -MD -MP -MF ./src/data/$(DEPDIR)/magicseteditor-symbol.Tpo -c -o ./src/data/magicseteditor-symbol.obj `if test -f './src/data/symbol.cpp'; then $(CYGPATH_W) './src/data/symbol.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/symbol.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/$(DEPDIR)/magicseteditor-symbol.Tpo ./src/data/$(DEPDIR)/magicseteditor-symbol.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/symbol.cpp' object='./src/data/magicseteditor-symbol.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/magicseteditor-symbol.obj `if test -f './src/data/symbol.cpp'; then $(CYGPATH_W) './src/data/symbol.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/symbol.cpp'; fi` - -./src/data/magicseteditor-game.o: ./src/data/game.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/magicseteditor-game.o -MD -MP -MF ./src/data/$(DEPDIR)/magicseteditor-game.Tpo -c -o ./src/data/magicseteditor-game.o `test -f './src/data/game.cpp' || echo '$(srcdir)/'`./src/data/game.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/$(DEPDIR)/magicseteditor-game.Tpo ./src/data/$(DEPDIR)/magicseteditor-game.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/game.cpp' object='./src/data/magicseteditor-game.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/magicseteditor-game.o `test -f './src/data/game.cpp' || echo '$(srcdir)/'`./src/data/game.cpp - -./src/data/magicseteditor-game.obj: ./src/data/game.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/magicseteditor-game.obj -MD -MP -MF ./src/data/$(DEPDIR)/magicseteditor-game.Tpo -c -o ./src/data/magicseteditor-game.obj `if test -f './src/data/game.cpp'; then $(CYGPATH_W) './src/data/game.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/game.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/$(DEPDIR)/magicseteditor-game.Tpo ./src/data/$(DEPDIR)/magicseteditor-game.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/game.cpp' object='./src/data/magicseteditor-game.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/magicseteditor-game.obj `if test -f './src/data/game.cpp'; then $(CYGPATH_W) './src/data/game.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/game.cpp'; fi` - -./src/data/magicseteditor-pack.o: ./src/data/pack.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/magicseteditor-pack.o -MD -MP -MF ./src/data/$(DEPDIR)/magicseteditor-pack.Tpo -c -o ./src/data/magicseteditor-pack.o `test -f './src/data/pack.cpp' || echo '$(srcdir)/'`./src/data/pack.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/$(DEPDIR)/magicseteditor-pack.Tpo ./src/data/$(DEPDIR)/magicseteditor-pack.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/pack.cpp' object='./src/data/magicseteditor-pack.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/magicseteditor-pack.o `test -f './src/data/pack.cpp' || echo '$(srcdir)/'`./src/data/pack.cpp - -./src/data/magicseteditor-pack.obj: ./src/data/pack.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/magicseteditor-pack.obj -MD -MP -MF ./src/data/$(DEPDIR)/magicseteditor-pack.Tpo -c -o ./src/data/magicseteditor-pack.obj `if test -f './src/data/pack.cpp'; then $(CYGPATH_W) './src/data/pack.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/pack.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/$(DEPDIR)/magicseteditor-pack.Tpo ./src/data/$(DEPDIR)/magicseteditor-pack.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/pack.cpp' object='./src/data/magicseteditor-pack.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/magicseteditor-pack.obj `if test -f './src/data/pack.cpp'; then $(CYGPATH_W) './src/data/pack.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/pack.cpp'; fi` - -./src/data/field/magicseteditor-symbol.o: ./src/data/field/symbol.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/field/magicseteditor-symbol.o -MD -MP -MF ./src/data/field/$(DEPDIR)/magicseteditor-symbol.Tpo -c -o ./src/data/field/magicseteditor-symbol.o `test -f './src/data/field/symbol.cpp' || echo '$(srcdir)/'`./src/data/field/symbol.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/field/$(DEPDIR)/magicseteditor-symbol.Tpo ./src/data/field/$(DEPDIR)/magicseteditor-symbol.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/field/symbol.cpp' object='./src/data/field/magicseteditor-symbol.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/field/magicseteditor-symbol.o `test -f './src/data/field/symbol.cpp' || echo '$(srcdir)/'`./src/data/field/symbol.cpp - -./src/data/field/magicseteditor-symbol.obj: ./src/data/field/symbol.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/field/magicseteditor-symbol.obj -MD -MP -MF ./src/data/field/$(DEPDIR)/magicseteditor-symbol.Tpo -c -o ./src/data/field/magicseteditor-symbol.obj `if test -f './src/data/field/symbol.cpp'; then $(CYGPATH_W) './src/data/field/symbol.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/field/symbol.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/field/$(DEPDIR)/magicseteditor-symbol.Tpo ./src/data/field/$(DEPDIR)/magicseteditor-symbol.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/field/symbol.cpp' object='./src/data/field/magicseteditor-symbol.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/field/magicseteditor-symbol.obj `if test -f './src/data/field/symbol.cpp'; then $(CYGPATH_W) './src/data/field/symbol.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/field/symbol.cpp'; fi` - -./src/data/field/magicseteditor-package_choice.o: ./src/data/field/package_choice.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/field/magicseteditor-package_choice.o -MD -MP -MF ./src/data/field/$(DEPDIR)/magicseteditor-package_choice.Tpo -c -o ./src/data/field/magicseteditor-package_choice.o `test -f './src/data/field/package_choice.cpp' || echo '$(srcdir)/'`./src/data/field/package_choice.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/field/$(DEPDIR)/magicseteditor-package_choice.Tpo ./src/data/field/$(DEPDIR)/magicseteditor-package_choice.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/field/package_choice.cpp' object='./src/data/field/magicseteditor-package_choice.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/field/magicseteditor-package_choice.o `test -f './src/data/field/package_choice.cpp' || echo '$(srcdir)/'`./src/data/field/package_choice.cpp - -./src/data/field/magicseteditor-package_choice.obj: ./src/data/field/package_choice.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/field/magicseteditor-package_choice.obj -MD -MP -MF ./src/data/field/$(DEPDIR)/magicseteditor-package_choice.Tpo -c -o ./src/data/field/magicseteditor-package_choice.obj `if test -f './src/data/field/package_choice.cpp'; then $(CYGPATH_W) './src/data/field/package_choice.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/field/package_choice.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/field/$(DEPDIR)/magicseteditor-package_choice.Tpo ./src/data/field/$(DEPDIR)/magicseteditor-package_choice.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/field/package_choice.cpp' object='./src/data/field/magicseteditor-package_choice.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/field/magicseteditor-package_choice.obj `if test -f './src/data/field/package_choice.cpp'; then $(CYGPATH_W) './src/data/field/package_choice.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/field/package_choice.cpp'; fi` - -./src/data/field/magicseteditor-color.o: ./src/data/field/color.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/field/magicseteditor-color.o -MD -MP -MF ./src/data/field/$(DEPDIR)/magicseteditor-color.Tpo -c -o ./src/data/field/magicseteditor-color.o `test -f './src/data/field/color.cpp' || echo '$(srcdir)/'`./src/data/field/color.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/field/$(DEPDIR)/magicseteditor-color.Tpo ./src/data/field/$(DEPDIR)/magicseteditor-color.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/field/color.cpp' object='./src/data/field/magicseteditor-color.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/field/magicseteditor-color.o `test -f './src/data/field/color.cpp' || echo '$(srcdir)/'`./src/data/field/color.cpp - -./src/data/field/magicseteditor-color.obj: ./src/data/field/color.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/field/magicseteditor-color.obj -MD -MP -MF ./src/data/field/$(DEPDIR)/magicseteditor-color.Tpo -c -o ./src/data/field/magicseteditor-color.obj `if test -f './src/data/field/color.cpp'; then $(CYGPATH_W) './src/data/field/color.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/field/color.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/field/$(DEPDIR)/magicseteditor-color.Tpo ./src/data/field/$(DEPDIR)/magicseteditor-color.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/field/color.cpp' object='./src/data/field/magicseteditor-color.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/field/magicseteditor-color.obj `if test -f './src/data/field/color.cpp'; then $(CYGPATH_W) './src/data/field/color.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/field/color.cpp'; fi` - -./src/data/field/magicseteditor-text.o: ./src/data/field/text.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/field/magicseteditor-text.o -MD -MP -MF ./src/data/field/$(DEPDIR)/magicseteditor-text.Tpo -c -o ./src/data/field/magicseteditor-text.o `test -f './src/data/field/text.cpp' || echo '$(srcdir)/'`./src/data/field/text.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/field/$(DEPDIR)/magicseteditor-text.Tpo ./src/data/field/$(DEPDIR)/magicseteditor-text.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/field/text.cpp' object='./src/data/field/magicseteditor-text.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/field/magicseteditor-text.o `test -f './src/data/field/text.cpp' || echo '$(srcdir)/'`./src/data/field/text.cpp - -./src/data/field/magicseteditor-text.obj: ./src/data/field/text.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/field/magicseteditor-text.obj -MD -MP -MF ./src/data/field/$(DEPDIR)/magicseteditor-text.Tpo -c -o ./src/data/field/magicseteditor-text.obj `if test -f './src/data/field/text.cpp'; then $(CYGPATH_W) './src/data/field/text.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/field/text.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/field/$(DEPDIR)/magicseteditor-text.Tpo ./src/data/field/$(DEPDIR)/magicseteditor-text.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/field/text.cpp' object='./src/data/field/magicseteditor-text.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/field/magicseteditor-text.obj `if test -f './src/data/field/text.cpp'; then $(CYGPATH_W) './src/data/field/text.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/field/text.cpp'; fi` - -./src/data/field/magicseteditor-multiple_choice.o: ./src/data/field/multiple_choice.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/field/magicseteditor-multiple_choice.o -MD -MP -MF ./src/data/field/$(DEPDIR)/magicseteditor-multiple_choice.Tpo -c -o ./src/data/field/magicseteditor-multiple_choice.o `test -f './src/data/field/multiple_choice.cpp' || echo '$(srcdir)/'`./src/data/field/multiple_choice.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/field/$(DEPDIR)/magicseteditor-multiple_choice.Tpo ./src/data/field/$(DEPDIR)/magicseteditor-multiple_choice.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/field/multiple_choice.cpp' object='./src/data/field/magicseteditor-multiple_choice.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/field/magicseteditor-multiple_choice.o `test -f './src/data/field/multiple_choice.cpp' || echo '$(srcdir)/'`./src/data/field/multiple_choice.cpp - -./src/data/field/magicseteditor-multiple_choice.obj: ./src/data/field/multiple_choice.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/field/magicseteditor-multiple_choice.obj -MD -MP -MF ./src/data/field/$(DEPDIR)/magicseteditor-multiple_choice.Tpo -c -o ./src/data/field/magicseteditor-multiple_choice.obj `if test -f './src/data/field/multiple_choice.cpp'; then $(CYGPATH_W) './src/data/field/multiple_choice.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/field/multiple_choice.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/field/$(DEPDIR)/magicseteditor-multiple_choice.Tpo ./src/data/field/$(DEPDIR)/magicseteditor-multiple_choice.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/field/multiple_choice.cpp' object='./src/data/field/magicseteditor-multiple_choice.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/field/magicseteditor-multiple_choice.obj `if test -f './src/data/field/multiple_choice.cpp'; then $(CYGPATH_W) './src/data/field/multiple_choice.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/field/multiple_choice.cpp'; fi` +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/action/magicseteditor-value.obj `if test -f './src/data/action/value.cpp'; then $(CYGPATH_W) './src/data/action/value.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/action/value.cpp'; fi` ./src/data/field/magicseteditor-boolean.o: ./src/data/field/boolean.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/field/magicseteditor-boolean.o -MD -MP -MF ./src/data/field/$(DEPDIR)/magicseteditor-boolean.Tpo -c -o ./src/data/field/magicseteditor-boolean.o `test -f './src/data/field/boolean.cpp' || echo '$(srcdir)/'`./src/data/field/boolean.cpp @@ -3564,20 +1721,6 @@ distclean-compile: @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/field/magicseteditor-boolean.obj `if test -f './src/data/field/boolean.cpp'; then $(CYGPATH_W) './src/data/field/boolean.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/field/boolean.cpp'; fi` -./src/data/field/magicseteditor-information.o: ./src/data/field/information.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/field/magicseteditor-information.o -MD -MP -MF ./src/data/field/$(DEPDIR)/magicseteditor-information.Tpo -c -o ./src/data/field/magicseteditor-information.o `test -f './src/data/field/information.cpp' || echo '$(srcdir)/'`./src/data/field/information.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/field/$(DEPDIR)/magicseteditor-information.Tpo ./src/data/field/$(DEPDIR)/magicseteditor-information.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/field/information.cpp' object='./src/data/field/magicseteditor-information.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/field/magicseteditor-information.o `test -f './src/data/field/information.cpp' || echo '$(srcdir)/'`./src/data/field/information.cpp - -./src/data/field/magicseteditor-information.obj: ./src/data/field/information.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/field/magicseteditor-information.obj -MD -MP -MF ./src/data/field/$(DEPDIR)/magicseteditor-information.Tpo -c -o ./src/data/field/magicseteditor-information.obj `if test -f './src/data/field/information.cpp'; then $(CYGPATH_W) './src/data/field/information.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/field/information.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/field/$(DEPDIR)/magicseteditor-information.Tpo ./src/data/field/$(DEPDIR)/magicseteditor-information.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/field/information.cpp' object='./src/data/field/magicseteditor-information.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/field/magicseteditor-information.obj `if test -f './src/data/field/information.cpp'; then $(CYGPATH_W) './src/data/field/information.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/field/information.cpp'; fi` - ./src/data/field/magicseteditor-choice.o: ./src/data/field/choice.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/field/magicseteditor-choice.o -MD -MP -MF ./src/data/field/$(DEPDIR)/magicseteditor-choice.Tpo -c -o ./src/data/field/magicseteditor-choice.o `test -f './src/data/field/choice.cpp' || echo '$(srcdir)/'`./src/data/field/choice.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/field/$(DEPDIR)/magicseteditor-choice.Tpo ./src/data/field/$(DEPDIR)/magicseteditor-choice.Po @@ -3592,6 +1735,20 @@ distclean-compile: @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/field/magicseteditor-choice.obj `if test -f './src/data/field/choice.cpp'; then $(CYGPATH_W) './src/data/field/choice.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/field/choice.cpp'; fi` +./src/data/field/magicseteditor-color.o: ./src/data/field/color.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/field/magicseteditor-color.o -MD -MP -MF ./src/data/field/$(DEPDIR)/magicseteditor-color.Tpo -c -o ./src/data/field/magicseteditor-color.o `test -f './src/data/field/color.cpp' || echo '$(srcdir)/'`./src/data/field/color.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/field/$(DEPDIR)/magicseteditor-color.Tpo ./src/data/field/$(DEPDIR)/magicseteditor-color.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/field/color.cpp' object='./src/data/field/magicseteditor-color.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/field/magicseteditor-color.o `test -f './src/data/field/color.cpp' || echo '$(srcdir)/'`./src/data/field/color.cpp + +./src/data/field/magicseteditor-color.obj: ./src/data/field/color.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/field/magicseteditor-color.obj -MD -MP -MF ./src/data/field/$(DEPDIR)/magicseteditor-color.Tpo -c -o ./src/data/field/magicseteditor-color.obj `if test -f './src/data/field/color.cpp'; then $(CYGPATH_W) './src/data/field/color.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/field/color.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/field/$(DEPDIR)/magicseteditor-color.Tpo ./src/data/field/$(DEPDIR)/magicseteditor-color.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/field/color.cpp' object='./src/data/field/magicseteditor-color.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/field/magicseteditor-color.obj `if test -f './src/data/field/color.cpp'; then $(CYGPATH_W) './src/data/field/color.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/field/color.cpp'; fi` + ./src/data/field/magicseteditor-image.o: ./src/data/field/image.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/field/magicseteditor-image.o -MD -MP -MF ./src/data/field/$(DEPDIR)/magicseteditor-image.Tpo -c -o ./src/data/field/magicseteditor-image.o `test -f './src/data/field/image.cpp' || echo '$(srcdir)/'`./src/data/field/image.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/field/$(DEPDIR)/magicseteditor-image.Tpo ./src/data/field/$(DEPDIR)/magicseteditor-image.Po @@ -3606,19 +1763,215 @@ distclean-compile: @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/field/magicseteditor-image.obj `if test -f './src/data/field/image.cpp'; then $(CYGPATH_W) './src/data/field/image.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/field/image.cpp'; fi` -./src/data/magicseteditor-locale.o: ./src/data/locale.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/magicseteditor-locale.o -MD -MP -MF ./src/data/$(DEPDIR)/magicseteditor-locale.Tpo -c -o ./src/data/magicseteditor-locale.o `test -f './src/data/locale.cpp' || echo '$(srcdir)/'`./src/data/locale.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/$(DEPDIR)/magicseteditor-locale.Tpo ./src/data/$(DEPDIR)/magicseteditor-locale.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/locale.cpp' object='./src/data/magicseteditor-locale.o' libtool=no @AMDEPBACKSLASH@ +./src/data/field/magicseteditor-information.o: ./src/data/field/information.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/field/magicseteditor-information.o -MD -MP -MF ./src/data/field/$(DEPDIR)/magicseteditor-information.Tpo -c -o ./src/data/field/magicseteditor-information.o `test -f './src/data/field/information.cpp' || echo '$(srcdir)/'`./src/data/field/information.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/field/$(DEPDIR)/magicseteditor-information.Tpo ./src/data/field/$(DEPDIR)/magicseteditor-information.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/field/information.cpp' object='./src/data/field/magicseteditor-information.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/magicseteditor-locale.o `test -f './src/data/locale.cpp' || echo '$(srcdir)/'`./src/data/locale.cpp +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/field/magicseteditor-information.o `test -f './src/data/field/information.cpp' || echo '$(srcdir)/'`./src/data/field/information.cpp -./src/data/magicseteditor-locale.obj: ./src/data/locale.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/magicseteditor-locale.obj -MD -MP -MF ./src/data/$(DEPDIR)/magicseteditor-locale.Tpo -c -o ./src/data/magicseteditor-locale.obj `if test -f './src/data/locale.cpp'; then $(CYGPATH_W) './src/data/locale.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/locale.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/$(DEPDIR)/magicseteditor-locale.Tpo ./src/data/$(DEPDIR)/magicseteditor-locale.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/locale.cpp' object='./src/data/magicseteditor-locale.obj' libtool=no @AMDEPBACKSLASH@ +./src/data/field/magicseteditor-information.obj: ./src/data/field/information.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/field/magicseteditor-information.obj -MD -MP -MF ./src/data/field/$(DEPDIR)/magicseteditor-information.Tpo -c -o ./src/data/field/magicseteditor-information.obj `if test -f './src/data/field/information.cpp'; then $(CYGPATH_W) './src/data/field/information.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/field/information.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/field/$(DEPDIR)/magicseteditor-information.Tpo ./src/data/field/$(DEPDIR)/magicseteditor-information.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/field/information.cpp' object='./src/data/field/magicseteditor-information.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/magicseteditor-locale.obj `if test -f './src/data/locale.cpp'; then $(CYGPATH_W) './src/data/locale.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/locale.cpp'; fi` +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/field/magicseteditor-information.obj `if test -f './src/data/field/information.cpp'; then $(CYGPATH_W) './src/data/field/information.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/field/information.cpp'; fi` + +./src/data/field/magicseteditor-multiple_choice.o: ./src/data/field/multiple_choice.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/field/magicseteditor-multiple_choice.o -MD -MP -MF ./src/data/field/$(DEPDIR)/magicseteditor-multiple_choice.Tpo -c -o ./src/data/field/magicseteditor-multiple_choice.o `test -f './src/data/field/multiple_choice.cpp' || echo '$(srcdir)/'`./src/data/field/multiple_choice.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/field/$(DEPDIR)/magicseteditor-multiple_choice.Tpo ./src/data/field/$(DEPDIR)/magicseteditor-multiple_choice.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/field/multiple_choice.cpp' object='./src/data/field/magicseteditor-multiple_choice.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/field/magicseteditor-multiple_choice.o `test -f './src/data/field/multiple_choice.cpp' || echo '$(srcdir)/'`./src/data/field/multiple_choice.cpp + +./src/data/field/magicseteditor-multiple_choice.obj: ./src/data/field/multiple_choice.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/field/magicseteditor-multiple_choice.obj -MD -MP -MF ./src/data/field/$(DEPDIR)/magicseteditor-multiple_choice.Tpo -c -o ./src/data/field/magicseteditor-multiple_choice.obj `if test -f './src/data/field/multiple_choice.cpp'; then $(CYGPATH_W) './src/data/field/multiple_choice.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/field/multiple_choice.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/field/$(DEPDIR)/magicseteditor-multiple_choice.Tpo ./src/data/field/$(DEPDIR)/magicseteditor-multiple_choice.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/field/multiple_choice.cpp' object='./src/data/field/magicseteditor-multiple_choice.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/field/magicseteditor-multiple_choice.obj `if test -f './src/data/field/multiple_choice.cpp'; then $(CYGPATH_W) './src/data/field/multiple_choice.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/field/multiple_choice.cpp'; fi` + +./src/data/field/magicseteditor-package_choice.o: ./src/data/field/package_choice.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/field/magicseteditor-package_choice.o -MD -MP -MF ./src/data/field/$(DEPDIR)/magicseteditor-package_choice.Tpo -c -o ./src/data/field/magicseteditor-package_choice.o `test -f './src/data/field/package_choice.cpp' || echo '$(srcdir)/'`./src/data/field/package_choice.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/field/$(DEPDIR)/magicseteditor-package_choice.Tpo ./src/data/field/$(DEPDIR)/magicseteditor-package_choice.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/field/package_choice.cpp' object='./src/data/field/magicseteditor-package_choice.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/field/magicseteditor-package_choice.o `test -f './src/data/field/package_choice.cpp' || echo '$(srcdir)/'`./src/data/field/package_choice.cpp + +./src/data/field/magicseteditor-package_choice.obj: ./src/data/field/package_choice.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/field/magicseteditor-package_choice.obj -MD -MP -MF ./src/data/field/$(DEPDIR)/magicseteditor-package_choice.Tpo -c -o ./src/data/field/magicseteditor-package_choice.obj `if test -f './src/data/field/package_choice.cpp'; then $(CYGPATH_W) './src/data/field/package_choice.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/field/package_choice.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/field/$(DEPDIR)/magicseteditor-package_choice.Tpo ./src/data/field/$(DEPDIR)/magicseteditor-package_choice.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/field/package_choice.cpp' object='./src/data/field/magicseteditor-package_choice.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/field/magicseteditor-package_choice.obj `if test -f './src/data/field/package_choice.cpp'; then $(CYGPATH_W) './src/data/field/package_choice.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/field/package_choice.cpp'; fi` + +./src/data/field/magicseteditor-symbol.o: ./src/data/field/symbol.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/field/magicseteditor-symbol.o -MD -MP -MF ./src/data/field/$(DEPDIR)/magicseteditor-symbol.Tpo -c -o ./src/data/field/magicseteditor-symbol.o `test -f './src/data/field/symbol.cpp' || echo '$(srcdir)/'`./src/data/field/symbol.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/field/$(DEPDIR)/magicseteditor-symbol.Tpo ./src/data/field/$(DEPDIR)/magicseteditor-symbol.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/field/symbol.cpp' object='./src/data/field/magicseteditor-symbol.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/field/magicseteditor-symbol.o `test -f './src/data/field/symbol.cpp' || echo '$(srcdir)/'`./src/data/field/symbol.cpp + +./src/data/field/magicseteditor-symbol.obj: ./src/data/field/symbol.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/field/magicseteditor-symbol.obj -MD -MP -MF ./src/data/field/$(DEPDIR)/magicseteditor-symbol.Tpo -c -o ./src/data/field/magicseteditor-symbol.obj `if test -f './src/data/field/symbol.cpp'; then $(CYGPATH_W) './src/data/field/symbol.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/field/symbol.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/field/$(DEPDIR)/magicseteditor-symbol.Tpo ./src/data/field/$(DEPDIR)/magicseteditor-symbol.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/field/symbol.cpp' object='./src/data/field/magicseteditor-symbol.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/field/magicseteditor-symbol.obj `if test -f './src/data/field/symbol.cpp'; then $(CYGPATH_W) './src/data/field/symbol.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/field/symbol.cpp'; fi` + +./src/data/field/magicseteditor-text.o: ./src/data/field/text.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/field/magicseteditor-text.o -MD -MP -MF ./src/data/field/$(DEPDIR)/magicseteditor-text.Tpo -c -o ./src/data/field/magicseteditor-text.o `test -f './src/data/field/text.cpp' || echo '$(srcdir)/'`./src/data/field/text.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/field/$(DEPDIR)/magicseteditor-text.Tpo ./src/data/field/$(DEPDIR)/magicseteditor-text.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/field/text.cpp' object='./src/data/field/magicseteditor-text.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/field/magicseteditor-text.o `test -f './src/data/field/text.cpp' || echo '$(srcdir)/'`./src/data/field/text.cpp + +./src/data/field/magicseteditor-text.obj: ./src/data/field/text.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/field/magicseteditor-text.obj -MD -MP -MF ./src/data/field/$(DEPDIR)/magicseteditor-text.Tpo -c -o ./src/data/field/magicseteditor-text.obj `if test -f './src/data/field/text.cpp'; then $(CYGPATH_W) './src/data/field/text.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/field/text.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/field/$(DEPDIR)/magicseteditor-text.Tpo ./src/data/field/$(DEPDIR)/magicseteditor-text.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/field/text.cpp' object='./src/data/field/magicseteditor-text.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/field/magicseteditor-text.obj `if test -f './src/data/field/text.cpp'; then $(CYGPATH_W) './src/data/field/text.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/field/text.cpp'; fi` + +./src/data/format/magicseteditor-apprentice.o: ./src/data/format/apprentice.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/format/magicseteditor-apprentice.o -MD -MP -MF ./src/data/format/$(DEPDIR)/magicseteditor-apprentice.Tpo -c -o ./src/data/format/magicseteditor-apprentice.o `test -f './src/data/format/apprentice.cpp' || echo '$(srcdir)/'`./src/data/format/apprentice.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/format/$(DEPDIR)/magicseteditor-apprentice.Tpo ./src/data/format/$(DEPDIR)/magicseteditor-apprentice.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/format/apprentice.cpp' object='./src/data/format/magicseteditor-apprentice.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/format/magicseteditor-apprentice.o `test -f './src/data/format/apprentice.cpp' || echo '$(srcdir)/'`./src/data/format/apprentice.cpp + +./src/data/format/magicseteditor-apprentice.obj: ./src/data/format/apprentice.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/format/magicseteditor-apprentice.obj -MD -MP -MF ./src/data/format/$(DEPDIR)/magicseteditor-apprentice.Tpo -c -o ./src/data/format/magicseteditor-apprentice.obj `if test -f './src/data/format/apprentice.cpp'; then $(CYGPATH_W) './src/data/format/apprentice.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/format/apprentice.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/format/$(DEPDIR)/magicseteditor-apprentice.Tpo ./src/data/format/$(DEPDIR)/magicseteditor-apprentice.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/format/apprentice.cpp' object='./src/data/format/magicseteditor-apprentice.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/format/magicseteditor-apprentice.obj `if test -f './src/data/format/apprentice.cpp'; then $(CYGPATH_W) './src/data/format/apprentice.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/format/apprentice.cpp'; fi` + +./src/data/format/magicseteditor-clipboard.o: ./src/data/format/clipboard.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/format/magicseteditor-clipboard.o -MD -MP -MF ./src/data/format/$(DEPDIR)/magicseteditor-clipboard.Tpo -c -o ./src/data/format/magicseteditor-clipboard.o `test -f './src/data/format/clipboard.cpp' || echo '$(srcdir)/'`./src/data/format/clipboard.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/format/$(DEPDIR)/magicseteditor-clipboard.Tpo ./src/data/format/$(DEPDIR)/magicseteditor-clipboard.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/format/clipboard.cpp' object='./src/data/format/magicseteditor-clipboard.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/format/magicseteditor-clipboard.o `test -f './src/data/format/clipboard.cpp' || echo '$(srcdir)/'`./src/data/format/clipboard.cpp + +./src/data/format/magicseteditor-clipboard.obj: ./src/data/format/clipboard.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/format/magicseteditor-clipboard.obj -MD -MP -MF ./src/data/format/$(DEPDIR)/magicseteditor-clipboard.Tpo -c -o ./src/data/format/magicseteditor-clipboard.obj `if test -f './src/data/format/clipboard.cpp'; then $(CYGPATH_W) './src/data/format/clipboard.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/format/clipboard.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/format/$(DEPDIR)/magicseteditor-clipboard.Tpo ./src/data/format/$(DEPDIR)/magicseteditor-clipboard.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/format/clipboard.cpp' object='./src/data/format/magicseteditor-clipboard.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/format/magicseteditor-clipboard.obj `if test -f './src/data/format/clipboard.cpp'; then $(CYGPATH_W) './src/data/format/clipboard.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/format/clipboard.cpp'; fi` + +./src/data/format/magicseteditor-formats.o: ./src/data/format/formats.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/format/magicseteditor-formats.o -MD -MP -MF ./src/data/format/$(DEPDIR)/magicseteditor-formats.Tpo -c -o ./src/data/format/magicseteditor-formats.o `test -f './src/data/format/formats.cpp' || echo '$(srcdir)/'`./src/data/format/formats.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/format/$(DEPDIR)/magicseteditor-formats.Tpo ./src/data/format/$(DEPDIR)/magicseteditor-formats.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/format/formats.cpp' object='./src/data/format/magicseteditor-formats.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/format/magicseteditor-formats.o `test -f './src/data/format/formats.cpp' || echo '$(srcdir)/'`./src/data/format/formats.cpp + +./src/data/format/magicseteditor-formats.obj: ./src/data/format/formats.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/format/magicseteditor-formats.obj -MD -MP -MF ./src/data/format/$(DEPDIR)/magicseteditor-formats.Tpo -c -o ./src/data/format/magicseteditor-formats.obj `if test -f './src/data/format/formats.cpp'; then $(CYGPATH_W) './src/data/format/formats.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/format/formats.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/format/$(DEPDIR)/magicseteditor-formats.Tpo ./src/data/format/$(DEPDIR)/magicseteditor-formats.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/format/formats.cpp' object='./src/data/format/magicseteditor-formats.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/format/magicseteditor-formats.obj `if test -f './src/data/format/formats.cpp'; then $(CYGPATH_W) './src/data/format/formats.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/format/formats.cpp'; fi` + +./src/data/format/magicseteditor-html.o: ./src/data/format/html.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/format/magicseteditor-html.o -MD -MP -MF ./src/data/format/$(DEPDIR)/magicseteditor-html.Tpo -c -o ./src/data/format/magicseteditor-html.o `test -f './src/data/format/html.cpp' || echo '$(srcdir)/'`./src/data/format/html.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/format/$(DEPDIR)/magicseteditor-html.Tpo ./src/data/format/$(DEPDIR)/magicseteditor-html.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/format/html.cpp' object='./src/data/format/magicseteditor-html.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/format/magicseteditor-html.o `test -f './src/data/format/html.cpp' || echo '$(srcdir)/'`./src/data/format/html.cpp + +./src/data/format/magicseteditor-html.obj: ./src/data/format/html.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/format/magicseteditor-html.obj -MD -MP -MF ./src/data/format/$(DEPDIR)/magicseteditor-html.Tpo -c -o ./src/data/format/magicseteditor-html.obj `if test -f './src/data/format/html.cpp'; then $(CYGPATH_W) './src/data/format/html.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/format/html.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/format/$(DEPDIR)/magicseteditor-html.Tpo ./src/data/format/$(DEPDIR)/magicseteditor-html.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/format/html.cpp' object='./src/data/format/magicseteditor-html.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/format/magicseteditor-html.obj `if test -f './src/data/format/html.cpp'; then $(CYGPATH_W) './src/data/format/html.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/format/html.cpp'; fi` + +./src/data/format/magicseteditor-image.o: ./src/data/format/image.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/format/magicseteditor-image.o -MD -MP -MF ./src/data/format/$(DEPDIR)/magicseteditor-image.Tpo -c -o ./src/data/format/magicseteditor-image.o `test -f './src/data/format/image.cpp' || echo '$(srcdir)/'`./src/data/format/image.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/format/$(DEPDIR)/magicseteditor-image.Tpo ./src/data/format/$(DEPDIR)/magicseteditor-image.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/format/image.cpp' object='./src/data/format/magicseteditor-image.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/format/magicseteditor-image.o `test -f './src/data/format/image.cpp' || echo '$(srcdir)/'`./src/data/format/image.cpp + +./src/data/format/magicseteditor-image.obj: ./src/data/format/image.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/format/magicseteditor-image.obj -MD -MP -MF ./src/data/format/$(DEPDIR)/magicseteditor-image.Tpo -c -o ./src/data/format/magicseteditor-image.obj `if test -f './src/data/format/image.cpp'; then $(CYGPATH_W) './src/data/format/image.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/format/image.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/format/$(DEPDIR)/magicseteditor-image.Tpo ./src/data/format/$(DEPDIR)/magicseteditor-image.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/format/image.cpp' object='./src/data/format/magicseteditor-image.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/format/magicseteditor-image.obj `if test -f './src/data/format/image.cpp'; then $(CYGPATH_W) './src/data/format/image.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/format/image.cpp'; fi` + +./src/data/format/magicseteditor-image_to_symbol.o: ./src/data/format/image_to_symbol.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/format/magicseteditor-image_to_symbol.o -MD -MP -MF ./src/data/format/$(DEPDIR)/magicseteditor-image_to_symbol.Tpo -c -o ./src/data/format/magicseteditor-image_to_symbol.o `test -f './src/data/format/image_to_symbol.cpp' || echo '$(srcdir)/'`./src/data/format/image_to_symbol.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/format/$(DEPDIR)/magicseteditor-image_to_symbol.Tpo ./src/data/format/$(DEPDIR)/magicseteditor-image_to_symbol.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/format/image_to_symbol.cpp' object='./src/data/format/magicseteditor-image_to_symbol.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/format/magicseteditor-image_to_symbol.o `test -f './src/data/format/image_to_symbol.cpp' || echo '$(srcdir)/'`./src/data/format/image_to_symbol.cpp + +./src/data/format/magicseteditor-image_to_symbol.obj: ./src/data/format/image_to_symbol.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/format/magicseteditor-image_to_symbol.obj -MD -MP -MF ./src/data/format/$(DEPDIR)/magicseteditor-image_to_symbol.Tpo -c -o ./src/data/format/magicseteditor-image_to_symbol.obj `if test -f './src/data/format/image_to_symbol.cpp'; then $(CYGPATH_W) './src/data/format/image_to_symbol.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/format/image_to_symbol.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/format/$(DEPDIR)/magicseteditor-image_to_symbol.Tpo ./src/data/format/$(DEPDIR)/magicseteditor-image_to_symbol.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/format/image_to_symbol.cpp' object='./src/data/format/magicseteditor-image_to_symbol.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/format/magicseteditor-image_to_symbol.obj `if test -f './src/data/format/image_to_symbol.cpp'; then $(CYGPATH_W) './src/data/format/image_to_symbol.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/format/image_to_symbol.cpp'; fi` + +./src/data/format/magicseteditor-mse1.o: ./src/data/format/mse1.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/format/magicseteditor-mse1.o -MD -MP -MF ./src/data/format/$(DEPDIR)/magicseteditor-mse1.Tpo -c -o ./src/data/format/magicseteditor-mse1.o `test -f './src/data/format/mse1.cpp' || echo '$(srcdir)/'`./src/data/format/mse1.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/format/$(DEPDIR)/magicseteditor-mse1.Tpo ./src/data/format/$(DEPDIR)/magicseteditor-mse1.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/format/mse1.cpp' object='./src/data/format/magicseteditor-mse1.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/format/magicseteditor-mse1.o `test -f './src/data/format/mse1.cpp' || echo '$(srcdir)/'`./src/data/format/mse1.cpp + +./src/data/format/magicseteditor-mse1.obj: ./src/data/format/mse1.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/format/magicseteditor-mse1.obj -MD -MP -MF ./src/data/format/$(DEPDIR)/magicseteditor-mse1.Tpo -c -o ./src/data/format/magicseteditor-mse1.obj `if test -f './src/data/format/mse1.cpp'; then $(CYGPATH_W) './src/data/format/mse1.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/format/mse1.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/format/$(DEPDIR)/magicseteditor-mse1.Tpo ./src/data/format/$(DEPDIR)/magicseteditor-mse1.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/format/mse1.cpp' object='./src/data/format/magicseteditor-mse1.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/format/magicseteditor-mse1.obj `if test -f './src/data/format/mse1.cpp'; then $(CYGPATH_W) './src/data/format/mse1.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/format/mse1.cpp'; fi` + +./src/data/format/magicseteditor-mse2.o: ./src/data/format/mse2.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/format/magicseteditor-mse2.o -MD -MP -MF ./src/data/format/$(DEPDIR)/magicseteditor-mse2.Tpo -c -o ./src/data/format/magicseteditor-mse2.o `test -f './src/data/format/mse2.cpp' || echo '$(srcdir)/'`./src/data/format/mse2.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/format/$(DEPDIR)/magicseteditor-mse2.Tpo ./src/data/format/$(DEPDIR)/magicseteditor-mse2.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/format/mse2.cpp' object='./src/data/format/magicseteditor-mse2.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/format/magicseteditor-mse2.o `test -f './src/data/format/mse2.cpp' || echo '$(srcdir)/'`./src/data/format/mse2.cpp + +./src/data/format/magicseteditor-mse2.obj: ./src/data/format/mse2.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/format/magicseteditor-mse2.obj -MD -MP -MF ./src/data/format/$(DEPDIR)/magicseteditor-mse2.Tpo -c -o ./src/data/format/magicseteditor-mse2.obj `if test -f './src/data/format/mse2.cpp'; then $(CYGPATH_W) './src/data/format/mse2.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/format/mse2.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/format/$(DEPDIR)/magicseteditor-mse2.Tpo ./src/data/format/$(DEPDIR)/magicseteditor-mse2.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/format/mse2.cpp' object='./src/data/format/magicseteditor-mse2.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/format/magicseteditor-mse2.obj `if test -f './src/data/format/mse2.cpp'; then $(CYGPATH_W) './src/data/format/mse2.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/format/mse2.cpp'; fi` + +./src/data/format/magicseteditor-mtg_editor.o: ./src/data/format/mtg_editor.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/format/magicseteditor-mtg_editor.o -MD -MP -MF ./src/data/format/$(DEPDIR)/magicseteditor-mtg_editor.Tpo -c -o ./src/data/format/magicseteditor-mtg_editor.o `test -f './src/data/format/mtg_editor.cpp' || echo '$(srcdir)/'`./src/data/format/mtg_editor.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/format/$(DEPDIR)/magicseteditor-mtg_editor.Tpo ./src/data/format/$(DEPDIR)/magicseteditor-mtg_editor.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/format/mtg_editor.cpp' object='./src/data/format/magicseteditor-mtg_editor.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/format/magicseteditor-mtg_editor.o `test -f './src/data/format/mtg_editor.cpp' || echo '$(srcdir)/'`./src/data/format/mtg_editor.cpp + +./src/data/format/magicseteditor-mtg_editor.obj: ./src/data/format/mtg_editor.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/format/magicseteditor-mtg_editor.obj -MD -MP -MF ./src/data/format/$(DEPDIR)/magicseteditor-mtg_editor.Tpo -c -o ./src/data/format/magicseteditor-mtg_editor.obj `if test -f './src/data/format/mtg_editor.cpp'; then $(CYGPATH_W) './src/data/format/mtg_editor.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/format/mtg_editor.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/format/$(DEPDIR)/magicseteditor-mtg_editor.Tpo ./src/data/format/$(DEPDIR)/magicseteditor-mtg_editor.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/format/mtg_editor.cpp' object='./src/data/format/magicseteditor-mtg_editor.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/format/magicseteditor-mtg_editor.obj `if test -f './src/data/format/mtg_editor.cpp'; then $(CYGPATH_W) './src/data/format/mtg_editor.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/format/mtg_editor.cpp'; fi` + +./src/data/format/magicseteditor-mws.o: ./src/data/format/mws.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/format/magicseteditor-mws.o -MD -MP -MF ./src/data/format/$(DEPDIR)/magicseteditor-mws.Tpo -c -o ./src/data/format/magicseteditor-mws.o `test -f './src/data/format/mws.cpp' || echo '$(srcdir)/'`./src/data/format/mws.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/format/$(DEPDIR)/magicseteditor-mws.Tpo ./src/data/format/$(DEPDIR)/magicseteditor-mws.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/format/mws.cpp' object='./src/data/format/magicseteditor-mws.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/format/magicseteditor-mws.o `test -f './src/data/format/mws.cpp' || echo '$(srcdir)/'`./src/data/format/mws.cpp + +./src/data/format/magicseteditor-mws.obj: ./src/data/format/mws.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/format/magicseteditor-mws.obj -MD -MP -MF ./src/data/format/$(DEPDIR)/magicseteditor-mws.Tpo -c -o ./src/data/format/magicseteditor-mws.obj `if test -f './src/data/format/mws.cpp'; then $(CYGPATH_W) './src/data/format/mws.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/format/mws.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/format/$(DEPDIR)/magicseteditor-mws.Tpo ./src/data/format/$(DEPDIR)/magicseteditor-mws.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/format/mws.cpp' object='./src/data/format/magicseteditor-mws.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/format/magicseteditor-mws.obj `if test -f './src/data/format/mws.cpp'; then $(CYGPATH_W) './src/data/format/mws.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/format/mws.cpp'; fi` ./src/data/magicseteditor-add_cards_script.o: ./src/data/add_cards_script.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/magicseteditor-add_cards_script.o -MD -MP -MF ./src/data/$(DEPDIR)/magicseteditor-add_cards_script.Tpo -c -o ./src/data/magicseteditor-add_cards_script.o `test -f './src/data/add_cards_script.cpp' || echo '$(srcdir)/'`./src/data/add_cards_script.cpp @@ -3662,187 +2015,19 @@ distclean-compile: @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/magicseteditor-export_template.obj `if test -f './src/data/export_template.cpp'; then $(CYGPATH_W) './src/data/export_template.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/export_template.cpp'; fi` -./src/data/magicseteditor-symbol_font.o: ./src/data/symbol_font.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/magicseteditor-symbol_font.o -MD -MP -MF ./src/data/$(DEPDIR)/magicseteditor-symbol_font.Tpo -c -o ./src/data/magicseteditor-symbol_font.o `test -f './src/data/symbol_font.cpp' || echo '$(srcdir)/'`./src/data/symbol_font.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/$(DEPDIR)/magicseteditor-symbol_font.Tpo ./src/data/$(DEPDIR)/magicseteditor-symbol_font.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/symbol_font.cpp' object='./src/data/magicseteditor-symbol_font.o' libtool=no @AMDEPBACKSLASH@ +./src/data/magicseteditor-field.o: ./src/data/field.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/magicseteditor-field.o -MD -MP -MF ./src/data/$(DEPDIR)/magicseteditor-field.Tpo -c -o ./src/data/magicseteditor-field.o `test -f './src/data/field.cpp' || echo '$(srcdir)/'`./src/data/field.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/$(DEPDIR)/magicseteditor-field.Tpo ./src/data/$(DEPDIR)/magicseteditor-field.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/field.cpp' object='./src/data/magicseteditor-field.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/magicseteditor-symbol_font.o `test -f './src/data/symbol_font.cpp' || echo '$(srcdir)/'`./src/data/symbol_font.cpp +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/magicseteditor-field.o `test -f './src/data/field.cpp' || echo '$(srcdir)/'`./src/data/field.cpp -./src/data/magicseteditor-symbol_font.obj: ./src/data/symbol_font.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/magicseteditor-symbol_font.obj -MD -MP -MF ./src/data/$(DEPDIR)/magicseteditor-symbol_font.Tpo -c -o ./src/data/magicseteditor-symbol_font.obj `if test -f './src/data/symbol_font.cpp'; then $(CYGPATH_W) './src/data/symbol_font.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/symbol_font.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/$(DEPDIR)/magicseteditor-symbol_font.Tpo ./src/data/$(DEPDIR)/magicseteditor-symbol_font.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/symbol_font.cpp' object='./src/data/magicseteditor-symbol_font.obj' libtool=no @AMDEPBACKSLASH@ +./src/data/magicseteditor-field.obj: ./src/data/field.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/magicseteditor-field.obj -MD -MP -MF ./src/data/$(DEPDIR)/magicseteditor-field.Tpo -c -o ./src/data/magicseteditor-field.obj `if test -f './src/data/field.cpp'; then $(CYGPATH_W) './src/data/field.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/field.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/$(DEPDIR)/magicseteditor-field.Tpo ./src/data/$(DEPDIR)/magicseteditor-field.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/field.cpp' object='./src/data/magicseteditor-field.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/magicseteditor-symbol_font.obj `if test -f './src/data/symbol_font.cpp'; then $(CYGPATH_W) './src/data/symbol_font.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/symbol_font.cpp'; fi` - -./src/data/format/magicseteditor-mtg_editor.o: ./src/data/format/mtg_editor.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/format/magicseteditor-mtg_editor.o -MD -MP -MF ./src/data/format/$(DEPDIR)/magicseteditor-mtg_editor.Tpo -c -o ./src/data/format/magicseteditor-mtg_editor.o `test -f './src/data/format/mtg_editor.cpp' || echo '$(srcdir)/'`./src/data/format/mtg_editor.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/format/$(DEPDIR)/magicseteditor-mtg_editor.Tpo ./src/data/format/$(DEPDIR)/magicseteditor-mtg_editor.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/format/mtg_editor.cpp' object='./src/data/format/magicseteditor-mtg_editor.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/format/magicseteditor-mtg_editor.o `test -f './src/data/format/mtg_editor.cpp' || echo '$(srcdir)/'`./src/data/format/mtg_editor.cpp - -./src/data/format/magicseteditor-mtg_editor.obj: ./src/data/format/mtg_editor.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/format/magicseteditor-mtg_editor.obj -MD -MP -MF ./src/data/format/$(DEPDIR)/magicseteditor-mtg_editor.Tpo -c -o ./src/data/format/magicseteditor-mtg_editor.obj `if test -f './src/data/format/mtg_editor.cpp'; then $(CYGPATH_W) './src/data/format/mtg_editor.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/format/mtg_editor.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/format/$(DEPDIR)/magicseteditor-mtg_editor.Tpo ./src/data/format/$(DEPDIR)/magicseteditor-mtg_editor.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/format/mtg_editor.cpp' object='./src/data/format/magicseteditor-mtg_editor.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/format/magicseteditor-mtg_editor.obj `if test -f './src/data/format/mtg_editor.cpp'; then $(CYGPATH_W) './src/data/format/mtg_editor.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/format/mtg_editor.cpp'; fi` - -./src/data/format/magicseteditor-mse1.o: ./src/data/format/mse1.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/format/magicseteditor-mse1.o -MD -MP -MF ./src/data/format/$(DEPDIR)/magicseteditor-mse1.Tpo -c -o ./src/data/format/magicseteditor-mse1.o `test -f './src/data/format/mse1.cpp' || echo '$(srcdir)/'`./src/data/format/mse1.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/format/$(DEPDIR)/magicseteditor-mse1.Tpo ./src/data/format/$(DEPDIR)/magicseteditor-mse1.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/format/mse1.cpp' object='./src/data/format/magicseteditor-mse1.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/format/magicseteditor-mse1.o `test -f './src/data/format/mse1.cpp' || echo '$(srcdir)/'`./src/data/format/mse1.cpp - -./src/data/format/magicseteditor-mse1.obj: ./src/data/format/mse1.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/format/magicseteditor-mse1.obj -MD -MP -MF ./src/data/format/$(DEPDIR)/magicseteditor-mse1.Tpo -c -o ./src/data/format/magicseteditor-mse1.obj `if test -f './src/data/format/mse1.cpp'; then $(CYGPATH_W) './src/data/format/mse1.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/format/mse1.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/format/$(DEPDIR)/magicseteditor-mse1.Tpo ./src/data/format/$(DEPDIR)/magicseteditor-mse1.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/format/mse1.cpp' object='./src/data/format/magicseteditor-mse1.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/format/magicseteditor-mse1.obj `if test -f './src/data/format/mse1.cpp'; then $(CYGPATH_W) './src/data/format/mse1.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/format/mse1.cpp'; fi` - -./src/data/format/magicseteditor-clipboard.o: ./src/data/format/clipboard.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/format/magicseteditor-clipboard.o -MD -MP -MF ./src/data/format/$(DEPDIR)/magicseteditor-clipboard.Tpo -c -o ./src/data/format/magicseteditor-clipboard.o `test -f './src/data/format/clipboard.cpp' || echo '$(srcdir)/'`./src/data/format/clipboard.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/format/$(DEPDIR)/magicseteditor-clipboard.Tpo ./src/data/format/$(DEPDIR)/magicseteditor-clipboard.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/format/clipboard.cpp' object='./src/data/format/magicseteditor-clipboard.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/format/magicseteditor-clipboard.o `test -f './src/data/format/clipboard.cpp' || echo '$(srcdir)/'`./src/data/format/clipboard.cpp - -./src/data/format/magicseteditor-clipboard.obj: ./src/data/format/clipboard.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/format/magicseteditor-clipboard.obj -MD -MP -MF ./src/data/format/$(DEPDIR)/magicseteditor-clipboard.Tpo -c -o ./src/data/format/magicseteditor-clipboard.obj `if test -f './src/data/format/clipboard.cpp'; then $(CYGPATH_W) './src/data/format/clipboard.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/format/clipboard.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/format/$(DEPDIR)/magicseteditor-clipboard.Tpo ./src/data/format/$(DEPDIR)/magicseteditor-clipboard.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/format/clipboard.cpp' object='./src/data/format/magicseteditor-clipboard.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/format/magicseteditor-clipboard.obj `if test -f './src/data/format/clipboard.cpp'; then $(CYGPATH_W) './src/data/format/clipboard.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/format/clipboard.cpp'; fi` - -./src/data/format/magicseteditor-image_to_symbol.o: ./src/data/format/image_to_symbol.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/format/magicseteditor-image_to_symbol.o -MD -MP -MF ./src/data/format/$(DEPDIR)/magicseteditor-image_to_symbol.Tpo -c -o ./src/data/format/magicseteditor-image_to_symbol.o `test -f './src/data/format/image_to_symbol.cpp' || echo '$(srcdir)/'`./src/data/format/image_to_symbol.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/format/$(DEPDIR)/magicseteditor-image_to_symbol.Tpo ./src/data/format/$(DEPDIR)/magicseteditor-image_to_symbol.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/format/image_to_symbol.cpp' object='./src/data/format/magicseteditor-image_to_symbol.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/format/magicseteditor-image_to_symbol.o `test -f './src/data/format/image_to_symbol.cpp' || echo '$(srcdir)/'`./src/data/format/image_to_symbol.cpp - -./src/data/format/magicseteditor-image_to_symbol.obj: ./src/data/format/image_to_symbol.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/format/magicseteditor-image_to_symbol.obj -MD -MP -MF ./src/data/format/$(DEPDIR)/magicseteditor-image_to_symbol.Tpo -c -o ./src/data/format/magicseteditor-image_to_symbol.obj `if test -f './src/data/format/image_to_symbol.cpp'; then $(CYGPATH_W) './src/data/format/image_to_symbol.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/format/image_to_symbol.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/format/$(DEPDIR)/magicseteditor-image_to_symbol.Tpo ./src/data/format/$(DEPDIR)/magicseteditor-image_to_symbol.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/format/image_to_symbol.cpp' object='./src/data/format/magicseteditor-image_to_symbol.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/format/magicseteditor-image_to_symbol.obj `if test -f './src/data/format/image_to_symbol.cpp'; then $(CYGPATH_W) './src/data/format/image_to_symbol.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/format/image_to_symbol.cpp'; fi` - -./src/data/format/magicseteditor-html.o: ./src/data/format/html.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/format/magicseteditor-html.o -MD -MP -MF ./src/data/format/$(DEPDIR)/magicseteditor-html.Tpo -c -o ./src/data/format/magicseteditor-html.o `test -f './src/data/format/html.cpp' || echo '$(srcdir)/'`./src/data/format/html.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/format/$(DEPDIR)/magicseteditor-html.Tpo ./src/data/format/$(DEPDIR)/magicseteditor-html.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/format/html.cpp' object='./src/data/format/magicseteditor-html.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/format/magicseteditor-html.o `test -f './src/data/format/html.cpp' || echo '$(srcdir)/'`./src/data/format/html.cpp - -./src/data/format/magicseteditor-html.obj: ./src/data/format/html.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/format/magicseteditor-html.obj -MD -MP -MF ./src/data/format/$(DEPDIR)/magicseteditor-html.Tpo -c -o ./src/data/format/magicseteditor-html.obj `if test -f './src/data/format/html.cpp'; then $(CYGPATH_W) './src/data/format/html.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/format/html.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/format/$(DEPDIR)/magicseteditor-html.Tpo ./src/data/format/$(DEPDIR)/magicseteditor-html.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/format/html.cpp' object='./src/data/format/magicseteditor-html.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/format/magicseteditor-html.obj `if test -f './src/data/format/html.cpp'; then $(CYGPATH_W) './src/data/format/html.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/format/html.cpp'; fi` - -./src/data/format/magicseteditor-apprentice.o: ./src/data/format/apprentice.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/format/magicseteditor-apprentice.o -MD -MP -MF ./src/data/format/$(DEPDIR)/magicseteditor-apprentice.Tpo -c -o ./src/data/format/magicseteditor-apprentice.o `test -f './src/data/format/apprentice.cpp' || echo '$(srcdir)/'`./src/data/format/apprentice.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/format/$(DEPDIR)/magicseteditor-apprentice.Tpo ./src/data/format/$(DEPDIR)/magicseteditor-apprentice.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/format/apprentice.cpp' object='./src/data/format/magicseteditor-apprentice.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/format/magicseteditor-apprentice.o `test -f './src/data/format/apprentice.cpp' || echo '$(srcdir)/'`./src/data/format/apprentice.cpp - -./src/data/format/magicseteditor-apprentice.obj: ./src/data/format/apprentice.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/format/magicseteditor-apprentice.obj -MD -MP -MF ./src/data/format/$(DEPDIR)/magicseteditor-apprentice.Tpo -c -o ./src/data/format/magicseteditor-apprentice.obj `if test -f './src/data/format/apprentice.cpp'; then $(CYGPATH_W) './src/data/format/apprentice.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/format/apprentice.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/format/$(DEPDIR)/magicseteditor-apprentice.Tpo ./src/data/format/$(DEPDIR)/magicseteditor-apprentice.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/format/apprentice.cpp' object='./src/data/format/magicseteditor-apprentice.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/format/magicseteditor-apprentice.obj `if test -f './src/data/format/apprentice.cpp'; then $(CYGPATH_W) './src/data/format/apprentice.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/format/apprentice.cpp'; fi` - -./src/data/format/magicseteditor-formats.o: ./src/data/format/formats.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/format/magicseteditor-formats.o -MD -MP -MF ./src/data/format/$(DEPDIR)/magicseteditor-formats.Tpo -c -o ./src/data/format/magicseteditor-formats.o `test -f './src/data/format/formats.cpp' || echo '$(srcdir)/'`./src/data/format/formats.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/format/$(DEPDIR)/magicseteditor-formats.Tpo ./src/data/format/$(DEPDIR)/magicseteditor-formats.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/format/formats.cpp' object='./src/data/format/magicseteditor-formats.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/format/magicseteditor-formats.o `test -f './src/data/format/formats.cpp' || echo '$(srcdir)/'`./src/data/format/formats.cpp - -./src/data/format/magicseteditor-formats.obj: ./src/data/format/formats.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/format/magicseteditor-formats.obj -MD -MP -MF ./src/data/format/$(DEPDIR)/magicseteditor-formats.Tpo -c -o ./src/data/format/magicseteditor-formats.obj `if test -f './src/data/format/formats.cpp'; then $(CYGPATH_W) './src/data/format/formats.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/format/formats.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/format/$(DEPDIR)/magicseteditor-formats.Tpo ./src/data/format/$(DEPDIR)/magicseteditor-formats.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/format/formats.cpp' object='./src/data/format/magicseteditor-formats.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/format/magicseteditor-formats.obj `if test -f './src/data/format/formats.cpp'; then $(CYGPATH_W) './src/data/format/formats.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/format/formats.cpp'; fi` - -./src/data/format/magicseteditor-image.o: ./src/data/format/image.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/format/magicseteditor-image.o -MD -MP -MF ./src/data/format/$(DEPDIR)/magicseteditor-image.Tpo -c -o ./src/data/format/magicseteditor-image.o `test -f './src/data/format/image.cpp' || echo '$(srcdir)/'`./src/data/format/image.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/format/$(DEPDIR)/magicseteditor-image.Tpo ./src/data/format/$(DEPDIR)/magicseteditor-image.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/format/image.cpp' object='./src/data/format/magicseteditor-image.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/format/magicseteditor-image.o `test -f './src/data/format/image.cpp' || echo '$(srcdir)/'`./src/data/format/image.cpp - -./src/data/format/magicseteditor-image.obj: ./src/data/format/image.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/format/magicseteditor-image.obj -MD -MP -MF ./src/data/format/$(DEPDIR)/magicseteditor-image.Tpo -c -o ./src/data/format/magicseteditor-image.obj `if test -f './src/data/format/image.cpp'; then $(CYGPATH_W) './src/data/format/image.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/format/image.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/format/$(DEPDIR)/magicseteditor-image.Tpo ./src/data/format/$(DEPDIR)/magicseteditor-image.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/format/image.cpp' object='./src/data/format/magicseteditor-image.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/format/magicseteditor-image.obj `if test -f './src/data/format/image.cpp'; then $(CYGPATH_W) './src/data/format/image.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/format/image.cpp'; fi` - -./src/data/format/magicseteditor-mws.o: ./src/data/format/mws.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/format/magicseteditor-mws.o -MD -MP -MF ./src/data/format/$(DEPDIR)/magicseteditor-mws.Tpo -c -o ./src/data/format/magicseteditor-mws.o `test -f './src/data/format/mws.cpp' || echo '$(srcdir)/'`./src/data/format/mws.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/format/$(DEPDIR)/magicseteditor-mws.Tpo ./src/data/format/$(DEPDIR)/magicseteditor-mws.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/format/mws.cpp' object='./src/data/format/magicseteditor-mws.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/format/magicseteditor-mws.o `test -f './src/data/format/mws.cpp' || echo '$(srcdir)/'`./src/data/format/mws.cpp - -./src/data/format/magicseteditor-mws.obj: ./src/data/format/mws.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/format/magicseteditor-mws.obj -MD -MP -MF ./src/data/format/$(DEPDIR)/magicseteditor-mws.Tpo -c -o ./src/data/format/magicseteditor-mws.obj `if test -f './src/data/format/mws.cpp'; then $(CYGPATH_W) './src/data/format/mws.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/format/mws.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/format/$(DEPDIR)/magicseteditor-mws.Tpo ./src/data/format/$(DEPDIR)/magicseteditor-mws.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/format/mws.cpp' object='./src/data/format/magicseteditor-mws.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/format/magicseteditor-mws.obj `if test -f './src/data/format/mws.cpp'; then $(CYGPATH_W) './src/data/format/mws.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/format/mws.cpp'; fi` - -./src/data/format/magicseteditor-mse2.o: ./src/data/format/mse2.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/format/magicseteditor-mse2.o -MD -MP -MF ./src/data/format/$(DEPDIR)/magicseteditor-mse2.Tpo -c -o ./src/data/format/magicseteditor-mse2.o `test -f './src/data/format/mse2.cpp' || echo '$(srcdir)/'`./src/data/format/mse2.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/format/$(DEPDIR)/magicseteditor-mse2.Tpo ./src/data/format/$(DEPDIR)/magicseteditor-mse2.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/format/mse2.cpp' object='./src/data/format/magicseteditor-mse2.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/format/magicseteditor-mse2.o `test -f './src/data/format/mse2.cpp' || echo '$(srcdir)/'`./src/data/format/mse2.cpp - -./src/data/format/magicseteditor-mse2.obj: ./src/data/format/mse2.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/format/magicseteditor-mse2.obj -MD -MP -MF ./src/data/format/$(DEPDIR)/magicseteditor-mse2.Tpo -c -o ./src/data/format/magicseteditor-mse2.obj `if test -f './src/data/format/mse2.cpp'; then $(CYGPATH_W) './src/data/format/mse2.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/format/mse2.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/format/$(DEPDIR)/magicseteditor-mse2.Tpo ./src/data/format/$(DEPDIR)/magicseteditor-mse2.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/format/mse2.cpp' object='./src/data/format/magicseteditor-mse2.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/format/magicseteditor-mse2.obj `if test -f './src/data/format/mse2.cpp'; then $(CYGPATH_W) './src/data/format/mse2.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/format/mse2.cpp'; fi` - -./src/data/magicseteditor-set.o: ./src/data/set.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/magicseteditor-set.o -MD -MP -MF ./src/data/$(DEPDIR)/magicseteditor-set.Tpo -c -o ./src/data/magicseteditor-set.o `test -f './src/data/set.cpp' || echo '$(srcdir)/'`./src/data/set.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/$(DEPDIR)/magicseteditor-set.Tpo ./src/data/$(DEPDIR)/magicseteditor-set.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/set.cpp' object='./src/data/magicseteditor-set.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/magicseteditor-set.o `test -f './src/data/set.cpp' || echo '$(srcdir)/'`./src/data/set.cpp - -./src/data/magicseteditor-set.obj: ./src/data/set.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/magicseteditor-set.obj -MD -MP -MF ./src/data/$(DEPDIR)/magicseteditor-set.Tpo -c -o ./src/data/magicseteditor-set.obj `if test -f './src/data/set.cpp'; then $(CYGPATH_W) './src/data/set.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/set.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/$(DEPDIR)/magicseteditor-set.Tpo ./src/data/$(DEPDIR)/magicseteditor-set.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/set.cpp' object='./src/data/magicseteditor-set.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/magicseteditor-set.obj `if test -f './src/data/set.cpp'; then $(CYGPATH_W) './src/data/set.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/set.cpp'; fi` - -./src/data/magicseteditor-installer.o: ./src/data/installer.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/magicseteditor-installer.o -MD -MP -MF ./src/data/$(DEPDIR)/magicseteditor-installer.Tpo -c -o ./src/data/magicseteditor-installer.o `test -f './src/data/installer.cpp' || echo '$(srcdir)/'`./src/data/installer.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/$(DEPDIR)/magicseteditor-installer.Tpo ./src/data/$(DEPDIR)/magicseteditor-installer.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/installer.cpp' object='./src/data/magicseteditor-installer.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/magicseteditor-installer.o `test -f './src/data/installer.cpp' || echo '$(srcdir)/'`./src/data/installer.cpp - -./src/data/magicseteditor-installer.obj: ./src/data/installer.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/magicseteditor-installer.obj -MD -MP -MF ./src/data/$(DEPDIR)/magicseteditor-installer.Tpo -c -o ./src/data/magicseteditor-installer.obj `if test -f './src/data/installer.cpp'; then $(CYGPATH_W) './src/data/installer.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/installer.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/$(DEPDIR)/magicseteditor-installer.Tpo ./src/data/$(DEPDIR)/magicseteditor-installer.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/installer.cpp' object='./src/data/magicseteditor-installer.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/magicseteditor-installer.obj `if test -f './src/data/installer.cpp'; then $(CYGPATH_W) './src/data/installer.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/installer.cpp'; fi` +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/magicseteditor-field.obj `if test -f './src/data/field.cpp'; then $(CYGPATH_W) './src/data/field.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/field.cpp'; fi` ./src/data/magicseteditor-font.o: ./src/data/font.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/magicseteditor-font.o -MD -MP -MF ./src/data/$(DEPDIR)/magicseteditor-font.Tpo -c -o ./src/data/magicseteditor-font.o `test -f './src/data/font.cpp' || echo '$(srcdir)/'`./src/data/font.cpp @@ -3858,6 +2043,104 @@ distclean-compile: @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/magicseteditor-font.obj `if test -f './src/data/font.cpp'; then $(CYGPATH_W) './src/data/font.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/font.cpp'; fi` +./src/data/magicseteditor-game.o: ./src/data/game.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/magicseteditor-game.o -MD -MP -MF ./src/data/$(DEPDIR)/magicseteditor-game.Tpo -c -o ./src/data/magicseteditor-game.o `test -f './src/data/game.cpp' || echo '$(srcdir)/'`./src/data/game.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/$(DEPDIR)/magicseteditor-game.Tpo ./src/data/$(DEPDIR)/magicseteditor-game.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/game.cpp' object='./src/data/magicseteditor-game.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/magicseteditor-game.o `test -f './src/data/game.cpp' || echo '$(srcdir)/'`./src/data/game.cpp + +./src/data/magicseteditor-game.obj: ./src/data/game.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/magicseteditor-game.obj -MD -MP -MF ./src/data/$(DEPDIR)/magicseteditor-game.Tpo -c -o ./src/data/magicseteditor-game.obj `if test -f './src/data/game.cpp'; then $(CYGPATH_W) './src/data/game.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/game.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/$(DEPDIR)/magicseteditor-game.Tpo ./src/data/$(DEPDIR)/magicseteditor-game.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/game.cpp' object='./src/data/magicseteditor-game.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/magicseteditor-game.obj `if test -f './src/data/game.cpp'; then $(CYGPATH_W) './src/data/game.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/game.cpp'; fi` + +./src/data/magicseteditor-installer.o: ./src/data/installer.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/magicseteditor-installer.o -MD -MP -MF ./src/data/$(DEPDIR)/magicseteditor-installer.Tpo -c -o ./src/data/magicseteditor-installer.o `test -f './src/data/installer.cpp' || echo '$(srcdir)/'`./src/data/installer.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/$(DEPDIR)/magicseteditor-installer.Tpo ./src/data/$(DEPDIR)/magicseteditor-installer.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/installer.cpp' object='./src/data/magicseteditor-installer.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/magicseteditor-installer.o `test -f './src/data/installer.cpp' || echo '$(srcdir)/'`./src/data/installer.cpp + +./src/data/magicseteditor-installer.obj: ./src/data/installer.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/magicseteditor-installer.obj -MD -MP -MF ./src/data/$(DEPDIR)/magicseteditor-installer.Tpo -c -o ./src/data/magicseteditor-installer.obj `if test -f './src/data/installer.cpp'; then $(CYGPATH_W) './src/data/installer.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/installer.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/$(DEPDIR)/magicseteditor-installer.Tpo ./src/data/$(DEPDIR)/magicseteditor-installer.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/installer.cpp' object='./src/data/magicseteditor-installer.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/magicseteditor-installer.obj `if test -f './src/data/installer.cpp'; then $(CYGPATH_W) './src/data/installer.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/installer.cpp'; fi` + +./src/data/magicseteditor-keyword.o: ./src/data/keyword.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/magicseteditor-keyword.o -MD -MP -MF ./src/data/$(DEPDIR)/magicseteditor-keyword.Tpo -c -o ./src/data/magicseteditor-keyword.o `test -f './src/data/keyword.cpp' || echo '$(srcdir)/'`./src/data/keyword.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/$(DEPDIR)/magicseteditor-keyword.Tpo ./src/data/$(DEPDIR)/magicseteditor-keyword.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/keyword.cpp' object='./src/data/magicseteditor-keyword.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/magicseteditor-keyword.o `test -f './src/data/keyword.cpp' || echo '$(srcdir)/'`./src/data/keyword.cpp + +./src/data/magicseteditor-keyword.obj: ./src/data/keyword.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/magicseteditor-keyword.obj -MD -MP -MF ./src/data/$(DEPDIR)/magicseteditor-keyword.Tpo -c -o ./src/data/magicseteditor-keyword.obj `if test -f './src/data/keyword.cpp'; then $(CYGPATH_W) './src/data/keyword.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/keyword.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/$(DEPDIR)/magicseteditor-keyword.Tpo ./src/data/$(DEPDIR)/magicseteditor-keyword.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/keyword.cpp' object='./src/data/magicseteditor-keyword.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/magicseteditor-keyword.obj `if test -f './src/data/keyword.cpp'; then $(CYGPATH_W) './src/data/keyword.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/keyword.cpp'; fi` + +./src/data/magicseteditor-locale.o: ./src/data/locale.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/magicseteditor-locale.o -MD -MP -MF ./src/data/$(DEPDIR)/magicseteditor-locale.Tpo -c -o ./src/data/magicseteditor-locale.o `test -f './src/data/locale.cpp' || echo '$(srcdir)/'`./src/data/locale.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/$(DEPDIR)/magicseteditor-locale.Tpo ./src/data/$(DEPDIR)/magicseteditor-locale.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/locale.cpp' object='./src/data/magicseteditor-locale.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/magicseteditor-locale.o `test -f './src/data/locale.cpp' || echo '$(srcdir)/'`./src/data/locale.cpp + +./src/data/magicseteditor-locale.obj: ./src/data/locale.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/magicseteditor-locale.obj -MD -MP -MF ./src/data/$(DEPDIR)/magicseteditor-locale.Tpo -c -o ./src/data/magicseteditor-locale.obj `if test -f './src/data/locale.cpp'; then $(CYGPATH_W) './src/data/locale.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/locale.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/$(DEPDIR)/magicseteditor-locale.Tpo ./src/data/$(DEPDIR)/magicseteditor-locale.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/locale.cpp' object='./src/data/magicseteditor-locale.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/magicseteditor-locale.obj `if test -f './src/data/locale.cpp'; then $(CYGPATH_W) './src/data/locale.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/locale.cpp'; fi` + +./src/data/magicseteditor-pack.o: ./src/data/pack.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/magicseteditor-pack.o -MD -MP -MF ./src/data/$(DEPDIR)/magicseteditor-pack.Tpo -c -o ./src/data/magicseteditor-pack.o `test -f './src/data/pack.cpp' || echo '$(srcdir)/'`./src/data/pack.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/$(DEPDIR)/magicseteditor-pack.Tpo ./src/data/$(DEPDIR)/magicseteditor-pack.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/pack.cpp' object='./src/data/magicseteditor-pack.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/magicseteditor-pack.o `test -f './src/data/pack.cpp' || echo '$(srcdir)/'`./src/data/pack.cpp + +./src/data/magicseteditor-pack.obj: ./src/data/pack.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/magicseteditor-pack.obj -MD -MP -MF ./src/data/$(DEPDIR)/magicseteditor-pack.Tpo -c -o ./src/data/magicseteditor-pack.obj `if test -f './src/data/pack.cpp'; then $(CYGPATH_W) './src/data/pack.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/pack.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/$(DEPDIR)/magicseteditor-pack.Tpo ./src/data/$(DEPDIR)/magicseteditor-pack.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/pack.cpp' object='./src/data/magicseteditor-pack.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/magicseteditor-pack.obj `if test -f './src/data/pack.cpp'; then $(CYGPATH_W) './src/data/pack.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/pack.cpp'; fi` + +./src/data/magicseteditor-set.o: ./src/data/set.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/magicseteditor-set.o -MD -MP -MF ./src/data/$(DEPDIR)/magicseteditor-set.Tpo -c -o ./src/data/magicseteditor-set.o `test -f './src/data/set.cpp' || echo '$(srcdir)/'`./src/data/set.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/$(DEPDIR)/magicseteditor-set.Tpo ./src/data/$(DEPDIR)/magicseteditor-set.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/set.cpp' object='./src/data/magicseteditor-set.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/magicseteditor-set.o `test -f './src/data/set.cpp' || echo '$(srcdir)/'`./src/data/set.cpp + +./src/data/magicseteditor-set.obj: ./src/data/set.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/magicseteditor-set.obj -MD -MP -MF ./src/data/$(DEPDIR)/magicseteditor-set.Tpo -c -o ./src/data/magicseteditor-set.obj `if test -f './src/data/set.cpp'; then $(CYGPATH_W) './src/data/set.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/set.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/$(DEPDIR)/magicseteditor-set.Tpo ./src/data/$(DEPDIR)/magicseteditor-set.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/set.cpp' object='./src/data/magicseteditor-set.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/magicseteditor-set.obj `if test -f './src/data/set.cpp'; then $(CYGPATH_W) './src/data/set.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/set.cpp'; fi` + +./src/data/magicseteditor-settings.o: ./src/data/settings.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/magicseteditor-settings.o -MD -MP -MF ./src/data/$(DEPDIR)/magicseteditor-settings.Tpo -c -o ./src/data/magicseteditor-settings.o `test -f './src/data/settings.cpp' || echo '$(srcdir)/'`./src/data/settings.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/$(DEPDIR)/magicseteditor-settings.Tpo ./src/data/$(DEPDIR)/magicseteditor-settings.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/settings.cpp' object='./src/data/magicseteditor-settings.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/magicseteditor-settings.o `test -f './src/data/settings.cpp' || echo '$(srcdir)/'`./src/data/settings.cpp + +./src/data/magicseteditor-settings.obj: ./src/data/settings.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/magicseteditor-settings.obj -MD -MP -MF ./src/data/$(DEPDIR)/magicseteditor-settings.Tpo -c -o ./src/data/magicseteditor-settings.obj `if test -f './src/data/settings.cpp'; then $(CYGPATH_W) './src/data/settings.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/settings.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/$(DEPDIR)/magicseteditor-settings.Tpo ./src/data/$(DEPDIR)/magicseteditor-settings.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/settings.cpp' object='./src/data/magicseteditor-settings.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/magicseteditor-settings.obj `if test -f './src/data/settings.cpp'; then $(CYGPATH_W) './src/data/settings.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/settings.cpp'; fi` + ./src/data/magicseteditor-statistics.o: ./src/data/statistics.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/magicseteditor-statistics.o -MD -MP -MF ./src/data/$(DEPDIR)/magicseteditor-statistics.Tpo -c -o ./src/data/magicseteditor-statistics.o `test -f './src/data/statistics.cpp' || echo '$(srcdir)/'`./src/data/statistics.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/$(DEPDIR)/magicseteditor-statistics.Tpo ./src/data/$(DEPDIR)/magicseteditor-statistics.Po @@ -3872,76 +2155,6 @@ distclean-compile: @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/magicseteditor-statistics.obj `if test -f './src/data/statistics.cpp'; then $(CYGPATH_W) './src/data/statistics.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/statistics.cpp'; fi` -./src/data/action/magicseteditor-keyword.o: ./src/data/action/keyword.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/action/magicseteditor-keyword.o -MD -MP -MF ./src/data/action/$(DEPDIR)/magicseteditor-keyword.Tpo -c -o ./src/data/action/magicseteditor-keyword.o `test -f './src/data/action/keyword.cpp' || echo '$(srcdir)/'`./src/data/action/keyword.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/action/$(DEPDIR)/magicseteditor-keyword.Tpo ./src/data/action/$(DEPDIR)/magicseteditor-keyword.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/action/keyword.cpp' object='./src/data/action/magicseteditor-keyword.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/action/magicseteditor-keyword.o `test -f './src/data/action/keyword.cpp' || echo '$(srcdir)/'`./src/data/action/keyword.cpp - -./src/data/action/magicseteditor-keyword.obj: ./src/data/action/keyword.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/action/magicseteditor-keyword.obj -MD -MP -MF ./src/data/action/$(DEPDIR)/magicseteditor-keyword.Tpo -c -o ./src/data/action/magicseteditor-keyword.obj `if test -f './src/data/action/keyword.cpp'; then $(CYGPATH_W) './src/data/action/keyword.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/action/keyword.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/action/$(DEPDIR)/magicseteditor-keyword.Tpo ./src/data/action/$(DEPDIR)/magicseteditor-keyword.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/action/keyword.cpp' object='./src/data/action/magicseteditor-keyword.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/action/magicseteditor-keyword.obj `if test -f './src/data/action/keyword.cpp'; then $(CYGPATH_W) './src/data/action/keyword.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/action/keyword.cpp'; fi` - -./src/data/action/magicseteditor-symbol.o: ./src/data/action/symbol.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/action/magicseteditor-symbol.o -MD -MP -MF ./src/data/action/$(DEPDIR)/magicseteditor-symbol.Tpo -c -o ./src/data/action/magicseteditor-symbol.o `test -f './src/data/action/symbol.cpp' || echo '$(srcdir)/'`./src/data/action/symbol.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/action/$(DEPDIR)/magicseteditor-symbol.Tpo ./src/data/action/$(DEPDIR)/magicseteditor-symbol.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/action/symbol.cpp' object='./src/data/action/magicseteditor-symbol.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/action/magicseteditor-symbol.o `test -f './src/data/action/symbol.cpp' || echo '$(srcdir)/'`./src/data/action/symbol.cpp - -./src/data/action/magicseteditor-symbol.obj: ./src/data/action/symbol.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/action/magicseteditor-symbol.obj -MD -MP -MF ./src/data/action/$(DEPDIR)/magicseteditor-symbol.Tpo -c -o ./src/data/action/magicseteditor-symbol.obj `if test -f './src/data/action/symbol.cpp'; then $(CYGPATH_W) './src/data/action/symbol.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/action/symbol.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/action/$(DEPDIR)/magicseteditor-symbol.Tpo ./src/data/action/$(DEPDIR)/magicseteditor-symbol.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/action/symbol.cpp' object='./src/data/action/magicseteditor-symbol.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/action/magicseteditor-symbol.obj `if test -f './src/data/action/symbol.cpp'; then $(CYGPATH_W) './src/data/action/symbol.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/action/symbol.cpp'; fi` - -./src/data/action/magicseteditor-value.o: ./src/data/action/value.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/action/magicseteditor-value.o -MD -MP -MF ./src/data/action/$(DEPDIR)/magicseteditor-value.Tpo -c -o ./src/data/action/magicseteditor-value.o `test -f './src/data/action/value.cpp' || echo '$(srcdir)/'`./src/data/action/value.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/action/$(DEPDIR)/magicseteditor-value.Tpo ./src/data/action/$(DEPDIR)/magicseteditor-value.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/action/value.cpp' object='./src/data/action/magicseteditor-value.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/action/magicseteditor-value.o `test -f './src/data/action/value.cpp' || echo '$(srcdir)/'`./src/data/action/value.cpp - -./src/data/action/magicseteditor-value.obj: ./src/data/action/value.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/action/magicseteditor-value.obj -MD -MP -MF ./src/data/action/$(DEPDIR)/magicseteditor-value.Tpo -c -o ./src/data/action/magicseteditor-value.obj `if test -f './src/data/action/value.cpp'; then $(CYGPATH_W) './src/data/action/value.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/action/value.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/action/$(DEPDIR)/magicseteditor-value.Tpo ./src/data/action/$(DEPDIR)/magicseteditor-value.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/action/value.cpp' object='./src/data/action/magicseteditor-value.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/action/magicseteditor-value.obj `if test -f './src/data/action/value.cpp'; then $(CYGPATH_W) './src/data/action/value.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/action/value.cpp'; fi` - -./src/data/action/magicseteditor-symbol_part.o: ./src/data/action/symbol_part.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/action/magicseteditor-symbol_part.o -MD -MP -MF ./src/data/action/$(DEPDIR)/magicseteditor-symbol_part.Tpo -c -o ./src/data/action/magicseteditor-symbol_part.o `test -f './src/data/action/symbol_part.cpp' || echo '$(srcdir)/'`./src/data/action/symbol_part.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/action/$(DEPDIR)/magicseteditor-symbol_part.Tpo ./src/data/action/$(DEPDIR)/magicseteditor-symbol_part.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/action/symbol_part.cpp' object='./src/data/action/magicseteditor-symbol_part.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/action/magicseteditor-symbol_part.o `test -f './src/data/action/symbol_part.cpp' || echo '$(srcdir)/'`./src/data/action/symbol_part.cpp - -./src/data/action/magicseteditor-symbol_part.obj: ./src/data/action/symbol_part.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/action/magicseteditor-symbol_part.obj -MD -MP -MF ./src/data/action/$(DEPDIR)/magicseteditor-symbol_part.Tpo -c -o ./src/data/action/magicseteditor-symbol_part.obj `if test -f './src/data/action/symbol_part.cpp'; then $(CYGPATH_W) './src/data/action/symbol_part.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/action/symbol_part.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/action/$(DEPDIR)/magicseteditor-symbol_part.Tpo ./src/data/action/$(DEPDIR)/magicseteditor-symbol_part.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/action/symbol_part.cpp' object='./src/data/action/magicseteditor-symbol_part.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/action/magicseteditor-symbol_part.obj `if test -f './src/data/action/symbol_part.cpp'; then $(CYGPATH_W) './src/data/action/symbol_part.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/action/symbol_part.cpp'; fi` - -./src/data/action/magicseteditor-set.o: ./src/data/action/set.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/action/magicseteditor-set.o -MD -MP -MF ./src/data/action/$(DEPDIR)/magicseteditor-set.Tpo -c -o ./src/data/action/magicseteditor-set.o `test -f './src/data/action/set.cpp' || echo '$(srcdir)/'`./src/data/action/set.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/action/$(DEPDIR)/magicseteditor-set.Tpo ./src/data/action/$(DEPDIR)/magicseteditor-set.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/action/set.cpp' object='./src/data/action/magicseteditor-set.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/action/magicseteditor-set.o `test -f './src/data/action/set.cpp' || echo '$(srcdir)/'`./src/data/action/set.cpp - -./src/data/action/magicseteditor-set.obj: ./src/data/action/set.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/action/magicseteditor-set.obj -MD -MP -MF ./src/data/action/$(DEPDIR)/magicseteditor-set.Tpo -c -o ./src/data/action/magicseteditor-set.obj `if test -f './src/data/action/set.cpp'; then $(CYGPATH_W) './src/data/action/set.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/action/set.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/action/$(DEPDIR)/magicseteditor-set.Tpo ./src/data/action/$(DEPDIR)/magicseteditor-set.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/action/set.cpp' object='./src/data/action/magicseteditor-set.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/action/magicseteditor-set.obj `if test -f './src/data/action/set.cpp'; then $(CYGPATH_W) './src/data/action/set.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/action/set.cpp'; fi` - ./src/data/magicseteditor-stylesheet.o: ./src/data/stylesheet.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/magicseteditor-stylesheet.o -MD -MP -MF ./src/data/$(DEPDIR)/magicseteditor-stylesheet.Tpo -c -o ./src/data/magicseteditor-stylesheet.o `test -f './src/data/stylesheet.cpp' || echo '$(srcdir)/'`./src/data/stylesheet.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/$(DEPDIR)/magicseteditor-stylesheet.Tpo ./src/data/$(DEPDIR)/magicseteditor-stylesheet.Po @@ -3956,6 +2169,34 @@ distclean-compile: @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/magicseteditor-stylesheet.obj `if test -f './src/data/stylesheet.cpp'; then $(CYGPATH_W) './src/data/stylesheet.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/stylesheet.cpp'; fi` +./src/data/magicseteditor-symbol.o: ./src/data/symbol.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/magicseteditor-symbol.o -MD -MP -MF ./src/data/$(DEPDIR)/magicseteditor-symbol.Tpo -c -o ./src/data/magicseteditor-symbol.o `test -f './src/data/symbol.cpp' || echo '$(srcdir)/'`./src/data/symbol.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/$(DEPDIR)/magicseteditor-symbol.Tpo ./src/data/$(DEPDIR)/magicseteditor-symbol.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/symbol.cpp' object='./src/data/magicseteditor-symbol.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/magicseteditor-symbol.o `test -f './src/data/symbol.cpp' || echo '$(srcdir)/'`./src/data/symbol.cpp + +./src/data/magicseteditor-symbol.obj: ./src/data/symbol.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/magicseteditor-symbol.obj -MD -MP -MF ./src/data/$(DEPDIR)/magicseteditor-symbol.Tpo -c -o ./src/data/magicseteditor-symbol.obj `if test -f './src/data/symbol.cpp'; then $(CYGPATH_W) './src/data/symbol.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/symbol.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/$(DEPDIR)/magicseteditor-symbol.Tpo ./src/data/$(DEPDIR)/magicseteditor-symbol.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/symbol.cpp' object='./src/data/magicseteditor-symbol.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/magicseteditor-symbol.obj `if test -f './src/data/symbol.cpp'; then $(CYGPATH_W) './src/data/symbol.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/symbol.cpp'; fi` + +./src/data/magicseteditor-symbol_font.o: ./src/data/symbol_font.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/magicseteditor-symbol_font.o -MD -MP -MF ./src/data/$(DEPDIR)/magicseteditor-symbol_font.Tpo -c -o ./src/data/magicseteditor-symbol_font.o `test -f './src/data/symbol_font.cpp' || echo '$(srcdir)/'`./src/data/symbol_font.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/$(DEPDIR)/magicseteditor-symbol_font.Tpo ./src/data/$(DEPDIR)/magicseteditor-symbol_font.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/symbol_font.cpp' object='./src/data/magicseteditor-symbol_font.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/magicseteditor-symbol_font.o `test -f './src/data/symbol_font.cpp' || echo '$(srcdir)/'`./src/data/symbol_font.cpp + +./src/data/magicseteditor-symbol_font.obj: ./src/data/symbol_font.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/magicseteditor-symbol_font.obj -MD -MP -MF ./src/data/$(DEPDIR)/magicseteditor-symbol_font.Tpo -c -o ./src/data/magicseteditor-symbol_font.obj `if test -f './src/data/symbol_font.cpp'; then $(CYGPATH_W) './src/data/symbol_font.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/symbol_font.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/$(DEPDIR)/magicseteditor-symbol_font.Tpo ./src/data/$(DEPDIR)/magicseteditor-symbol_font.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/symbol_font.cpp' object='./src/data/magicseteditor-symbol_font.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/magicseteditor-symbol_font.obj `if test -f './src/data/symbol_font.cpp'; then $(CYGPATH_W) './src/data/symbol_font.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/symbol_font.cpp'; fi` + ./src/data/magicseteditor-word_list.o: ./src/data/word_list.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/magicseteditor-word_list.o -MD -MP -MF ./src/data/$(DEPDIR)/magicseteditor-word_list.Tpo -c -o ./src/data/magicseteditor-word_list.o `test -f './src/data/word_list.cpp' || echo '$(srcdir)/'`./src/data/word_list.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/$(DEPDIR)/magicseteditor-word_list.Tpo ./src/data/$(DEPDIR)/magicseteditor-word_list.Po @@ -3970,19 +2211,1783 @@ distclean-compile: @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/magicseteditor-word_list.obj `if test -f './src/data/word_list.cpp'; then $(CYGPATH_W) './src/data/word_list.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/word_list.cpp'; fi` -./src/data/magicseteditor-settings.o: ./src/data/settings.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/magicseteditor-settings.o -MD -MP -MF ./src/data/$(DEPDIR)/magicseteditor-settings.Tpo -c -o ./src/data/magicseteditor-settings.o `test -f './src/data/settings.cpp' || echo '$(srcdir)/'`./src/data/settings.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/$(DEPDIR)/magicseteditor-settings.Tpo ./src/data/$(DEPDIR)/magicseteditor-settings.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/settings.cpp' object='./src/data/magicseteditor-settings.o' libtool=no @AMDEPBACKSLASH@ +./src/gfx/magicseteditor-blend_image.o: ./src/gfx/blend_image.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gfx/magicseteditor-blend_image.o -MD -MP -MF ./src/gfx/$(DEPDIR)/magicseteditor-blend_image.Tpo -c -o ./src/gfx/magicseteditor-blend_image.o `test -f './src/gfx/blend_image.cpp' || echo '$(srcdir)/'`./src/gfx/blend_image.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gfx/$(DEPDIR)/magicseteditor-blend_image.Tpo ./src/gfx/$(DEPDIR)/magicseteditor-blend_image.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gfx/blend_image.cpp' object='./src/gfx/magicseteditor-blend_image.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/magicseteditor-settings.o `test -f './src/data/settings.cpp' || echo '$(srcdir)/'`./src/data/settings.cpp +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gfx/magicseteditor-blend_image.o `test -f './src/gfx/blend_image.cpp' || echo '$(srcdir)/'`./src/gfx/blend_image.cpp -./src/data/magicseteditor-settings.obj: ./src/data/settings.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/data/magicseteditor-settings.obj -MD -MP -MF ./src/data/$(DEPDIR)/magicseteditor-settings.Tpo -c -o ./src/data/magicseteditor-settings.obj `if test -f './src/data/settings.cpp'; then $(CYGPATH_W) './src/data/settings.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/settings.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/data/$(DEPDIR)/magicseteditor-settings.Tpo ./src/data/$(DEPDIR)/magicseteditor-settings.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/data/settings.cpp' object='./src/data/magicseteditor-settings.obj' libtool=no @AMDEPBACKSLASH@ +./src/gfx/magicseteditor-blend_image.obj: ./src/gfx/blend_image.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gfx/magicseteditor-blend_image.obj -MD -MP -MF ./src/gfx/$(DEPDIR)/magicseteditor-blend_image.Tpo -c -o ./src/gfx/magicseteditor-blend_image.obj `if test -f './src/gfx/blend_image.cpp'; then $(CYGPATH_W) './src/gfx/blend_image.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gfx/blend_image.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gfx/$(DEPDIR)/magicseteditor-blend_image.Tpo ./src/gfx/$(DEPDIR)/magicseteditor-blend_image.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gfx/blend_image.cpp' object='./src/gfx/magicseteditor-blend_image.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/data/magicseteditor-settings.obj `if test -f './src/data/settings.cpp'; then $(CYGPATH_W) './src/data/settings.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/data/settings.cpp'; fi` +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gfx/magicseteditor-blend_image.obj `if test -f './src/gfx/blend_image.cpp'; then $(CYGPATH_W) './src/gfx/blend_image.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gfx/blend_image.cpp'; fi` + +./src/gfx/magicseteditor-color.o: ./src/gfx/color.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gfx/magicseteditor-color.o -MD -MP -MF ./src/gfx/$(DEPDIR)/magicseteditor-color.Tpo -c -o ./src/gfx/magicseteditor-color.o `test -f './src/gfx/color.cpp' || echo '$(srcdir)/'`./src/gfx/color.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gfx/$(DEPDIR)/magicseteditor-color.Tpo ./src/gfx/$(DEPDIR)/magicseteditor-color.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gfx/color.cpp' object='./src/gfx/magicseteditor-color.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gfx/magicseteditor-color.o `test -f './src/gfx/color.cpp' || echo '$(srcdir)/'`./src/gfx/color.cpp + +./src/gfx/magicseteditor-color.obj: ./src/gfx/color.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gfx/magicseteditor-color.obj -MD -MP -MF ./src/gfx/$(DEPDIR)/magicseteditor-color.Tpo -c -o ./src/gfx/magicseteditor-color.obj `if test -f './src/gfx/color.cpp'; then $(CYGPATH_W) './src/gfx/color.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gfx/color.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gfx/$(DEPDIR)/magicseteditor-color.Tpo ./src/gfx/$(DEPDIR)/magicseteditor-color.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gfx/color.cpp' object='./src/gfx/magicseteditor-color.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gfx/magicseteditor-color.obj `if test -f './src/gfx/color.cpp'; then $(CYGPATH_W) './src/gfx/color.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gfx/color.cpp'; fi` + +./src/gfx/magicseteditor-combine_image.o: ./src/gfx/combine_image.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gfx/magicseteditor-combine_image.o -MD -MP -MF ./src/gfx/$(DEPDIR)/magicseteditor-combine_image.Tpo -c -o ./src/gfx/magicseteditor-combine_image.o `test -f './src/gfx/combine_image.cpp' || echo '$(srcdir)/'`./src/gfx/combine_image.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gfx/$(DEPDIR)/magicseteditor-combine_image.Tpo ./src/gfx/$(DEPDIR)/magicseteditor-combine_image.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gfx/combine_image.cpp' object='./src/gfx/magicseteditor-combine_image.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gfx/magicseteditor-combine_image.o `test -f './src/gfx/combine_image.cpp' || echo '$(srcdir)/'`./src/gfx/combine_image.cpp + +./src/gfx/magicseteditor-combine_image.obj: ./src/gfx/combine_image.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gfx/magicseteditor-combine_image.obj -MD -MP -MF ./src/gfx/$(DEPDIR)/magicseteditor-combine_image.Tpo -c -o ./src/gfx/magicseteditor-combine_image.obj `if test -f './src/gfx/combine_image.cpp'; then $(CYGPATH_W) './src/gfx/combine_image.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gfx/combine_image.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gfx/$(DEPDIR)/magicseteditor-combine_image.Tpo ./src/gfx/$(DEPDIR)/magicseteditor-combine_image.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gfx/combine_image.cpp' object='./src/gfx/magicseteditor-combine_image.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gfx/magicseteditor-combine_image.obj `if test -f './src/gfx/combine_image.cpp'; then $(CYGPATH_W) './src/gfx/combine_image.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gfx/combine_image.cpp'; fi` + +./src/gfx/magicseteditor-generated_image.o: ./src/gfx/generated_image.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gfx/magicseteditor-generated_image.o -MD -MP -MF ./src/gfx/$(DEPDIR)/magicseteditor-generated_image.Tpo -c -o ./src/gfx/magicseteditor-generated_image.o `test -f './src/gfx/generated_image.cpp' || echo '$(srcdir)/'`./src/gfx/generated_image.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gfx/$(DEPDIR)/magicseteditor-generated_image.Tpo ./src/gfx/$(DEPDIR)/magicseteditor-generated_image.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gfx/generated_image.cpp' object='./src/gfx/magicseteditor-generated_image.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gfx/magicseteditor-generated_image.o `test -f './src/gfx/generated_image.cpp' || echo '$(srcdir)/'`./src/gfx/generated_image.cpp + +./src/gfx/magicseteditor-generated_image.obj: ./src/gfx/generated_image.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gfx/magicseteditor-generated_image.obj -MD -MP -MF ./src/gfx/$(DEPDIR)/magicseteditor-generated_image.Tpo -c -o ./src/gfx/magicseteditor-generated_image.obj `if test -f './src/gfx/generated_image.cpp'; then $(CYGPATH_W) './src/gfx/generated_image.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gfx/generated_image.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gfx/$(DEPDIR)/magicseteditor-generated_image.Tpo ./src/gfx/$(DEPDIR)/magicseteditor-generated_image.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gfx/generated_image.cpp' object='./src/gfx/magicseteditor-generated_image.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gfx/magicseteditor-generated_image.obj `if test -f './src/gfx/generated_image.cpp'; then $(CYGPATH_W) './src/gfx/generated_image.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gfx/generated_image.cpp'; fi` + +./src/gfx/magicseteditor-image_effects.o: ./src/gfx/image_effects.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gfx/magicseteditor-image_effects.o -MD -MP -MF ./src/gfx/$(DEPDIR)/magicseteditor-image_effects.Tpo -c -o ./src/gfx/magicseteditor-image_effects.o `test -f './src/gfx/image_effects.cpp' || echo '$(srcdir)/'`./src/gfx/image_effects.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gfx/$(DEPDIR)/magicseteditor-image_effects.Tpo ./src/gfx/$(DEPDIR)/magicseteditor-image_effects.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gfx/image_effects.cpp' object='./src/gfx/magicseteditor-image_effects.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gfx/magicseteditor-image_effects.o `test -f './src/gfx/image_effects.cpp' || echo '$(srcdir)/'`./src/gfx/image_effects.cpp + +./src/gfx/magicseteditor-image_effects.obj: ./src/gfx/image_effects.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gfx/magicseteditor-image_effects.obj -MD -MP -MF ./src/gfx/$(DEPDIR)/magicseteditor-image_effects.Tpo -c -o ./src/gfx/magicseteditor-image_effects.obj `if test -f './src/gfx/image_effects.cpp'; then $(CYGPATH_W) './src/gfx/image_effects.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gfx/image_effects.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gfx/$(DEPDIR)/magicseteditor-image_effects.Tpo ./src/gfx/$(DEPDIR)/magicseteditor-image_effects.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gfx/image_effects.cpp' object='./src/gfx/magicseteditor-image_effects.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gfx/magicseteditor-image_effects.obj `if test -f './src/gfx/image_effects.cpp'; then $(CYGPATH_W) './src/gfx/image_effects.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gfx/image_effects.cpp'; fi` + +./src/gfx/magicseteditor-mask_image.o: ./src/gfx/mask_image.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gfx/magicseteditor-mask_image.o -MD -MP -MF ./src/gfx/$(DEPDIR)/magicseteditor-mask_image.Tpo -c -o ./src/gfx/magicseteditor-mask_image.o `test -f './src/gfx/mask_image.cpp' || echo '$(srcdir)/'`./src/gfx/mask_image.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gfx/$(DEPDIR)/magicseteditor-mask_image.Tpo ./src/gfx/$(DEPDIR)/magicseteditor-mask_image.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gfx/mask_image.cpp' object='./src/gfx/magicseteditor-mask_image.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gfx/magicseteditor-mask_image.o `test -f './src/gfx/mask_image.cpp' || echo '$(srcdir)/'`./src/gfx/mask_image.cpp + +./src/gfx/magicseteditor-mask_image.obj: ./src/gfx/mask_image.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gfx/magicseteditor-mask_image.obj -MD -MP -MF ./src/gfx/$(DEPDIR)/magicseteditor-mask_image.Tpo -c -o ./src/gfx/magicseteditor-mask_image.obj `if test -f './src/gfx/mask_image.cpp'; then $(CYGPATH_W) './src/gfx/mask_image.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gfx/mask_image.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gfx/$(DEPDIR)/magicseteditor-mask_image.Tpo ./src/gfx/$(DEPDIR)/magicseteditor-mask_image.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gfx/mask_image.cpp' object='./src/gfx/magicseteditor-mask_image.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gfx/magicseteditor-mask_image.obj `if test -f './src/gfx/mask_image.cpp'; then $(CYGPATH_W) './src/gfx/mask_image.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gfx/mask_image.cpp'; fi` + +./src/gfx/magicseteditor-polynomial.o: ./src/gfx/polynomial.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gfx/magicseteditor-polynomial.o -MD -MP -MF ./src/gfx/$(DEPDIR)/magicseteditor-polynomial.Tpo -c -o ./src/gfx/magicseteditor-polynomial.o `test -f './src/gfx/polynomial.cpp' || echo '$(srcdir)/'`./src/gfx/polynomial.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gfx/$(DEPDIR)/magicseteditor-polynomial.Tpo ./src/gfx/$(DEPDIR)/magicseteditor-polynomial.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gfx/polynomial.cpp' object='./src/gfx/magicseteditor-polynomial.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gfx/magicseteditor-polynomial.o `test -f './src/gfx/polynomial.cpp' || echo '$(srcdir)/'`./src/gfx/polynomial.cpp + +./src/gfx/magicseteditor-polynomial.obj: ./src/gfx/polynomial.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gfx/magicseteditor-polynomial.obj -MD -MP -MF ./src/gfx/$(DEPDIR)/magicseteditor-polynomial.Tpo -c -o ./src/gfx/magicseteditor-polynomial.obj `if test -f './src/gfx/polynomial.cpp'; then $(CYGPATH_W) './src/gfx/polynomial.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gfx/polynomial.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gfx/$(DEPDIR)/magicseteditor-polynomial.Tpo ./src/gfx/$(DEPDIR)/magicseteditor-polynomial.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gfx/polynomial.cpp' object='./src/gfx/magicseteditor-polynomial.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gfx/magicseteditor-polynomial.obj `if test -f './src/gfx/polynomial.cpp'; then $(CYGPATH_W) './src/gfx/polynomial.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gfx/polynomial.cpp'; fi` + +./src/gfx/magicseteditor-resample_image.o: ./src/gfx/resample_image.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gfx/magicseteditor-resample_image.o -MD -MP -MF ./src/gfx/$(DEPDIR)/magicseteditor-resample_image.Tpo -c -o ./src/gfx/magicseteditor-resample_image.o `test -f './src/gfx/resample_image.cpp' || echo '$(srcdir)/'`./src/gfx/resample_image.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gfx/$(DEPDIR)/magicseteditor-resample_image.Tpo ./src/gfx/$(DEPDIR)/magicseteditor-resample_image.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gfx/resample_image.cpp' object='./src/gfx/magicseteditor-resample_image.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gfx/magicseteditor-resample_image.o `test -f './src/gfx/resample_image.cpp' || echo '$(srcdir)/'`./src/gfx/resample_image.cpp + +./src/gfx/magicseteditor-resample_image.obj: ./src/gfx/resample_image.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gfx/magicseteditor-resample_image.obj -MD -MP -MF ./src/gfx/$(DEPDIR)/magicseteditor-resample_image.Tpo -c -o ./src/gfx/magicseteditor-resample_image.obj `if test -f './src/gfx/resample_image.cpp'; then $(CYGPATH_W) './src/gfx/resample_image.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gfx/resample_image.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gfx/$(DEPDIR)/magicseteditor-resample_image.Tpo ./src/gfx/$(DEPDIR)/magicseteditor-resample_image.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gfx/resample_image.cpp' object='./src/gfx/magicseteditor-resample_image.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gfx/magicseteditor-resample_image.obj `if test -f './src/gfx/resample_image.cpp'; then $(CYGPATH_W) './src/gfx/resample_image.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gfx/resample_image.cpp'; fi` + +./src/gfx/magicseteditor-resample_text.o: ./src/gfx/resample_text.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gfx/magicseteditor-resample_text.o -MD -MP -MF ./src/gfx/$(DEPDIR)/magicseteditor-resample_text.Tpo -c -o ./src/gfx/magicseteditor-resample_text.o `test -f './src/gfx/resample_text.cpp' || echo '$(srcdir)/'`./src/gfx/resample_text.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gfx/$(DEPDIR)/magicseteditor-resample_text.Tpo ./src/gfx/$(DEPDIR)/magicseteditor-resample_text.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gfx/resample_text.cpp' object='./src/gfx/magicseteditor-resample_text.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gfx/magicseteditor-resample_text.o `test -f './src/gfx/resample_text.cpp' || echo '$(srcdir)/'`./src/gfx/resample_text.cpp + +./src/gfx/magicseteditor-resample_text.obj: ./src/gfx/resample_text.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gfx/magicseteditor-resample_text.obj -MD -MP -MF ./src/gfx/$(DEPDIR)/magicseteditor-resample_text.Tpo -c -o ./src/gfx/magicseteditor-resample_text.obj `if test -f './src/gfx/resample_text.cpp'; then $(CYGPATH_W) './src/gfx/resample_text.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gfx/resample_text.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gfx/$(DEPDIR)/magicseteditor-resample_text.Tpo ./src/gfx/$(DEPDIR)/magicseteditor-resample_text.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gfx/resample_text.cpp' object='./src/gfx/magicseteditor-resample_text.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gfx/magicseteditor-resample_text.obj `if test -f './src/gfx/resample_text.cpp'; then $(CYGPATH_W) './src/gfx/resample_text.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gfx/resample_text.cpp'; fi` + +./src/gfx/magicseteditor-rotate_image.o: ./src/gfx/rotate_image.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gfx/magicseteditor-rotate_image.o -MD -MP -MF ./src/gfx/$(DEPDIR)/magicseteditor-rotate_image.Tpo -c -o ./src/gfx/magicseteditor-rotate_image.o `test -f './src/gfx/rotate_image.cpp' || echo '$(srcdir)/'`./src/gfx/rotate_image.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gfx/$(DEPDIR)/magicseteditor-rotate_image.Tpo ./src/gfx/$(DEPDIR)/magicseteditor-rotate_image.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gfx/rotate_image.cpp' object='./src/gfx/magicseteditor-rotate_image.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gfx/magicseteditor-rotate_image.o `test -f './src/gfx/rotate_image.cpp' || echo '$(srcdir)/'`./src/gfx/rotate_image.cpp + +./src/gfx/magicseteditor-rotate_image.obj: ./src/gfx/rotate_image.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gfx/magicseteditor-rotate_image.obj -MD -MP -MF ./src/gfx/$(DEPDIR)/magicseteditor-rotate_image.Tpo -c -o ./src/gfx/magicseteditor-rotate_image.obj `if test -f './src/gfx/rotate_image.cpp'; then $(CYGPATH_W) './src/gfx/rotate_image.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gfx/rotate_image.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gfx/$(DEPDIR)/magicseteditor-rotate_image.Tpo ./src/gfx/$(DEPDIR)/magicseteditor-rotate_image.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gfx/rotate_image.cpp' object='./src/gfx/magicseteditor-rotate_image.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gfx/magicseteditor-rotate_image.obj `if test -f './src/gfx/rotate_image.cpp'; then $(CYGPATH_W) './src/gfx/rotate_image.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gfx/rotate_image.cpp'; fi` + +./src/gfx/magicseteditor-bezier.o: ./src/gfx/bezier.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gfx/magicseteditor-bezier.o -MD -MP -MF ./src/gfx/$(DEPDIR)/magicseteditor-bezier.Tpo -c -o ./src/gfx/magicseteditor-bezier.o `test -f './src/gfx/bezier.cpp' || echo '$(srcdir)/'`./src/gfx/bezier.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gfx/$(DEPDIR)/magicseteditor-bezier.Tpo ./src/gfx/$(DEPDIR)/magicseteditor-bezier.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gfx/bezier.cpp' object='./src/gfx/magicseteditor-bezier.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gfx/magicseteditor-bezier.o `test -f './src/gfx/bezier.cpp' || echo '$(srcdir)/'`./src/gfx/bezier.cpp + +./src/gfx/magicseteditor-bezier.obj: ./src/gfx/bezier.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gfx/magicseteditor-bezier.obj -MD -MP -MF ./src/gfx/$(DEPDIR)/magicseteditor-bezier.Tpo -c -o ./src/gfx/magicseteditor-bezier.obj `if test -f './src/gfx/bezier.cpp'; then $(CYGPATH_W) './src/gfx/bezier.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gfx/bezier.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gfx/$(DEPDIR)/magicseteditor-bezier.Tpo ./src/gfx/$(DEPDIR)/magicseteditor-bezier.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gfx/bezier.cpp' object='./src/gfx/magicseteditor-bezier.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gfx/magicseteditor-bezier.obj `if test -f './src/gfx/bezier.cpp'; then $(CYGPATH_W) './src/gfx/bezier.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gfx/bezier.cpp'; fi` + +./src/gui/control/magicseteditor-card_viewer.o: ./src/gui/control/card_viewer.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/control/magicseteditor-card_viewer.o -MD -MP -MF ./src/gui/control/$(DEPDIR)/magicseteditor-card_viewer.Tpo -c -o ./src/gui/control/magicseteditor-card_viewer.o `test -f './src/gui/control/card_viewer.cpp' || echo '$(srcdir)/'`./src/gui/control/card_viewer.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/control/$(DEPDIR)/magicseteditor-card_viewer.Tpo ./src/gui/control/$(DEPDIR)/magicseteditor-card_viewer.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/control/card_viewer.cpp' object='./src/gui/control/magicseteditor-card_viewer.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/control/magicseteditor-card_viewer.o `test -f './src/gui/control/card_viewer.cpp' || echo '$(srcdir)/'`./src/gui/control/card_viewer.cpp + +./src/gui/control/magicseteditor-card_viewer.obj: ./src/gui/control/card_viewer.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/control/magicseteditor-card_viewer.obj -MD -MP -MF ./src/gui/control/$(DEPDIR)/magicseteditor-card_viewer.Tpo -c -o ./src/gui/control/magicseteditor-card_viewer.obj `if test -f './src/gui/control/card_viewer.cpp'; then $(CYGPATH_W) './src/gui/control/card_viewer.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/control/card_viewer.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/control/$(DEPDIR)/magicseteditor-card_viewer.Tpo ./src/gui/control/$(DEPDIR)/magicseteditor-card_viewer.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/control/card_viewer.cpp' object='./src/gui/control/magicseteditor-card_viewer.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/control/magicseteditor-card_viewer.obj `if test -f './src/gui/control/card_viewer.cpp'; then $(CYGPATH_W) './src/gui/control/card_viewer.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/control/card_viewer.cpp'; fi` + +./src/gui/control/magicseteditor-native_look_editor.o: ./src/gui/control/native_look_editor.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/control/magicseteditor-native_look_editor.o -MD -MP -MF ./src/gui/control/$(DEPDIR)/magicseteditor-native_look_editor.Tpo -c -o ./src/gui/control/magicseteditor-native_look_editor.o `test -f './src/gui/control/native_look_editor.cpp' || echo '$(srcdir)/'`./src/gui/control/native_look_editor.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/control/$(DEPDIR)/magicseteditor-native_look_editor.Tpo ./src/gui/control/$(DEPDIR)/magicseteditor-native_look_editor.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/control/native_look_editor.cpp' object='./src/gui/control/magicseteditor-native_look_editor.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/control/magicseteditor-native_look_editor.o `test -f './src/gui/control/native_look_editor.cpp' || echo '$(srcdir)/'`./src/gui/control/native_look_editor.cpp + +./src/gui/control/magicseteditor-native_look_editor.obj: ./src/gui/control/native_look_editor.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/control/magicseteditor-native_look_editor.obj -MD -MP -MF ./src/gui/control/$(DEPDIR)/magicseteditor-native_look_editor.Tpo -c -o ./src/gui/control/magicseteditor-native_look_editor.obj `if test -f './src/gui/control/native_look_editor.cpp'; then $(CYGPATH_W) './src/gui/control/native_look_editor.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/control/native_look_editor.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/control/$(DEPDIR)/magicseteditor-native_look_editor.Tpo ./src/gui/control/$(DEPDIR)/magicseteditor-native_look_editor.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/control/native_look_editor.cpp' object='./src/gui/control/magicseteditor-native_look_editor.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/control/magicseteditor-native_look_editor.obj `if test -f './src/gui/control/native_look_editor.cpp'; then $(CYGPATH_W) './src/gui/control/native_look_editor.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/control/native_look_editor.cpp'; fi` + +./src/gui/control/magicseteditor-card_list_column_select.o: ./src/gui/control/card_list_column_select.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/control/magicseteditor-card_list_column_select.o -MD -MP -MF ./src/gui/control/$(DEPDIR)/magicseteditor-card_list_column_select.Tpo -c -o ./src/gui/control/magicseteditor-card_list_column_select.o `test -f './src/gui/control/card_list_column_select.cpp' || echo '$(srcdir)/'`./src/gui/control/card_list_column_select.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/control/$(DEPDIR)/magicseteditor-card_list_column_select.Tpo ./src/gui/control/$(DEPDIR)/magicseteditor-card_list_column_select.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/control/card_list_column_select.cpp' object='./src/gui/control/magicseteditor-card_list_column_select.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/control/magicseteditor-card_list_column_select.o `test -f './src/gui/control/card_list_column_select.cpp' || echo '$(srcdir)/'`./src/gui/control/card_list_column_select.cpp + +./src/gui/control/magicseteditor-card_list_column_select.obj: ./src/gui/control/card_list_column_select.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/control/magicseteditor-card_list_column_select.obj -MD -MP -MF ./src/gui/control/$(DEPDIR)/magicseteditor-card_list_column_select.Tpo -c -o ./src/gui/control/magicseteditor-card_list_column_select.obj `if test -f './src/gui/control/card_list_column_select.cpp'; then $(CYGPATH_W) './src/gui/control/card_list_column_select.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/control/card_list_column_select.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/control/$(DEPDIR)/magicseteditor-card_list_column_select.Tpo ./src/gui/control/$(DEPDIR)/magicseteditor-card_list_column_select.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/control/card_list_column_select.cpp' object='./src/gui/control/magicseteditor-card_list_column_select.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/control/magicseteditor-card_list_column_select.obj `if test -f './src/gui/control/card_list_column_select.cpp'; then $(CYGPATH_W) './src/gui/control/card_list_column_select.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/control/card_list_column_select.cpp'; fi` + +./src/gui/control/magicseteditor-filtered_card_list.o: ./src/gui/control/filtered_card_list.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/control/magicseteditor-filtered_card_list.o -MD -MP -MF ./src/gui/control/$(DEPDIR)/magicseteditor-filtered_card_list.Tpo -c -o ./src/gui/control/magicseteditor-filtered_card_list.o `test -f './src/gui/control/filtered_card_list.cpp' || echo '$(srcdir)/'`./src/gui/control/filtered_card_list.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/control/$(DEPDIR)/magicseteditor-filtered_card_list.Tpo ./src/gui/control/$(DEPDIR)/magicseteditor-filtered_card_list.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/control/filtered_card_list.cpp' object='./src/gui/control/magicseteditor-filtered_card_list.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/control/magicseteditor-filtered_card_list.o `test -f './src/gui/control/filtered_card_list.cpp' || echo '$(srcdir)/'`./src/gui/control/filtered_card_list.cpp + +./src/gui/control/magicseteditor-filtered_card_list.obj: ./src/gui/control/filtered_card_list.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/control/magicseteditor-filtered_card_list.obj -MD -MP -MF ./src/gui/control/$(DEPDIR)/magicseteditor-filtered_card_list.Tpo -c -o ./src/gui/control/magicseteditor-filtered_card_list.obj `if test -f './src/gui/control/filtered_card_list.cpp'; then $(CYGPATH_W) './src/gui/control/filtered_card_list.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/control/filtered_card_list.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/control/$(DEPDIR)/magicseteditor-filtered_card_list.Tpo ./src/gui/control/$(DEPDIR)/magicseteditor-filtered_card_list.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/control/filtered_card_list.cpp' object='./src/gui/control/magicseteditor-filtered_card_list.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/control/magicseteditor-filtered_card_list.obj `if test -f './src/gui/control/filtered_card_list.cpp'; then $(CYGPATH_W) './src/gui/control/filtered_card_list.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/control/filtered_card_list.cpp'; fi` + +./src/gui/control/magicseteditor-item_list.o: ./src/gui/control/item_list.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/control/magicseteditor-item_list.o -MD -MP -MF ./src/gui/control/$(DEPDIR)/magicseteditor-item_list.Tpo -c -o ./src/gui/control/magicseteditor-item_list.o `test -f './src/gui/control/item_list.cpp' || echo '$(srcdir)/'`./src/gui/control/item_list.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/control/$(DEPDIR)/magicseteditor-item_list.Tpo ./src/gui/control/$(DEPDIR)/magicseteditor-item_list.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/control/item_list.cpp' object='./src/gui/control/magicseteditor-item_list.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/control/magicseteditor-item_list.o `test -f './src/gui/control/item_list.cpp' || echo '$(srcdir)/'`./src/gui/control/item_list.cpp + +./src/gui/control/magicseteditor-item_list.obj: ./src/gui/control/item_list.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/control/magicseteditor-item_list.obj -MD -MP -MF ./src/gui/control/$(DEPDIR)/magicseteditor-item_list.Tpo -c -o ./src/gui/control/magicseteditor-item_list.obj `if test -f './src/gui/control/item_list.cpp'; then $(CYGPATH_W) './src/gui/control/item_list.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/control/item_list.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/control/$(DEPDIR)/magicseteditor-item_list.Tpo ./src/gui/control/$(DEPDIR)/magicseteditor-item_list.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/control/item_list.cpp' object='./src/gui/control/magicseteditor-item_list.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/control/magicseteditor-item_list.obj `if test -f './src/gui/control/item_list.cpp'; then $(CYGPATH_W) './src/gui/control/item_list.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/control/item_list.cpp'; fi` + +./src/gui/control/magicseteditor-package_list.o: ./src/gui/control/package_list.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/control/magicseteditor-package_list.o -MD -MP -MF ./src/gui/control/$(DEPDIR)/magicseteditor-package_list.Tpo -c -o ./src/gui/control/magicseteditor-package_list.o `test -f './src/gui/control/package_list.cpp' || echo '$(srcdir)/'`./src/gui/control/package_list.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/control/$(DEPDIR)/magicseteditor-package_list.Tpo ./src/gui/control/$(DEPDIR)/magicseteditor-package_list.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/control/package_list.cpp' object='./src/gui/control/magicseteditor-package_list.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/control/magicseteditor-package_list.o `test -f './src/gui/control/package_list.cpp' || echo '$(srcdir)/'`./src/gui/control/package_list.cpp + +./src/gui/control/magicseteditor-package_list.obj: ./src/gui/control/package_list.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/control/magicseteditor-package_list.obj -MD -MP -MF ./src/gui/control/$(DEPDIR)/magicseteditor-package_list.Tpo -c -o ./src/gui/control/magicseteditor-package_list.obj `if test -f './src/gui/control/package_list.cpp'; then $(CYGPATH_W) './src/gui/control/package_list.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/control/package_list.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/control/$(DEPDIR)/magicseteditor-package_list.Tpo ./src/gui/control/$(DEPDIR)/magicseteditor-package_list.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/control/package_list.cpp' object='./src/gui/control/magicseteditor-package_list.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/control/magicseteditor-package_list.obj `if test -f './src/gui/control/package_list.cpp'; then $(CYGPATH_W) './src/gui/control/package_list.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/control/package_list.cpp'; fi` + +./src/gui/control/magicseteditor-text_ctrl.o: ./src/gui/control/text_ctrl.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/control/magicseteditor-text_ctrl.o -MD -MP -MF ./src/gui/control/$(DEPDIR)/magicseteditor-text_ctrl.Tpo -c -o ./src/gui/control/magicseteditor-text_ctrl.o `test -f './src/gui/control/text_ctrl.cpp' || echo '$(srcdir)/'`./src/gui/control/text_ctrl.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/control/$(DEPDIR)/magicseteditor-text_ctrl.Tpo ./src/gui/control/$(DEPDIR)/magicseteditor-text_ctrl.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/control/text_ctrl.cpp' object='./src/gui/control/magicseteditor-text_ctrl.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/control/magicseteditor-text_ctrl.o `test -f './src/gui/control/text_ctrl.cpp' || echo '$(srcdir)/'`./src/gui/control/text_ctrl.cpp + +./src/gui/control/magicseteditor-text_ctrl.obj: ./src/gui/control/text_ctrl.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/control/magicseteditor-text_ctrl.obj -MD -MP -MF ./src/gui/control/$(DEPDIR)/magicseteditor-text_ctrl.Tpo -c -o ./src/gui/control/magicseteditor-text_ctrl.obj `if test -f './src/gui/control/text_ctrl.cpp'; then $(CYGPATH_W) './src/gui/control/text_ctrl.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/control/text_ctrl.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/control/$(DEPDIR)/magicseteditor-text_ctrl.Tpo ./src/gui/control/$(DEPDIR)/magicseteditor-text_ctrl.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/control/text_ctrl.cpp' object='./src/gui/control/magicseteditor-text_ctrl.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/control/magicseteditor-text_ctrl.obj `if test -f './src/gui/control/text_ctrl.cpp'; then $(CYGPATH_W) './src/gui/control/text_ctrl.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/control/text_ctrl.cpp'; fi` + +./src/gui/control/magicseteditor-tree_list.o: ./src/gui/control/tree_list.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/control/magicseteditor-tree_list.o -MD -MP -MF ./src/gui/control/$(DEPDIR)/magicseteditor-tree_list.Tpo -c -o ./src/gui/control/magicseteditor-tree_list.o `test -f './src/gui/control/tree_list.cpp' || echo '$(srcdir)/'`./src/gui/control/tree_list.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/control/$(DEPDIR)/magicseteditor-tree_list.Tpo ./src/gui/control/$(DEPDIR)/magicseteditor-tree_list.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/control/tree_list.cpp' object='./src/gui/control/magicseteditor-tree_list.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/control/magicseteditor-tree_list.o `test -f './src/gui/control/tree_list.cpp' || echo '$(srcdir)/'`./src/gui/control/tree_list.cpp + +./src/gui/control/magicseteditor-tree_list.obj: ./src/gui/control/tree_list.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/control/magicseteditor-tree_list.obj -MD -MP -MF ./src/gui/control/$(DEPDIR)/magicseteditor-tree_list.Tpo -c -o ./src/gui/control/magicseteditor-tree_list.obj `if test -f './src/gui/control/tree_list.cpp'; then $(CYGPATH_W) './src/gui/control/tree_list.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/control/tree_list.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/control/$(DEPDIR)/magicseteditor-tree_list.Tpo ./src/gui/control/$(DEPDIR)/magicseteditor-tree_list.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/control/tree_list.cpp' object='./src/gui/control/magicseteditor-tree_list.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/control/magicseteditor-tree_list.obj `if test -f './src/gui/control/tree_list.cpp'; then $(CYGPATH_W) './src/gui/control/tree_list.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/control/tree_list.cpp'; fi` + +./src/gui/control/magicseteditor-card_editor.o: ./src/gui/control/card_editor.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/control/magicseteditor-card_editor.o -MD -MP -MF ./src/gui/control/$(DEPDIR)/magicseteditor-card_editor.Tpo -c -o ./src/gui/control/magicseteditor-card_editor.o `test -f './src/gui/control/card_editor.cpp' || echo '$(srcdir)/'`./src/gui/control/card_editor.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/control/$(DEPDIR)/magicseteditor-card_editor.Tpo ./src/gui/control/$(DEPDIR)/magicseteditor-card_editor.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/control/card_editor.cpp' object='./src/gui/control/magicseteditor-card_editor.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/control/magicseteditor-card_editor.o `test -f './src/gui/control/card_editor.cpp' || echo '$(srcdir)/'`./src/gui/control/card_editor.cpp + +./src/gui/control/magicseteditor-card_editor.obj: ./src/gui/control/card_editor.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/control/magicseteditor-card_editor.obj -MD -MP -MF ./src/gui/control/$(DEPDIR)/magicseteditor-card_editor.Tpo -c -o ./src/gui/control/magicseteditor-card_editor.obj `if test -f './src/gui/control/card_editor.cpp'; then $(CYGPATH_W) './src/gui/control/card_editor.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/control/card_editor.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/control/$(DEPDIR)/magicseteditor-card_editor.Tpo ./src/gui/control/$(DEPDIR)/magicseteditor-card_editor.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/control/card_editor.cpp' object='./src/gui/control/magicseteditor-card_editor.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/control/magicseteditor-card_editor.obj `if test -f './src/gui/control/card_editor.cpp'; then $(CYGPATH_W) './src/gui/control/card_editor.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/control/card_editor.cpp'; fi` + +./src/gui/control/magicseteditor-card_list.o: ./src/gui/control/card_list.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/control/magicseteditor-card_list.o -MD -MP -MF ./src/gui/control/$(DEPDIR)/magicseteditor-card_list.Tpo -c -o ./src/gui/control/magicseteditor-card_list.o `test -f './src/gui/control/card_list.cpp' || echo '$(srcdir)/'`./src/gui/control/card_list.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/control/$(DEPDIR)/magicseteditor-card_list.Tpo ./src/gui/control/$(DEPDIR)/magicseteditor-card_list.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/control/card_list.cpp' object='./src/gui/control/magicseteditor-card_list.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/control/magicseteditor-card_list.o `test -f './src/gui/control/card_list.cpp' || echo '$(srcdir)/'`./src/gui/control/card_list.cpp + +./src/gui/control/magicseteditor-card_list.obj: ./src/gui/control/card_list.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/control/magicseteditor-card_list.obj -MD -MP -MF ./src/gui/control/$(DEPDIR)/magicseteditor-card_list.Tpo -c -o ./src/gui/control/magicseteditor-card_list.obj `if test -f './src/gui/control/card_list.cpp'; then $(CYGPATH_W) './src/gui/control/card_list.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/control/card_list.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/control/$(DEPDIR)/magicseteditor-card_list.Tpo ./src/gui/control/$(DEPDIR)/magicseteditor-card_list.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/control/card_list.cpp' object='./src/gui/control/magicseteditor-card_list.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/control/magicseteditor-card_list.obj `if test -f './src/gui/control/card_list.cpp'; then $(CYGPATH_W) './src/gui/control/card_list.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/control/card_list.cpp'; fi` + +./src/gui/control/magicseteditor-filter_ctrl.o: ./src/gui/control/filter_ctrl.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/control/magicseteditor-filter_ctrl.o -MD -MP -MF ./src/gui/control/$(DEPDIR)/magicseteditor-filter_ctrl.Tpo -c -o ./src/gui/control/magicseteditor-filter_ctrl.o `test -f './src/gui/control/filter_ctrl.cpp' || echo '$(srcdir)/'`./src/gui/control/filter_ctrl.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/control/$(DEPDIR)/magicseteditor-filter_ctrl.Tpo ./src/gui/control/$(DEPDIR)/magicseteditor-filter_ctrl.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/control/filter_ctrl.cpp' object='./src/gui/control/magicseteditor-filter_ctrl.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/control/magicseteditor-filter_ctrl.o `test -f './src/gui/control/filter_ctrl.cpp' || echo '$(srcdir)/'`./src/gui/control/filter_ctrl.cpp + +./src/gui/control/magicseteditor-filter_ctrl.obj: ./src/gui/control/filter_ctrl.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/control/magicseteditor-filter_ctrl.obj -MD -MP -MF ./src/gui/control/$(DEPDIR)/magicseteditor-filter_ctrl.Tpo -c -o ./src/gui/control/magicseteditor-filter_ctrl.obj `if test -f './src/gui/control/filter_ctrl.cpp'; then $(CYGPATH_W) './src/gui/control/filter_ctrl.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/control/filter_ctrl.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/control/$(DEPDIR)/magicseteditor-filter_ctrl.Tpo ./src/gui/control/$(DEPDIR)/magicseteditor-filter_ctrl.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/control/filter_ctrl.cpp' object='./src/gui/control/magicseteditor-filter_ctrl.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/control/magicseteditor-filter_ctrl.obj `if test -f './src/gui/control/filter_ctrl.cpp'; then $(CYGPATH_W) './src/gui/control/filter_ctrl.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/control/filter_ctrl.cpp'; fi` + +./src/gui/control/magicseteditor-gallery_list.o: ./src/gui/control/gallery_list.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/control/magicseteditor-gallery_list.o -MD -MP -MF ./src/gui/control/$(DEPDIR)/magicseteditor-gallery_list.Tpo -c -o ./src/gui/control/magicseteditor-gallery_list.o `test -f './src/gui/control/gallery_list.cpp' || echo '$(srcdir)/'`./src/gui/control/gallery_list.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/control/$(DEPDIR)/magicseteditor-gallery_list.Tpo ./src/gui/control/$(DEPDIR)/magicseteditor-gallery_list.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/control/gallery_list.cpp' object='./src/gui/control/magicseteditor-gallery_list.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/control/magicseteditor-gallery_list.o `test -f './src/gui/control/gallery_list.cpp' || echo '$(srcdir)/'`./src/gui/control/gallery_list.cpp + +./src/gui/control/magicseteditor-gallery_list.obj: ./src/gui/control/gallery_list.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/control/magicseteditor-gallery_list.obj -MD -MP -MF ./src/gui/control/$(DEPDIR)/magicseteditor-gallery_list.Tpo -c -o ./src/gui/control/magicseteditor-gallery_list.obj `if test -f './src/gui/control/gallery_list.cpp'; then $(CYGPATH_W) './src/gui/control/gallery_list.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/control/gallery_list.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/control/$(DEPDIR)/magicseteditor-gallery_list.Tpo ./src/gui/control/$(DEPDIR)/magicseteditor-gallery_list.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/control/gallery_list.cpp' object='./src/gui/control/magicseteditor-gallery_list.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/control/magicseteditor-gallery_list.obj `if test -f './src/gui/control/gallery_list.cpp'; then $(CYGPATH_W) './src/gui/control/gallery_list.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/control/gallery_list.cpp'; fi` + +./src/gui/control/magicseteditor-graph.o: ./src/gui/control/graph.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/control/magicseteditor-graph.o -MD -MP -MF ./src/gui/control/$(DEPDIR)/magicseteditor-graph.Tpo -c -o ./src/gui/control/magicseteditor-graph.o `test -f './src/gui/control/graph.cpp' || echo '$(srcdir)/'`./src/gui/control/graph.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/control/$(DEPDIR)/magicseteditor-graph.Tpo ./src/gui/control/$(DEPDIR)/magicseteditor-graph.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/control/graph.cpp' object='./src/gui/control/magicseteditor-graph.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/control/magicseteditor-graph.o `test -f './src/gui/control/graph.cpp' || echo '$(srcdir)/'`./src/gui/control/graph.cpp + +./src/gui/control/magicseteditor-graph.obj: ./src/gui/control/graph.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/control/magicseteditor-graph.obj -MD -MP -MF ./src/gui/control/$(DEPDIR)/magicseteditor-graph.Tpo -c -o ./src/gui/control/magicseteditor-graph.obj `if test -f './src/gui/control/graph.cpp'; then $(CYGPATH_W) './src/gui/control/graph.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/control/graph.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/control/$(DEPDIR)/magicseteditor-graph.Tpo ./src/gui/control/$(DEPDIR)/magicseteditor-graph.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/control/graph.cpp' object='./src/gui/control/magicseteditor-graph.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/control/magicseteditor-graph.obj `if test -f './src/gui/control/graph.cpp'; then $(CYGPATH_W) './src/gui/control/graph.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/control/graph.cpp'; fi` + +./src/gui/control/magicseteditor-image_card_list.o: ./src/gui/control/image_card_list.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/control/magicseteditor-image_card_list.o -MD -MP -MF ./src/gui/control/$(DEPDIR)/magicseteditor-image_card_list.Tpo -c -o ./src/gui/control/magicseteditor-image_card_list.o `test -f './src/gui/control/image_card_list.cpp' || echo '$(srcdir)/'`./src/gui/control/image_card_list.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/control/$(DEPDIR)/magicseteditor-image_card_list.Tpo ./src/gui/control/$(DEPDIR)/magicseteditor-image_card_list.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/control/image_card_list.cpp' object='./src/gui/control/magicseteditor-image_card_list.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/control/magicseteditor-image_card_list.o `test -f './src/gui/control/image_card_list.cpp' || echo '$(srcdir)/'`./src/gui/control/image_card_list.cpp + +./src/gui/control/magicseteditor-image_card_list.obj: ./src/gui/control/image_card_list.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/control/magicseteditor-image_card_list.obj -MD -MP -MF ./src/gui/control/$(DEPDIR)/magicseteditor-image_card_list.Tpo -c -o ./src/gui/control/magicseteditor-image_card_list.obj `if test -f './src/gui/control/image_card_list.cpp'; then $(CYGPATH_W) './src/gui/control/image_card_list.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/control/image_card_list.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/control/$(DEPDIR)/magicseteditor-image_card_list.Tpo ./src/gui/control/$(DEPDIR)/magicseteditor-image_card_list.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/control/image_card_list.cpp' object='./src/gui/control/magicseteditor-image_card_list.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/control/magicseteditor-image_card_list.obj `if test -f './src/gui/control/image_card_list.cpp'; then $(CYGPATH_W) './src/gui/control/image_card_list.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/control/image_card_list.cpp'; fi` + +./src/gui/control/magicseteditor-keyword_list.o: ./src/gui/control/keyword_list.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/control/magicseteditor-keyword_list.o -MD -MP -MF ./src/gui/control/$(DEPDIR)/magicseteditor-keyword_list.Tpo -c -o ./src/gui/control/magicseteditor-keyword_list.o `test -f './src/gui/control/keyword_list.cpp' || echo '$(srcdir)/'`./src/gui/control/keyword_list.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/control/$(DEPDIR)/magicseteditor-keyword_list.Tpo ./src/gui/control/$(DEPDIR)/magicseteditor-keyword_list.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/control/keyword_list.cpp' object='./src/gui/control/magicseteditor-keyword_list.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/control/magicseteditor-keyword_list.o `test -f './src/gui/control/keyword_list.cpp' || echo '$(srcdir)/'`./src/gui/control/keyword_list.cpp + +./src/gui/control/magicseteditor-keyword_list.obj: ./src/gui/control/keyword_list.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/control/magicseteditor-keyword_list.obj -MD -MP -MF ./src/gui/control/$(DEPDIR)/magicseteditor-keyword_list.Tpo -c -o ./src/gui/control/magicseteditor-keyword_list.obj `if test -f './src/gui/control/keyword_list.cpp'; then $(CYGPATH_W) './src/gui/control/keyword_list.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/control/keyword_list.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/control/$(DEPDIR)/magicseteditor-keyword_list.Tpo ./src/gui/control/$(DEPDIR)/magicseteditor-keyword_list.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/control/keyword_list.cpp' object='./src/gui/control/magicseteditor-keyword_list.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/control/magicseteditor-keyword_list.obj `if test -f './src/gui/control/keyword_list.cpp'; then $(CYGPATH_W) './src/gui/control/keyword_list.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/control/keyword_list.cpp'; fi` + +./src/gui/control/magicseteditor-select_card_list.o: ./src/gui/control/select_card_list.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/control/magicseteditor-select_card_list.o -MD -MP -MF ./src/gui/control/$(DEPDIR)/magicseteditor-select_card_list.Tpo -c -o ./src/gui/control/magicseteditor-select_card_list.o `test -f './src/gui/control/select_card_list.cpp' || echo '$(srcdir)/'`./src/gui/control/select_card_list.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/control/$(DEPDIR)/magicseteditor-select_card_list.Tpo ./src/gui/control/$(DEPDIR)/magicseteditor-select_card_list.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/control/select_card_list.cpp' object='./src/gui/control/magicseteditor-select_card_list.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/control/magicseteditor-select_card_list.o `test -f './src/gui/control/select_card_list.cpp' || echo '$(srcdir)/'`./src/gui/control/select_card_list.cpp + +./src/gui/control/magicseteditor-select_card_list.obj: ./src/gui/control/select_card_list.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/control/magicseteditor-select_card_list.obj -MD -MP -MF ./src/gui/control/$(DEPDIR)/magicseteditor-select_card_list.Tpo -c -o ./src/gui/control/magicseteditor-select_card_list.obj `if test -f './src/gui/control/select_card_list.cpp'; then $(CYGPATH_W) './src/gui/control/select_card_list.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/control/select_card_list.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/control/$(DEPDIR)/magicseteditor-select_card_list.Tpo ./src/gui/control/$(DEPDIR)/magicseteditor-select_card_list.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/control/select_card_list.cpp' object='./src/gui/control/magicseteditor-select_card_list.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/control/magicseteditor-select_card_list.obj `if test -f './src/gui/control/select_card_list.cpp'; then $(CYGPATH_W) './src/gui/control/select_card_list.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/control/select_card_list.cpp'; fi` + +./src/gui/magicseteditor-package_update_list.o: ./src/gui/package_update_list.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-package_update_list.o -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-package_update_list.Tpo -c -o ./src/gui/magicseteditor-package_update_list.o `test -f './src/gui/package_update_list.cpp' || echo '$(srcdir)/'`./src/gui/package_update_list.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-package_update_list.Tpo ./src/gui/$(DEPDIR)/magicseteditor-package_update_list.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/package_update_list.cpp' object='./src/gui/magicseteditor-package_update_list.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-package_update_list.o `test -f './src/gui/package_update_list.cpp' || echo '$(srcdir)/'`./src/gui/package_update_list.cpp + +./src/gui/magicseteditor-package_update_list.obj: ./src/gui/package_update_list.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-package_update_list.obj -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-package_update_list.Tpo -c -o ./src/gui/magicseteditor-package_update_list.obj `if test -f './src/gui/package_update_list.cpp'; then $(CYGPATH_W) './src/gui/package_update_list.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/package_update_list.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-package_update_list.Tpo ./src/gui/$(DEPDIR)/magicseteditor-package_update_list.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/package_update_list.cpp' object='./src/gui/magicseteditor-package_update_list.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-package_update_list.obj `if test -f './src/gui/package_update_list.cpp'; then $(CYGPATH_W) './src/gui/package_update_list.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/package_update_list.cpp'; fi` + +./src/gui/magicseteditor-packages_window.o: ./src/gui/packages_window.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-packages_window.o -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-packages_window.Tpo -c -o ./src/gui/magicseteditor-packages_window.o `test -f './src/gui/packages_window.cpp' || echo '$(srcdir)/'`./src/gui/packages_window.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-packages_window.Tpo ./src/gui/$(DEPDIR)/magicseteditor-packages_window.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/packages_window.cpp' object='./src/gui/magicseteditor-packages_window.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-packages_window.o `test -f './src/gui/packages_window.cpp' || echo '$(srcdir)/'`./src/gui/packages_window.cpp + +./src/gui/magicseteditor-packages_window.obj: ./src/gui/packages_window.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-packages_window.obj -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-packages_window.Tpo -c -o ./src/gui/magicseteditor-packages_window.obj `if test -f './src/gui/packages_window.cpp'; then $(CYGPATH_W) './src/gui/packages_window.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/packages_window.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-packages_window.Tpo ./src/gui/$(DEPDIR)/magicseteditor-packages_window.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/packages_window.cpp' object='./src/gui/magicseteditor-packages_window.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-packages_window.obj `if test -f './src/gui/packages_window.cpp'; then $(CYGPATH_W) './src/gui/packages_window.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/packages_window.cpp'; fi` + +./src/gui/magicseteditor-preferences_window.o: ./src/gui/preferences_window.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-preferences_window.o -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-preferences_window.Tpo -c -o ./src/gui/magicseteditor-preferences_window.o `test -f './src/gui/preferences_window.cpp' || echo '$(srcdir)/'`./src/gui/preferences_window.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-preferences_window.Tpo ./src/gui/$(DEPDIR)/magicseteditor-preferences_window.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/preferences_window.cpp' object='./src/gui/magicseteditor-preferences_window.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-preferences_window.o `test -f './src/gui/preferences_window.cpp' || echo '$(srcdir)/'`./src/gui/preferences_window.cpp + +./src/gui/magicseteditor-preferences_window.obj: ./src/gui/preferences_window.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-preferences_window.obj -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-preferences_window.Tpo -c -o ./src/gui/magicseteditor-preferences_window.obj `if test -f './src/gui/preferences_window.cpp'; then $(CYGPATH_W) './src/gui/preferences_window.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/preferences_window.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-preferences_window.Tpo ./src/gui/$(DEPDIR)/magicseteditor-preferences_window.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/preferences_window.cpp' object='./src/gui/magicseteditor-preferences_window.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-preferences_window.obj `if test -f './src/gui/preferences_window.cpp'; then $(CYGPATH_W) './src/gui/preferences_window.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/preferences_window.cpp'; fi` + +./src/gui/set/magicseteditor-cards_panel.o: ./src/gui/set/cards_panel.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/set/magicseteditor-cards_panel.o -MD -MP -MF ./src/gui/set/$(DEPDIR)/magicseteditor-cards_panel.Tpo -c -o ./src/gui/set/magicseteditor-cards_panel.o `test -f './src/gui/set/cards_panel.cpp' || echo '$(srcdir)/'`./src/gui/set/cards_panel.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/set/$(DEPDIR)/magicseteditor-cards_panel.Tpo ./src/gui/set/$(DEPDIR)/magicseteditor-cards_panel.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/set/cards_panel.cpp' object='./src/gui/set/magicseteditor-cards_panel.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/set/magicseteditor-cards_panel.o `test -f './src/gui/set/cards_panel.cpp' || echo '$(srcdir)/'`./src/gui/set/cards_panel.cpp + +./src/gui/set/magicseteditor-cards_panel.obj: ./src/gui/set/cards_panel.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/set/magicseteditor-cards_panel.obj -MD -MP -MF ./src/gui/set/$(DEPDIR)/magicseteditor-cards_panel.Tpo -c -o ./src/gui/set/magicseteditor-cards_panel.obj `if test -f './src/gui/set/cards_panel.cpp'; then $(CYGPATH_W) './src/gui/set/cards_panel.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/set/cards_panel.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/set/$(DEPDIR)/magicseteditor-cards_panel.Tpo ./src/gui/set/$(DEPDIR)/magicseteditor-cards_panel.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/set/cards_panel.cpp' object='./src/gui/set/magicseteditor-cards_panel.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/set/magicseteditor-cards_panel.obj `if test -f './src/gui/set/cards_panel.cpp'; then $(CYGPATH_W) './src/gui/set/cards_panel.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/set/cards_panel.cpp'; fi` + +./src/gui/set/magicseteditor-console_panel.o: ./src/gui/set/console_panel.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/set/magicseteditor-console_panel.o -MD -MP -MF ./src/gui/set/$(DEPDIR)/magicseteditor-console_panel.Tpo -c -o ./src/gui/set/magicseteditor-console_panel.o `test -f './src/gui/set/console_panel.cpp' || echo '$(srcdir)/'`./src/gui/set/console_panel.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/set/$(DEPDIR)/magicseteditor-console_panel.Tpo ./src/gui/set/$(DEPDIR)/magicseteditor-console_panel.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/set/console_panel.cpp' object='./src/gui/set/magicseteditor-console_panel.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/set/magicseteditor-console_panel.o `test -f './src/gui/set/console_panel.cpp' || echo '$(srcdir)/'`./src/gui/set/console_panel.cpp + +./src/gui/set/magicseteditor-console_panel.obj: ./src/gui/set/console_panel.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/set/magicseteditor-console_panel.obj -MD -MP -MF ./src/gui/set/$(DEPDIR)/magicseteditor-console_panel.Tpo -c -o ./src/gui/set/magicseteditor-console_panel.obj `if test -f './src/gui/set/console_panel.cpp'; then $(CYGPATH_W) './src/gui/set/console_panel.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/set/console_panel.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/set/$(DEPDIR)/magicseteditor-console_panel.Tpo ./src/gui/set/$(DEPDIR)/magicseteditor-console_panel.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/set/console_panel.cpp' object='./src/gui/set/magicseteditor-console_panel.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/set/magicseteditor-console_panel.obj `if test -f './src/gui/set/console_panel.cpp'; then $(CYGPATH_W) './src/gui/set/console_panel.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/set/console_panel.cpp'; fi` + +./src/gui/set/magicseteditor-keywords_panel.o: ./src/gui/set/keywords_panel.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/set/magicseteditor-keywords_panel.o -MD -MP -MF ./src/gui/set/$(DEPDIR)/magicseteditor-keywords_panel.Tpo -c -o ./src/gui/set/magicseteditor-keywords_panel.o `test -f './src/gui/set/keywords_panel.cpp' || echo '$(srcdir)/'`./src/gui/set/keywords_panel.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/set/$(DEPDIR)/magicseteditor-keywords_panel.Tpo ./src/gui/set/$(DEPDIR)/magicseteditor-keywords_panel.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/set/keywords_panel.cpp' object='./src/gui/set/magicseteditor-keywords_panel.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/set/magicseteditor-keywords_panel.o `test -f './src/gui/set/keywords_panel.cpp' || echo '$(srcdir)/'`./src/gui/set/keywords_panel.cpp + +./src/gui/set/magicseteditor-keywords_panel.obj: ./src/gui/set/keywords_panel.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/set/magicseteditor-keywords_panel.obj -MD -MP -MF ./src/gui/set/$(DEPDIR)/magicseteditor-keywords_panel.Tpo -c -o ./src/gui/set/magicseteditor-keywords_panel.obj `if test -f './src/gui/set/keywords_panel.cpp'; then $(CYGPATH_W) './src/gui/set/keywords_panel.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/set/keywords_panel.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/set/$(DEPDIR)/magicseteditor-keywords_panel.Tpo ./src/gui/set/$(DEPDIR)/magicseteditor-keywords_panel.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/set/keywords_panel.cpp' object='./src/gui/set/magicseteditor-keywords_panel.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/set/magicseteditor-keywords_panel.obj `if test -f './src/gui/set/keywords_panel.cpp'; then $(CYGPATH_W) './src/gui/set/keywords_panel.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/set/keywords_panel.cpp'; fi` + +./src/gui/set/magicseteditor-panel.o: ./src/gui/set/panel.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/set/magicseteditor-panel.o -MD -MP -MF ./src/gui/set/$(DEPDIR)/magicseteditor-panel.Tpo -c -o ./src/gui/set/magicseteditor-panel.o `test -f './src/gui/set/panel.cpp' || echo '$(srcdir)/'`./src/gui/set/panel.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/set/$(DEPDIR)/magicseteditor-panel.Tpo ./src/gui/set/$(DEPDIR)/magicseteditor-panel.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/set/panel.cpp' object='./src/gui/set/magicseteditor-panel.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/set/magicseteditor-panel.o `test -f './src/gui/set/panel.cpp' || echo '$(srcdir)/'`./src/gui/set/panel.cpp + +./src/gui/set/magicseteditor-panel.obj: ./src/gui/set/panel.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/set/magicseteditor-panel.obj -MD -MP -MF ./src/gui/set/$(DEPDIR)/magicseteditor-panel.Tpo -c -o ./src/gui/set/magicseteditor-panel.obj `if test -f './src/gui/set/panel.cpp'; then $(CYGPATH_W) './src/gui/set/panel.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/set/panel.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/set/$(DEPDIR)/magicseteditor-panel.Tpo ./src/gui/set/$(DEPDIR)/magicseteditor-panel.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/set/panel.cpp' object='./src/gui/set/magicseteditor-panel.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/set/magicseteditor-panel.obj `if test -f './src/gui/set/panel.cpp'; then $(CYGPATH_W) './src/gui/set/panel.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/set/panel.cpp'; fi` + +./src/gui/set/magicseteditor-random_pack_panel.o: ./src/gui/set/random_pack_panel.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/set/magicseteditor-random_pack_panel.o -MD -MP -MF ./src/gui/set/$(DEPDIR)/magicseteditor-random_pack_panel.Tpo -c -o ./src/gui/set/magicseteditor-random_pack_panel.o `test -f './src/gui/set/random_pack_panel.cpp' || echo '$(srcdir)/'`./src/gui/set/random_pack_panel.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/set/$(DEPDIR)/magicseteditor-random_pack_panel.Tpo ./src/gui/set/$(DEPDIR)/magicseteditor-random_pack_panel.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/set/random_pack_panel.cpp' object='./src/gui/set/magicseteditor-random_pack_panel.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/set/magicseteditor-random_pack_panel.o `test -f './src/gui/set/random_pack_panel.cpp' || echo '$(srcdir)/'`./src/gui/set/random_pack_panel.cpp + +./src/gui/set/magicseteditor-random_pack_panel.obj: ./src/gui/set/random_pack_panel.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/set/magicseteditor-random_pack_panel.obj -MD -MP -MF ./src/gui/set/$(DEPDIR)/magicseteditor-random_pack_panel.Tpo -c -o ./src/gui/set/magicseteditor-random_pack_panel.obj `if test -f './src/gui/set/random_pack_panel.cpp'; then $(CYGPATH_W) './src/gui/set/random_pack_panel.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/set/random_pack_panel.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/set/$(DEPDIR)/magicseteditor-random_pack_panel.Tpo ./src/gui/set/$(DEPDIR)/magicseteditor-random_pack_panel.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/set/random_pack_panel.cpp' object='./src/gui/set/magicseteditor-random_pack_panel.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/set/magicseteditor-random_pack_panel.obj `if test -f './src/gui/set/random_pack_panel.cpp'; then $(CYGPATH_W) './src/gui/set/random_pack_panel.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/set/random_pack_panel.cpp'; fi` + +./src/gui/set/magicseteditor-set_info_panel.o: ./src/gui/set/set_info_panel.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/set/magicseteditor-set_info_panel.o -MD -MP -MF ./src/gui/set/$(DEPDIR)/magicseteditor-set_info_panel.Tpo -c -o ./src/gui/set/magicseteditor-set_info_panel.o `test -f './src/gui/set/set_info_panel.cpp' || echo '$(srcdir)/'`./src/gui/set/set_info_panel.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/set/$(DEPDIR)/magicseteditor-set_info_panel.Tpo ./src/gui/set/$(DEPDIR)/magicseteditor-set_info_panel.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/set/set_info_panel.cpp' object='./src/gui/set/magicseteditor-set_info_panel.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/set/magicseteditor-set_info_panel.o `test -f './src/gui/set/set_info_panel.cpp' || echo '$(srcdir)/'`./src/gui/set/set_info_panel.cpp + +./src/gui/set/magicseteditor-set_info_panel.obj: ./src/gui/set/set_info_panel.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/set/magicseteditor-set_info_panel.obj -MD -MP -MF ./src/gui/set/$(DEPDIR)/magicseteditor-set_info_panel.Tpo -c -o ./src/gui/set/magicseteditor-set_info_panel.obj `if test -f './src/gui/set/set_info_panel.cpp'; then $(CYGPATH_W) './src/gui/set/set_info_panel.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/set/set_info_panel.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/set/$(DEPDIR)/magicseteditor-set_info_panel.Tpo ./src/gui/set/$(DEPDIR)/magicseteditor-set_info_panel.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/set/set_info_panel.cpp' object='./src/gui/set/magicseteditor-set_info_panel.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/set/magicseteditor-set_info_panel.obj `if test -f './src/gui/set/set_info_panel.cpp'; then $(CYGPATH_W) './src/gui/set/set_info_panel.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/set/set_info_panel.cpp'; fi` + +./src/gui/set/magicseteditor-stats_panel.o: ./src/gui/set/stats_panel.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/set/magicseteditor-stats_panel.o -MD -MP -MF ./src/gui/set/$(DEPDIR)/magicseteditor-stats_panel.Tpo -c -o ./src/gui/set/magicseteditor-stats_panel.o `test -f './src/gui/set/stats_panel.cpp' || echo '$(srcdir)/'`./src/gui/set/stats_panel.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/set/$(DEPDIR)/magicseteditor-stats_panel.Tpo ./src/gui/set/$(DEPDIR)/magicseteditor-stats_panel.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/set/stats_panel.cpp' object='./src/gui/set/magicseteditor-stats_panel.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/set/magicseteditor-stats_panel.o `test -f './src/gui/set/stats_panel.cpp' || echo '$(srcdir)/'`./src/gui/set/stats_panel.cpp + +./src/gui/set/magicseteditor-stats_panel.obj: ./src/gui/set/stats_panel.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/set/magicseteditor-stats_panel.obj -MD -MP -MF ./src/gui/set/$(DEPDIR)/magicseteditor-stats_panel.Tpo -c -o ./src/gui/set/magicseteditor-stats_panel.obj `if test -f './src/gui/set/stats_panel.cpp'; then $(CYGPATH_W) './src/gui/set/stats_panel.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/set/stats_panel.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/set/$(DEPDIR)/magicseteditor-stats_panel.Tpo ./src/gui/set/$(DEPDIR)/magicseteditor-stats_panel.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/set/stats_panel.cpp' object='./src/gui/set/magicseteditor-stats_panel.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/set/magicseteditor-stats_panel.obj `if test -f './src/gui/set/stats_panel.cpp'; then $(CYGPATH_W) './src/gui/set/stats_panel.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/set/stats_panel.cpp'; fi` + +./src/gui/set/magicseteditor-style_panel.o: ./src/gui/set/style_panel.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/set/magicseteditor-style_panel.o -MD -MP -MF ./src/gui/set/$(DEPDIR)/magicseteditor-style_panel.Tpo -c -o ./src/gui/set/magicseteditor-style_panel.o `test -f './src/gui/set/style_panel.cpp' || echo '$(srcdir)/'`./src/gui/set/style_panel.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/set/$(DEPDIR)/magicseteditor-style_panel.Tpo ./src/gui/set/$(DEPDIR)/magicseteditor-style_panel.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/set/style_panel.cpp' object='./src/gui/set/magicseteditor-style_panel.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/set/magicseteditor-style_panel.o `test -f './src/gui/set/style_panel.cpp' || echo '$(srcdir)/'`./src/gui/set/style_panel.cpp + +./src/gui/set/magicseteditor-style_panel.obj: ./src/gui/set/style_panel.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/set/magicseteditor-style_panel.obj -MD -MP -MF ./src/gui/set/$(DEPDIR)/magicseteditor-style_panel.Tpo -c -o ./src/gui/set/magicseteditor-style_panel.obj `if test -f './src/gui/set/style_panel.cpp'; then $(CYGPATH_W) './src/gui/set/style_panel.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/set/style_panel.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/set/$(DEPDIR)/magicseteditor-style_panel.Tpo ./src/gui/set/$(DEPDIR)/magicseteditor-style_panel.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/set/style_panel.cpp' object='./src/gui/set/magicseteditor-style_panel.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/set/magicseteditor-style_panel.obj `if test -f './src/gui/set/style_panel.cpp'; then $(CYGPATH_W) './src/gui/set/style_panel.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/set/style_panel.cpp'; fi` + +./src/gui/set/magicseteditor-window.o: ./src/gui/set/window.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/set/magicseteditor-window.o -MD -MP -MF ./src/gui/set/$(DEPDIR)/magicseteditor-window.Tpo -c -o ./src/gui/set/magicseteditor-window.o `test -f './src/gui/set/window.cpp' || echo '$(srcdir)/'`./src/gui/set/window.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/set/$(DEPDIR)/magicseteditor-window.Tpo ./src/gui/set/$(DEPDIR)/magicseteditor-window.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/set/window.cpp' object='./src/gui/set/magicseteditor-window.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/set/magicseteditor-window.o `test -f './src/gui/set/window.cpp' || echo '$(srcdir)/'`./src/gui/set/window.cpp + +./src/gui/set/magicseteditor-window.obj: ./src/gui/set/window.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/set/magicseteditor-window.obj -MD -MP -MF ./src/gui/set/$(DEPDIR)/magicseteditor-window.Tpo -c -o ./src/gui/set/magicseteditor-window.obj `if test -f './src/gui/set/window.cpp'; then $(CYGPATH_W) './src/gui/set/window.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/set/window.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/set/$(DEPDIR)/magicseteditor-window.Tpo ./src/gui/set/$(DEPDIR)/magicseteditor-window.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/set/window.cpp' object='./src/gui/set/magicseteditor-window.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/set/magicseteditor-window.obj `if test -f './src/gui/set/window.cpp'; then $(CYGPATH_W) './src/gui/set/window.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/set/window.cpp'; fi` + +./src/gui/symbol/magicseteditor-basic_shape_editor.o: ./src/gui/symbol/basic_shape_editor.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/symbol/magicseteditor-basic_shape_editor.o -MD -MP -MF ./src/gui/symbol/$(DEPDIR)/magicseteditor-basic_shape_editor.Tpo -c -o ./src/gui/symbol/magicseteditor-basic_shape_editor.o `test -f './src/gui/symbol/basic_shape_editor.cpp' || echo '$(srcdir)/'`./src/gui/symbol/basic_shape_editor.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/symbol/$(DEPDIR)/magicseteditor-basic_shape_editor.Tpo ./src/gui/symbol/$(DEPDIR)/magicseteditor-basic_shape_editor.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/symbol/basic_shape_editor.cpp' object='./src/gui/symbol/magicseteditor-basic_shape_editor.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/symbol/magicseteditor-basic_shape_editor.o `test -f './src/gui/symbol/basic_shape_editor.cpp' || echo '$(srcdir)/'`./src/gui/symbol/basic_shape_editor.cpp + +./src/gui/symbol/magicseteditor-basic_shape_editor.obj: ./src/gui/symbol/basic_shape_editor.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/symbol/magicseteditor-basic_shape_editor.obj -MD -MP -MF ./src/gui/symbol/$(DEPDIR)/magicseteditor-basic_shape_editor.Tpo -c -o ./src/gui/symbol/magicseteditor-basic_shape_editor.obj `if test -f './src/gui/symbol/basic_shape_editor.cpp'; then $(CYGPATH_W) './src/gui/symbol/basic_shape_editor.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/symbol/basic_shape_editor.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/symbol/$(DEPDIR)/magicseteditor-basic_shape_editor.Tpo ./src/gui/symbol/$(DEPDIR)/magicseteditor-basic_shape_editor.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/symbol/basic_shape_editor.cpp' object='./src/gui/symbol/magicseteditor-basic_shape_editor.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/symbol/magicseteditor-basic_shape_editor.obj `if test -f './src/gui/symbol/basic_shape_editor.cpp'; then $(CYGPATH_W) './src/gui/symbol/basic_shape_editor.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/symbol/basic_shape_editor.cpp'; fi` + +./src/gui/symbol/magicseteditor-control.o: ./src/gui/symbol/control.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/symbol/magicseteditor-control.o -MD -MP -MF ./src/gui/symbol/$(DEPDIR)/magicseteditor-control.Tpo -c -o ./src/gui/symbol/magicseteditor-control.o `test -f './src/gui/symbol/control.cpp' || echo '$(srcdir)/'`./src/gui/symbol/control.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/symbol/$(DEPDIR)/magicseteditor-control.Tpo ./src/gui/symbol/$(DEPDIR)/magicseteditor-control.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/symbol/control.cpp' object='./src/gui/symbol/magicseteditor-control.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/symbol/magicseteditor-control.o `test -f './src/gui/symbol/control.cpp' || echo '$(srcdir)/'`./src/gui/symbol/control.cpp + +./src/gui/symbol/magicseteditor-control.obj: ./src/gui/symbol/control.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/symbol/magicseteditor-control.obj -MD -MP -MF ./src/gui/symbol/$(DEPDIR)/magicseteditor-control.Tpo -c -o ./src/gui/symbol/magicseteditor-control.obj `if test -f './src/gui/symbol/control.cpp'; then $(CYGPATH_W) './src/gui/symbol/control.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/symbol/control.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/symbol/$(DEPDIR)/magicseteditor-control.Tpo ./src/gui/symbol/$(DEPDIR)/magicseteditor-control.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/symbol/control.cpp' object='./src/gui/symbol/magicseteditor-control.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/symbol/magicseteditor-control.obj `if test -f './src/gui/symbol/control.cpp'; then $(CYGPATH_W) './src/gui/symbol/control.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/symbol/control.cpp'; fi` + +./src/gui/symbol/magicseteditor-editor.o: ./src/gui/symbol/editor.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/symbol/magicseteditor-editor.o -MD -MP -MF ./src/gui/symbol/$(DEPDIR)/magicseteditor-editor.Tpo -c -o ./src/gui/symbol/magicseteditor-editor.o `test -f './src/gui/symbol/editor.cpp' || echo '$(srcdir)/'`./src/gui/symbol/editor.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/symbol/$(DEPDIR)/magicseteditor-editor.Tpo ./src/gui/symbol/$(DEPDIR)/magicseteditor-editor.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/symbol/editor.cpp' object='./src/gui/symbol/magicseteditor-editor.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/symbol/magicseteditor-editor.o `test -f './src/gui/symbol/editor.cpp' || echo '$(srcdir)/'`./src/gui/symbol/editor.cpp + +./src/gui/symbol/magicseteditor-editor.obj: ./src/gui/symbol/editor.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/symbol/magicseteditor-editor.obj -MD -MP -MF ./src/gui/symbol/$(DEPDIR)/magicseteditor-editor.Tpo -c -o ./src/gui/symbol/magicseteditor-editor.obj `if test -f './src/gui/symbol/editor.cpp'; then $(CYGPATH_W) './src/gui/symbol/editor.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/symbol/editor.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/symbol/$(DEPDIR)/magicseteditor-editor.Tpo ./src/gui/symbol/$(DEPDIR)/magicseteditor-editor.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/symbol/editor.cpp' object='./src/gui/symbol/magicseteditor-editor.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/symbol/magicseteditor-editor.obj `if test -f './src/gui/symbol/editor.cpp'; then $(CYGPATH_W) './src/gui/symbol/editor.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/symbol/editor.cpp'; fi` + +./src/gui/symbol/magicseteditor-part_list.o: ./src/gui/symbol/part_list.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/symbol/magicseteditor-part_list.o -MD -MP -MF ./src/gui/symbol/$(DEPDIR)/magicseteditor-part_list.Tpo -c -o ./src/gui/symbol/magicseteditor-part_list.o `test -f './src/gui/symbol/part_list.cpp' || echo '$(srcdir)/'`./src/gui/symbol/part_list.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/symbol/$(DEPDIR)/magicseteditor-part_list.Tpo ./src/gui/symbol/$(DEPDIR)/magicseteditor-part_list.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/symbol/part_list.cpp' object='./src/gui/symbol/magicseteditor-part_list.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/symbol/magicseteditor-part_list.o `test -f './src/gui/symbol/part_list.cpp' || echo '$(srcdir)/'`./src/gui/symbol/part_list.cpp + +./src/gui/symbol/magicseteditor-part_list.obj: ./src/gui/symbol/part_list.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/symbol/magicseteditor-part_list.obj -MD -MP -MF ./src/gui/symbol/$(DEPDIR)/magicseteditor-part_list.Tpo -c -o ./src/gui/symbol/magicseteditor-part_list.obj `if test -f './src/gui/symbol/part_list.cpp'; then $(CYGPATH_W) './src/gui/symbol/part_list.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/symbol/part_list.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/symbol/$(DEPDIR)/magicseteditor-part_list.Tpo ./src/gui/symbol/$(DEPDIR)/magicseteditor-part_list.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/symbol/part_list.cpp' object='./src/gui/symbol/magicseteditor-part_list.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/symbol/magicseteditor-part_list.obj `if test -f './src/gui/symbol/part_list.cpp'; then $(CYGPATH_W) './src/gui/symbol/part_list.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/symbol/part_list.cpp'; fi` + +./src/gui/symbol/magicseteditor-point_editor.o: ./src/gui/symbol/point_editor.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/symbol/magicseteditor-point_editor.o -MD -MP -MF ./src/gui/symbol/$(DEPDIR)/magicseteditor-point_editor.Tpo -c -o ./src/gui/symbol/magicseteditor-point_editor.o `test -f './src/gui/symbol/point_editor.cpp' || echo '$(srcdir)/'`./src/gui/symbol/point_editor.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/symbol/$(DEPDIR)/magicseteditor-point_editor.Tpo ./src/gui/symbol/$(DEPDIR)/magicseteditor-point_editor.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/symbol/point_editor.cpp' object='./src/gui/symbol/magicseteditor-point_editor.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/symbol/magicseteditor-point_editor.o `test -f './src/gui/symbol/point_editor.cpp' || echo '$(srcdir)/'`./src/gui/symbol/point_editor.cpp + +./src/gui/symbol/magicseteditor-point_editor.obj: ./src/gui/symbol/point_editor.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/symbol/magicseteditor-point_editor.obj -MD -MP -MF ./src/gui/symbol/$(DEPDIR)/magicseteditor-point_editor.Tpo -c -o ./src/gui/symbol/magicseteditor-point_editor.obj `if test -f './src/gui/symbol/point_editor.cpp'; then $(CYGPATH_W) './src/gui/symbol/point_editor.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/symbol/point_editor.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/symbol/$(DEPDIR)/magicseteditor-point_editor.Tpo ./src/gui/symbol/$(DEPDIR)/magicseteditor-point_editor.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/symbol/point_editor.cpp' object='./src/gui/symbol/magicseteditor-point_editor.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/symbol/magicseteditor-point_editor.obj `if test -f './src/gui/symbol/point_editor.cpp'; then $(CYGPATH_W) './src/gui/symbol/point_editor.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/symbol/point_editor.cpp'; fi` + +./src/gui/symbol/magicseteditor-select_editor.o: ./src/gui/symbol/select_editor.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/symbol/magicseteditor-select_editor.o -MD -MP -MF ./src/gui/symbol/$(DEPDIR)/magicseteditor-select_editor.Tpo -c -o ./src/gui/symbol/magicseteditor-select_editor.o `test -f './src/gui/symbol/select_editor.cpp' || echo '$(srcdir)/'`./src/gui/symbol/select_editor.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/symbol/$(DEPDIR)/magicseteditor-select_editor.Tpo ./src/gui/symbol/$(DEPDIR)/magicseteditor-select_editor.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/symbol/select_editor.cpp' object='./src/gui/symbol/magicseteditor-select_editor.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/symbol/magicseteditor-select_editor.o `test -f './src/gui/symbol/select_editor.cpp' || echo '$(srcdir)/'`./src/gui/symbol/select_editor.cpp + +./src/gui/symbol/magicseteditor-select_editor.obj: ./src/gui/symbol/select_editor.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/symbol/magicseteditor-select_editor.obj -MD -MP -MF ./src/gui/symbol/$(DEPDIR)/magicseteditor-select_editor.Tpo -c -o ./src/gui/symbol/magicseteditor-select_editor.obj `if test -f './src/gui/symbol/select_editor.cpp'; then $(CYGPATH_W) './src/gui/symbol/select_editor.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/symbol/select_editor.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/symbol/$(DEPDIR)/magicseteditor-select_editor.Tpo ./src/gui/symbol/$(DEPDIR)/magicseteditor-select_editor.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/symbol/select_editor.cpp' object='./src/gui/symbol/magicseteditor-select_editor.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/symbol/magicseteditor-select_editor.obj `if test -f './src/gui/symbol/select_editor.cpp'; then $(CYGPATH_W) './src/gui/symbol/select_editor.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/symbol/select_editor.cpp'; fi` + +./src/gui/symbol/magicseteditor-selection.o: ./src/gui/symbol/selection.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/symbol/magicseteditor-selection.o -MD -MP -MF ./src/gui/symbol/$(DEPDIR)/magicseteditor-selection.Tpo -c -o ./src/gui/symbol/magicseteditor-selection.o `test -f './src/gui/symbol/selection.cpp' || echo '$(srcdir)/'`./src/gui/symbol/selection.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/symbol/$(DEPDIR)/magicseteditor-selection.Tpo ./src/gui/symbol/$(DEPDIR)/magicseteditor-selection.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/symbol/selection.cpp' object='./src/gui/symbol/magicseteditor-selection.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/symbol/magicseteditor-selection.o `test -f './src/gui/symbol/selection.cpp' || echo '$(srcdir)/'`./src/gui/symbol/selection.cpp + +./src/gui/symbol/magicseteditor-selection.obj: ./src/gui/symbol/selection.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/symbol/magicseteditor-selection.obj -MD -MP -MF ./src/gui/symbol/$(DEPDIR)/magicseteditor-selection.Tpo -c -o ./src/gui/symbol/magicseteditor-selection.obj `if test -f './src/gui/symbol/selection.cpp'; then $(CYGPATH_W) './src/gui/symbol/selection.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/symbol/selection.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/symbol/$(DEPDIR)/magicseteditor-selection.Tpo ./src/gui/symbol/$(DEPDIR)/magicseteditor-selection.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/symbol/selection.cpp' object='./src/gui/symbol/magicseteditor-selection.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/symbol/magicseteditor-selection.obj `if test -f './src/gui/symbol/selection.cpp'; then $(CYGPATH_W) './src/gui/symbol/selection.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/symbol/selection.cpp'; fi` + +./src/gui/symbol/magicseteditor-symmetry_editor.o: ./src/gui/symbol/symmetry_editor.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/symbol/magicseteditor-symmetry_editor.o -MD -MP -MF ./src/gui/symbol/$(DEPDIR)/magicseteditor-symmetry_editor.Tpo -c -o ./src/gui/symbol/magicseteditor-symmetry_editor.o `test -f './src/gui/symbol/symmetry_editor.cpp' || echo '$(srcdir)/'`./src/gui/symbol/symmetry_editor.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/symbol/$(DEPDIR)/magicseteditor-symmetry_editor.Tpo ./src/gui/symbol/$(DEPDIR)/magicseteditor-symmetry_editor.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/symbol/symmetry_editor.cpp' object='./src/gui/symbol/magicseteditor-symmetry_editor.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/symbol/magicseteditor-symmetry_editor.o `test -f './src/gui/symbol/symmetry_editor.cpp' || echo '$(srcdir)/'`./src/gui/symbol/symmetry_editor.cpp + +./src/gui/symbol/magicseteditor-symmetry_editor.obj: ./src/gui/symbol/symmetry_editor.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/symbol/magicseteditor-symmetry_editor.obj -MD -MP -MF ./src/gui/symbol/$(DEPDIR)/magicseteditor-symmetry_editor.Tpo -c -o ./src/gui/symbol/magicseteditor-symmetry_editor.obj `if test -f './src/gui/symbol/symmetry_editor.cpp'; then $(CYGPATH_W) './src/gui/symbol/symmetry_editor.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/symbol/symmetry_editor.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/symbol/$(DEPDIR)/magicseteditor-symmetry_editor.Tpo ./src/gui/symbol/$(DEPDIR)/magicseteditor-symmetry_editor.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/symbol/symmetry_editor.cpp' object='./src/gui/symbol/magicseteditor-symmetry_editor.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/symbol/magicseteditor-symmetry_editor.obj `if test -f './src/gui/symbol/symmetry_editor.cpp'; then $(CYGPATH_W) './src/gui/symbol/symmetry_editor.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/symbol/symmetry_editor.cpp'; fi` + +./src/gui/symbol/magicseteditor-window.o: ./src/gui/symbol/window.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/symbol/magicseteditor-window.o -MD -MP -MF ./src/gui/symbol/$(DEPDIR)/magicseteditor-window.Tpo -c -o ./src/gui/symbol/magicseteditor-window.o `test -f './src/gui/symbol/window.cpp' || echo '$(srcdir)/'`./src/gui/symbol/window.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/symbol/$(DEPDIR)/magicseteditor-window.Tpo ./src/gui/symbol/$(DEPDIR)/magicseteditor-window.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/symbol/window.cpp' object='./src/gui/symbol/magicseteditor-window.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/symbol/magicseteditor-window.o `test -f './src/gui/symbol/window.cpp' || echo '$(srcdir)/'`./src/gui/symbol/window.cpp + +./src/gui/symbol/magicseteditor-window.obj: ./src/gui/symbol/window.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/symbol/magicseteditor-window.obj -MD -MP -MF ./src/gui/symbol/$(DEPDIR)/magicseteditor-window.Tpo -c -o ./src/gui/symbol/magicseteditor-window.obj `if test -f './src/gui/symbol/window.cpp'; then $(CYGPATH_W) './src/gui/symbol/window.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/symbol/window.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/symbol/$(DEPDIR)/magicseteditor-window.Tpo ./src/gui/symbol/$(DEPDIR)/magicseteditor-window.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/symbol/window.cpp' object='./src/gui/symbol/magicseteditor-window.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/symbol/magicseteditor-window.obj `if test -f './src/gui/symbol/window.cpp'; then $(CYGPATH_W) './src/gui/symbol/window.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/symbol/window.cpp'; fi` + +./src/gui/value/magicseteditor-choice.o: ./src/gui/value/choice.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/value/magicseteditor-choice.o -MD -MP -MF ./src/gui/value/$(DEPDIR)/magicseteditor-choice.Tpo -c -o ./src/gui/value/magicseteditor-choice.o `test -f './src/gui/value/choice.cpp' || echo '$(srcdir)/'`./src/gui/value/choice.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/value/$(DEPDIR)/magicseteditor-choice.Tpo ./src/gui/value/$(DEPDIR)/magicseteditor-choice.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/value/choice.cpp' object='./src/gui/value/magicseteditor-choice.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/value/magicseteditor-choice.o `test -f './src/gui/value/choice.cpp' || echo '$(srcdir)/'`./src/gui/value/choice.cpp + +./src/gui/value/magicseteditor-choice.obj: ./src/gui/value/choice.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/value/magicseteditor-choice.obj -MD -MP -MF ./src/gui/value/$(DEPDIR)/magicseteditor-choice.Tpo -c -o ./src/gui/value/magicseteditor-choice.obj `if test -f './src/gui/value/choice.cpp'; then $(CYGPATH_W) './src/gui/value/choice.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/value/choice.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/value/$(DEPDIR)/magicseteditor-choice.Tpo ./src/gui/value/$(DEPDIR)/magicseteditor-choice.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/value/choice.cpp' object='./src/gui/value/magicseteditor-choice.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/value/magicseteditor-choice.obj `if test -f './src/gui/value/choice.cpp'; then $(CYGPATH_W) './src/gui/value/choice.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/value/choice.cpp'; fi` + +./src/gui/value/magicseteditor-color.o: ./src/gui/value/color.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/value/magicseteditor-color.o -MD -MP -MF ./src/gui/value/$(DEPDIR)/magicseteditor-color.Tpo -c -o ./src/gui/value/magicseteditor-color.o `test -f './src/gui/value/color.cpp' || echo '$(srcdir)/'`./src/gui/value/color.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/value/$(DEPDIR)/magicseteditor-color.Tpo ./src/gui/value/$(DEPDIR)/magicseteditor-color.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/value/color.cpp' object='./src/gui/value/magicseteditor-color.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/value/magicseteditor-color.o `test -f './src/gui/value/color.cpp' || echo '$(srcdir)/'`./src/gui/value/color.cpp + +./src/gui/value/magicseteditor-color.obj: ./src/gui/value/color.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/value/magicseteditor-color.obj -MD -MP -MF ./src/gui/value/$(DEPDIR)/magicseteditor-color.Tpo -c -o ./src/gui/value/magicseteditor-color.obj `if test -f './src/gui/value/color.cpp'; then $(CYGPATH_W) './src/gui/value/color.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/value/color.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/value/$(DEPDIR)/magicseteditor-color.Tpo ./src/gui/value/$(DEPDIR)/magicseteditor-color.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/value/color.cpp' object='./src/gui/value/magicseteditor-color.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/value/magicseteditor-color.obj `if test -f './src/gui/value/color.cpp'; then $(CYGPATH_W) './src/gui/value/color.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/value/color.cpp'; fi` + +./src/gui/value/magicseteditor-editor.o: ./src/gui/value/editor.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/value/magicseteditor-editor.o -MD -MP -MF ./src/gui/value/$(DEPDIR)/magicseteditor-editor.Tpo -c -o ./src/gui/value/magicseteditor-editor.o `test -f './src/gui/value/editor.cpp' || echo '$(srcdir)/'`./src/gui/value/editor.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/value/$(DEPDIR)/magicseteditor-editor.Tpo ./src/gui/value/$(DEPDIR)/magicseteditor-editor.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/value/editor.cpp' object='./src/gui/value/magicseteditor-editor.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/value/magicseteditor-editor.o `test -f './src/gui/value/editor.cpp' || echo '$(srcdir)/'`./src/gui/value/editor.cpp + +./src/gui/value/magicseteditor-editor.obj: ./src/gui/value/editor.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/value/magicseteditor-editor.obj -MD -MP -MF ./src/gui/value/$(DEPDIR)/magicseteditor-editor.Tpo -c -o ./src/gui/value/magicseteditor-editor.obj `if test -f './src/gui/value/editor.cpp'; then $(CYGPATH_W) './src/gui/value/editor.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/value/editor.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/value/$(DEPDIR)/magicseteditor-editor.Tpo ./src/gui/value/$(DEPDIR)/magicseteditor-editor.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/value/editor.cpp' object='./src/gui/value/magicseteditor-editor.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/value/magicseteditor-editor.obj `if test -f './src/gui/value/editor.cpp'; then $(CYGPATH_W) './src/gui/value/editor.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/value/editor.cpp'; fi` + +./src/gui/value/magicseteditor-image.o: ./src/gui/value/image.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/value/magicseteditor-image.o -MD -MP -MF ./src/gui/value/$(DEPDIR)/magicseteditor-image.Tpo -c -o ./src/gui/value/magicseteditor-image.o `test -f './src/gui/value/image.cpp' || echo '$(srcdir)/'`./src/gui/value/image.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/value/$(DEPDIR)/magicseteditor-image.Tpo ./src/gui/value/$(DEPDIR)/magicseteditor-image.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/value/image.cpp' object='./src/gui/value/magicseteditor-image.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/value/magicseteditor-image.o `test -f './src/gui/value/image.cpp' || echo '$(srcdir)/'`./src/gui/value/image.cpp + +./src/gui/value/magicseteditor-image.obj: ./src/gui/value/image.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/value/magicseteditor-image.obj -MD -MP -MF ./src/gui/value/$(DEPDIR)/magicseteditor-image.Tpo -c -o ./src/gui/value/magicseteditor-image.obj `if test -f './src/gui/value/image.cpp'; then $(CYGPATH_W) './src/gui/value/image.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/value/image.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/value/$(DEPDIR)/magicseteditor-image.Tpo ./src/gui/value/$(DEPDIR)/magicseteditor-image.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/value/image.cpp' object='./src/gui/value/magicseteditor-image.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/value/magicseteditor-image.obj `if test -f './src/gui/value/image.cpp'; then $(CYGPATH_W) './src/gui/value/image.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/value/image.cpp'; fi` + +./src/gui/value/magicseteditor-information.o: ./src/gui/value/information.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/value/magicseteditor-information.o -MD -MP -MF ./src/gui/value/$(DEPDIR)/magicseteditor-information.Tpo -c -o ./src/gui/value/magicseteditor-information.o `test -f './src/gui/value/information.cpp' || echo '$(srcdir)/'`./src/gui/value/information.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/value/$(DEPDIR)/magicseteditor-information.Tpo ./src/gui/value/$(DEPDIR)/magicseteditor-information.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/value/information.cpp' object='./src/gui/value/magicseteditor-information.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/value/magicseteditor-information.o `test -f './src/gui/value/information.cpp' || echo '$(srcdir)/'`./src/gui/value/information.cpp + +./src/gui/value/magicseteditor-information.obj: ./src/gui/value/information.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/value/magicseteditor-information.obj -MD -MP -MF ./src/gui/value/$(DEPDIR)/magicseteditor-information.Tpo -c -o ./src/gui/value/magicseteditor-information.obj `if test -f './src/gui/value/information.cpp'; then $(CYGPATH_W) './src/gui/value/information.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/value/information.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/value/$(DEPDIR)/magicseteditor-information.Tpo ./src/gui/value/$(DEPDIR)/magicseteditor-information.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/value/information.cpp' object='./src/gui/value/magicseteditor-information.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/value/magicseteditor-information.obj `if test -f './src/gui/value/information.cpp'; then $(CYGPATH_W) './src/gui/value/information.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/value/information.cpp'; fi` + +./src/gui/value/magicseteditor-multiple_choice.o: ./src/gui/value/multiple_choice.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/value/magicseteditor-multiple_choice.o -MD -MP -MF ./src/gui/value/$(DEPDIR)/magicseteditor-multiple_choice.Tpo -c -o ./src/gui/value/magicseteditor-multiple_choice.o `test -f './src/gui/value/multiple_choice.cpp' || echo '$(srcdir)/'`./src/gui/value/multiple_choice.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/value/$(DEPDIR)/magicseteditor-multiple_choice.Tpo ./src/gui/value/$(DEPDIR)/magicseteditor-multiple_choice.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/value/multiple_choice.cpp' object='./src/gui/value/magicseteditor-multiple_choice.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/value/magicseteditor-multiple_choice.o `test -f './src/gui/value/multiple_choice.cpp' || echo '$(srcdir)/'`./src/gui/value/multiple_choice.cpp + +./src/gui/value/magicseteditor-multiple_choice.obj: ./src/gui/value/multiple_choice.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/value/magicseteditor-multiple_choice.obj -MD -MP -MF ./src/gui/value/$(DEPDIR)/magicseteditor-multiple_choice.Tpo -c -o ./src/gui/value/magicseteditor-multiple_choice.obj `if test -f './src/gui/value/multiple_choice.cpp'; then $(CYGPATH_W) './src/gui/value/multiple_choice.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/value/multiple_choice.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/value/$(DEPDIR)/magicseteditor-multiple_choice.Tpo ./src/gui/value/$(DEPDIR)/magicseteditor-multiple_choice.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/value/multiple_choice.cpp' object='./src/gui/value/magicseteditor-multiple_choice.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/value/magicseteditor-multiple_choice.obj `if test -f './src/gui/value/multiple_choice.cpp'; then $(CYGPATH_W) './src/gui/value/multiple_choice.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/value/multiple_choice.cpp'; fi` + +./src/gui/value/magicseteditor-package_choice.o: ./src/gui/value/package_choice.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/value/magicseteditor-package_choice.o -MD -MP -MF ./src/gui/value/$(DEPDIR)/magicseteditor-package_choice.Tpo -c -o ./src/gui/value/magicseteditor-package_choice.o `test -f './src/gui/value/package_choice.cpp' || echo '$(srcdir)/'`./src/gui/value/package_choice.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/value/$(DEPDIR)/magicseteditor-package_choice.Tpo ./src/gui/value/$(DEPDIR)/magicseteditor-package_choice.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/value/package_choice.cpp' object='./src/gui/value/magicseteditor-package_choice.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/value/magicseteditor-package_choice.o `test -f './src/gui/value/package_choice.cpp' || echo '$(srcdir)/'`./src/gui/value/package_choice.cpp + +./src/gui/value/magicseteditor-package_choice.obj: ./src/gui/value/package_choice.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/value/magicseteditor-package_choice.obj -MD -MP -MF ./src/gui/value/$(DEPDIR)/magicseteditor-package_choice.Tpo -c -o ./src/gui/value/magicseteditor-package_choice.obj `if test -f './src/gui/value/package_choice.cpp'; then $(CYGPATH_W) './src/gui/value/package_choice.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/value/package_choice.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/value/$(DEPDIR)/magicseteditor-package_choice.Tpo ./src/gui/value/$(DEPDIR)/magicseteditor-package_choice.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/value/package_choice.cpp' object='./src/gui/value/magicseteditor-package_choice.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/value/magicseteditor-package_choice.obj `if test -f './src/gui/value/package_choice.cpp'; then $(CYGPATH_W) './src/gui/value/package_choice.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/value/package_choice.cpp'; fi` + +./src/gui/value/magicseteditor-symbol.o: ./src/gui/value/symbol.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/value/magicseteditor-symbol.o -MD -MP -MF ./src/gui/value/$(DEPDIR)/magicseteditor-symbol.Tpo -c -o ./src/gui/value/magicseteditor-symbol.o `test -f './src/gui/value/symbol.cpp' || echo '$(srcdir)/'`./src/gui/value/symbol.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/value/$(DEPDIR)/magicseteditor-symbol.Tpo ./src/gui/value/$(DEPDIR)/magicseteditor-symbol.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/value/symbol.cpp' object='./src/gui/value/magicseteditor-symbol.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/value/magicseteditor-symbol.o `test -f './src/gui/value/symbol.cpp' || echo '$(srcdir)/'`./src/gui/value/symbol.cpp + +./src/gui/value/magicseteditor-symbol.obj: ./src/gui/value/symbol.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/value/magicseteditor-symbol.obj -MD -MP -MF ./src/gui/value/$(DEPDIR)/magicseteditor-symbol.Tpo -c -o ./src/gui/value/magicseteditor-symbol.obj `if test -f './src/gui/value/symbol.cpp'; then $(CYGPATH_W) './src/gui/value/symbol.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/value/symbol.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/value/$(DEPDIR)/magicseteditor-symbol.Tpo ./src/gui/value/$(DEPDIR)/magicseteditor-symbol.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/value/symbol.cpp' object='./src/gui/value/magicseteditor-symbol.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/value/magicseteditor-symbol.obj `if test -f './src/gui/value/symbol.cpp'; then $(CYGPATH_W) './src/gui/value/symbol.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/value/symbol.cpp'; fi` + +./src/gui/value/magicseteditor-text.o: ./src/gui/value/text.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/value/magicseteditor-text.o -MD -MP -MF ./src/gui/value/$(DEPDIR)/magicseteditor-text.Tpo -c -o ./src/gui/value/magicseteditor-text.o `test -f './src/gui/value/text.cpp' || echo '$(srcdir)/'`./src/gui/value/text.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/value/$(DEPDIR)/magicseteditor-text.Tpo ./src/gui/value/$(DEPDIR)/magicseteditor-text.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/value/text.cpp' object='./src/gui/value/magicseteditor-text.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/value/magicseteditor-text.o `test -f './src/gui/value/text.cpp' || echo '$(srcdir)/'`./src/gui/value/text.cpp + +./src/gui/value/magicseteditor-text.obj: ./src/gui/value/text.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/value/magicseteditor-text.obj -MD -MP -MF ./src/gui/value/$(DEPDIR)/magicseteditor-text.Tpo -c -o ./src/gui/value/magicseteditor-text.obj `if test -f './src/gui/value/text.cpp'; then $(CYGPATH_W) './src/gui/value/text.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/value/text.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/value/$(DEPDIR)/magicseteditor-text.Tpo ./src/gui/value/$(DEPDIR)/magicseteditor-text.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/value/text.cpp' object='./src/gui/value/magicseteditor-text.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/value/magicseteditor-text.obj `if test -f './src/gui/value/text.cpp'; then $(CYGPATH_W) './src/gui/value/text.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/value/text.cpp'; fi` + +./src/gui/magicseteditor-print_window.o: ./src/gui/print_window.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-print_window.o -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-print_window.Tpo -c -o ./src/gui/magicseteditor-print_window.o `test -f './src/gui/print_window.cpp' || echo '$(srcdir)/'`./src/gui/print_window.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-print_window.Tpo ./src/gui/$(DEPDIR)/magicseteditor-print_window.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/print_window.cpp' object='./src/gui/magicseteditor-print_window.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-print_window.o `test -f './src/gui/print_window.cpp' || echo '$(srcdir)/'`./src/gui/print_window.cpp + +./src/gui/magicseteditor-print_window.obj: ./src/gui/print_window.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-print_window.obj -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-print_window.Tpo -c -o ./src/gui/magicseteditor-print_window.obj `if test -f './src/gui/print_window.cpp'; then $(CYGPATH_W) './src/gui/print_window.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/print_window.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-print_window.Tpo ./src/gui/$(DEPDIR)/magicseteditor-print_window.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/print_window.cpp' object='./src/gui/magicseteditor-print_window.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-print_window.obj `if test -f './src/gui/print_window.cpp'; then $(CYGPATH_W) './src/gui/print_window.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/print_window.cpp'; fi` + +./src/gui/magicseteditor-profiler_window.o: ./src/gui/profiler_window.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-profiler_window.o -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-profiler_window.Tpo -c -o ./src/gui/magicseteditor-profiler_window.o `test -f './src/gui/profiler_window.cpp' || echo '$(srcdir)/'`./src/gui/profiler_window.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-profiler_window.Tpo ./src/gui/$(DEPDIR)/magicseteditor-profiler_window.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/profiler_window.cpp' object='./src/gui/magicseteditor-profiler_window.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-profiler_window.o `test -f './src/gui/profiler_window.cpp' || echo '$(srcdir)/'`./src/gui/profiler_window.cpp + +./src/gui/magicseteditor-profiler_window.obj: ./src/gui/profiler_window.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-profiler_window.obj -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-profiler_window.Tpo -c -o ./src/gui/magicseteditor-profiler_window.obj `if test -f './src/gui/profiler_window.cpp'; then $(CYGPATH_W) './src/gui/profiler_window.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/profiler_window.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-profiler_window.Tpo ./src/gui/$(DEPDIR)/magicseteditor-profiler_window.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/profiler_window.cpp' object='./src/gui/magicseteditor-profiler_window.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-profiler_window.obj `if test -f './src/gui/profiler_window.cpp'; then $(CYGPATH_W) './src/gui/profiler_window.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/profiler_window.cpp'; fi` + +./src/gui/magicseteditor-thumbnail_thread.o: ./src/gui/thumbnail_thread.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-thumbnail_thread.o -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-thumbnail_thread.Tpo -c -o ./src/gui/magicseteditor-thumbnail_thread.o `test -f './src/gui/thumbnail_thread.cpp' || echo '$(srcdir)/'`./src/gui/thumbnail_thread.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-thumbnail_thread.Tpo ./src/gui/$(DEPDIR)/magicseteditor-thumbnail_thread.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/thumbnail_thread.cpp' object='./src/gui/magicseteditor-thumbnail_thread.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-thumbnail_thread.o `test -f './src/gui/thumbnail_thread.cpp' || echo '$(srcdir)/'`./src/gui/thumbnail_thread.cpp + +./src/gui/magicseteditor-thumbnail_thread.obj: ./src/gui/thumbnail_thread.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-thumbnail_thread.obj -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-thumbnail_thread.Tpo -c -o ./src/gui/magicseteditor-thumbnail_thread.obj `if test -f './src/gui/thumbnail_thread.cpp'; then $(CYGPATH_W) './src/gui/thumbnail_thread.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/thumbnail_thread.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-thumbnail_thread.Tpo ./src/gui/$(DEPDIR)/magicseteditor-thumbnail_thread.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/thumbnail_thread.cpp' object='./src/gui/magicseteditor-thumbnail_thread.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-thumbnail_thread.obj `if test -f './src/gui/thumbnail_thread.cpp'; then $(CYGPATH_W) './src/gui/thumbnail_thread.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/thumbnail_thread.cpp'; fi` + +./src/gui/magicseteditor-update_checker.o: ./src/gui/update_checker.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-update_checker.o -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-update_checker.Tpo -c -o ./src/gui/magicseteditor-update_checker.o `test -f './src/gui/update_checker.cpp' || echo '$(srcdir)/'`./src/gui/update_checker.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-update_checker.Tpo ./src/gui/$(DEPDIR)/magicseteditor-update_checker.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/update_checker.cpp' object='./src/gui/magicseteditor-update_checker.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-update_checker.o `test -f './src/gui/update_checker.cpp' || echo '$(srcdir)/'`./src/gui/update_checker.cpp + +./src/gui/magicseteditor-update_checker.obj: ./src/gui/update_checker.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-update_checker.obj -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-update_checker.Tpo -c -o ./src/gui/magicseteditor-update_checker.obj `if test -f './src/gui/update_checker.cpp'; then $(CYGPATH_W) './src/gui/update_checker.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/update_checker.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-update_checker.Tpo ./src/gui/$(DEPDIR)/magicseteditor-update_checker.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/update_checker.cpp' object='./src/gui/magicseteditor-update_checker.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-update_checker.obj `if test -f './src/gui/update_checker.cpp'; then $(CYGPATH_W) './src/gui/update_checker.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/update_checker.cpp'; fi` + +./src/gui/magicseteditor-util.o: ./src/gui/util.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-util.o -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-util.Tpo -c -o ./src/gui/magicseteditor-util.o `test -f './src/gui/util.cpp' || echo '$(srcdir)/'`./src/gui/util.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-util.Tpo ./src/gui/$(DEPDIR)/magicseteditor-util.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/util.cpp' object='./src/gui/magicseteditor-util.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-util.o `test -f './src/gui/util.cpp' || echo '$(srcdir)/'`./src/gui/util.cpp + +./src/gui/magicseteditor-util.obj: ./src/gui/util.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-util.obj -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-util.Tpo -c -o ./src/gui/magicseteditor-util.obj `if test -f './src/gui/util.cpp'; then $(CYGPATH_W) './src/gui/util.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/util.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-util.Tpo ./src/gui/$(DEPDIR)/magicseteditor-util.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/util.cpp' object='./src/gui/magicseteditor-util.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-util.obj `if test -f './src/gui/util.cpp'; then $(CYGPATH_W) './src/gui/util.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/util.cpp'; fi` + +./src/gui/magicseteditor-welcome_window.o: ./src/gui/welcome_window.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-welcome_window.o -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-welcome_window.Tpo -c -o ./src/gui/magicseteditor-welcome_window.o `test -f './src/gui/welcome_window.cpp' || echo '$(srcdir)/'`./src/gui/welcome_window.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-welcome_window.Tpo ./src/gui/$(DEPDIR)/magicseteditor-welcome_window.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/welcome_window.cpp' object='./src/gui/magicseteditor-welcome_window.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-welcome_window.o `test -f './src/gui/welcome_window.cpp' || echo '$(srcdir)/'`./src/gui/welcome_window.cpp + +./src/gui/magicseteditor-welcome_window.obj: ./src/gui/welcome_window.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-welcome_window.obj -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-welcome_window.Tpo -c -o ./src/gui/magicseteditor-welcome_window.obj `if test -f './src/gui/welcome_window.cpp'; then $(CYGPATH_W) './src/gui/welcome_window.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/welcome_window.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-welcome_window.Tpo ./src/gui/$(DEPDIR)/magicseteditor-welcome_window.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/welcome_window.cpp' object='./src/gui/magicseteditor-welcome_window.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-welcome_window.obj `if test -f './src/gui/welcome_window.cpp'; then $(CYGPATH_W) './src/gui/welcome_window.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/welcome_window.cpp'; fi` + +./src/gui/magicseteditor-about_window.o: ./src/gui/about_window.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-about_window.o -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-about_window.Tpo -c -o ./src/gui/magicseteditor-about_window.o `test -f './src/gui/about_window.cpp' || echo '$(srcdir)/'`./src/gui/about_window.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-about_window.Tpo ./src/gui/$(DEPDIR)/magicseteditor-about_window.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/about_window.cpp' object='./src/gui/magicseteditor-about_window.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-about_window.o `test -f './src/gui/about_window.cpp' || echo '$(srcdir)/'`./src/gui/about_window.cpp + +./src/gui/magicseteditor-about_window.obj: ./src/gui/about_window.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-about_window.obj -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-about_window.Tpo -c -o ./src/gui/magicseteditor-about_window.obj `if test -f './src/gui/about_window.cpp'; then $(CYGPATH_W) './src/gui/about_window.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/about_window.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-about_window.Tpo ./src/gui/$(DEPDIR)/magicseteditor-about_window.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/about_window.cpp' object='./src/gui/magicseteditor-about_window.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-about_window.obj `if test -f './src/gui/about_window.cpp'; then $(CYGPATH_W) './src/gui/about_window.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/about_window.cpp'; fi` + +./src/gui/magicseteditor-auto_replace_window.o: ./src/gui/auto_replace_window.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-auto_replace_window.o -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-auto_replace_window.Tpo -c -o ./src/gui/magicseteditor-auto_replace_window.o `test -f './src/gui/auto_replace_window.cpp' || echo '$(srcdir)/'`./src/gui/auto_replace_window.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-auto_replace_window.Tpo ./src/gui/$(DEPDIR)/magicseteditor-auto_replace_window.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/auto_replace_window.cpp' object='./src/gui/magicseteditor-auto_replace_window.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-auto_replace_window.o `test -f './src/gui/auto_replace_window.cpp' || echo '$(srcdir)/'`./src/gui/auto_replace_window.cpp + +./src/gui/magicseteditor-auto_replace_window.obj: ./src/gui/auto_replace_window.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-auto_replace_window.obj -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-auto_replace_window.Tpo -c -o ./src/gui/magicseteditor-auto_replace_window.obj `if test -f './src/gui/auto_replace_window.cpp'; then $(CYGPATH_W) './src/gui/auto_replace_window.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/auto_replace_window.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-auto_replace_window.Tpo ./src/gui/$(DEPDIR)/magicseteditor-auto_replace_window.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/auto_replace_window.cpp' object='./src/gui/magicseteditor-auto_replace_window.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-auto_replace_window.obj `if test -f './src/gui/auto_replace_window.cpp'; then $(CYGPATH_W) './src/gui/auto_replace_window.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/auto_replace_window.cpp'; fi` + +./src/gui/magicseteditor-card_select_window.o: ./src/gui/card_select_window.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-card_select_window.o -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-card_select_window.Tpo -c -o ./src/gui/magicseteditor-card_select_window.o `test -f './src/gui/card_select_window.cpp' || echo '$(srcdir)/'`./src/gui/card_select_window.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-card_select_window.Tpo ./src/gui/$(DEPDIR)/magicseteditor-card_select_window.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/card_select_window.cpp' object='./src/gui/magicseteditor-card_select_window.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-card_select_window.o `test -f './src/gui/card_select_window.cpp' || echo '$(srcdir)/'`./src/gui/card_select_window.cpp + +./src/gui/magicseteditor-card_select_window.obj: ./src/gui/card_select_window.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-card_select_window.obj -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-card_select_window.Tpo -c -o ./src/gui/magicseteditor-card_select_window.obj `if test -f './src/gui/card_select_window.cpp'; then $(CYGPATH_W) './src/gui/card_select_window.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/card_select_window.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-card_select_window.Tpo ./src/gui/$(DEPDIR)/magicseteditor-card_select_window.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/card_select_window.cpp' object='./src/gui/magicseteditor-card_select_window.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-card_select_window.obj `if test -f './src/gui/card_select_window.cpp'; then $(CYGPATH_W) './src/gui/card_select_window.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/card_select_window.cpp'; fi` + +./src/gui/magicseteditor-drop_down_list.o: ./src/gui/drop_down_list.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-drop_down_list.o -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-drop_down_list.Tpo -c -o ./src/gui/magicseteditor-drop_down_list.o `test -f './src/gui/drop_down_list.cpp' || echo '$(srcdir)/'`./src/gui/drop_down_list.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-drop_down_list.Tpo ./src/gui/$(DEPDIR)/magicseteditor-drop_down_list.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/drop_down_list.cpp' object='./src/gui/magicseteditor-drop_down_list.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-drop_down_list.o `test -f './src/gui/drop_down_list.cpp' || echo '$(srcdir)/'`./src/gui/drop_down_list.cpp + +./src/gui/magicseteditor-drop_down_list.obj: ./src/gui/drop_down_list.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-drop_down_list.obj -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-drop_down_list.Tpo -c -o ./src/gui/magicseteditor-drop_down_list.obj `if test -f './src/gui/drop_down_list.cpp'; then $(CYGPATH_W) './src/gui/drop_down_list.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/drop_down_list.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-drop_down_list.Tpo ./src/gui/$(DEPDIR)/magicseteditor-drop_down_list.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/drop_down_list.cpp' object='./src/gui/magicseteditor-drop_down_list.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-drop_down_list.obj `if test -f './src/gui/drop_down_list.cpp'; then $(CYGPATH_W) './src/gui/drop_down_list.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/drop_down_list.cpp'; fi` + +./src/gui/magicseteditor-html_export_window.o: ./src/gui/html_export_window.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-html_export_window.o -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-html_export_window.Tpo -c -o ./src/gui/magicseteditor-html_export_window.o `test -f './src/gui/html_export_window.cpp' || echo '$(srcdir)/'`./src/gui/html_export_window.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-html_export_window.Tpo ./src/gui/$(DEPDIR)/magicseteditor-html_export_window.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/html_export_window.cpp' object='./src/gui/magicseteditor-html_export_window.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-html_export_window.o `test -f './src/gui/html_export_window.cpp' || echo '$(srcdir)/'`./src/gui/html_export_window.cpp + +./src/gui/magicseteditor-html_export_window.obj: ./src/gui/html_export_window.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-html_export_window.obj -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-html_export_window.Tpo -c -o ./src/gui/magicseteditor-html_export_window.obj `if test -f './src/gui/html_export_window.cpp'; then $(CYGPATH_W) './src/gui/html_export_window.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/html_export_window.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-html_export_window.Tpo ./src/gui/$(DEPDIR)/magicseteditor-html_export_window.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/html_export_window.cpp' object='./src/gui/magicseteditor-html_export_window.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-html_export_window.obj `if test -f './src/gui/html_export_window.cpp'; then $(CYGPATH_W) './src/gui/html_export_window.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/html_export_window.cpp'; fi` + +./src/gui/magicseteditor-icon_menu.o: ./src/gui/icon_menu.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-icon_menu.o -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-icon_menu.Tpo -c -o ./src/gui/magicseteditor-icon_menu.o `test -f './src/gui/icon_menu.cpp' || echo '$(srcdir)/'`./src/gui/icon_menu.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-icon_menu.Tpo ./src/gui/$(DEPDIR)/magicseteditor-icon_menu.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/icon_menu.cpp' object='./src/gui/magicseteditor-icon_menu.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-icon_menu.o `test -f './src/gui/icon_menu.cpp' || echo '$(srcdir)/'`./src/gui/icon_menu.cpp + +./src/gui/magicseteditor-icon_menu.obj: ./src/gui/icon_menu.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-icon_menu.obj -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-icon_menu.Tpo -c -o ./src/gui/magicseteditor-icon_menu.obj `if test -f './src/gui/icon_menu.cpp'; then $(CYGPATH_W) './src/gui/icon_menu.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/icon_menu.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-icon_menu.Tpo ./src/gui/$(DEPDIR)/magicseteditor-icon_menu.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/icon_menu.cpp' object='./src/gui/magicseteditor-icon_menu.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-icon_menu.obj `if test -f './src/gui/icon_menu.cpp'; then $(CYGPATH_W) './src/gui/icon_menu.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/icon_menu.cpp'; fi` + +./src/gui/magicseteditor-image_slice_window.o: ./src/gui/image_slice_window.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-image_slice_window.o -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-image_slice_window.Tpo -c -o ./src/gui/magicseteditor-image_slice_window.o `test -f './src/gui/image_slice_window.cpp' || echo '$(srcdir)/'`./src/gui/image_slice_window.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-image_slice_window.Tpo ./src/gui/$(DEPDIR)/magicseteditor-image_slice_window.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/image_slice_window.cpp' object='./src/gui/magicseteditor-image_slice_window.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-image_slice_window.o `test -f './src/gui/image_slice_window.cpp' || echo '$(srcdir)/'`./src/gui/image_slice_window.cpp + +./src/gui/magicseteditor-image_slice_window.obj: ./src/gui/image_slice_window.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-image_slice_window.obj -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-image_slice_window.Tpo -c -o ./src/gui/magicseteditor-image_slice_window.obj `if test -f './src/gui/image_slice_window.cpp'; then $(CYGPATH_W) './src/gui/image_slice_window.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/image_slice_window.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-image_slice_window.Tpo ./src/gui/$(DEPDIR)/magicseteditor-image_slice_window.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/image_slice_window.cpp' object='./src/gui/magicseteditor-image_slice_window.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-image_slice_window.obj `if test -f './src/gui/image_slice_window.cpp'; then $(CYGPATH_W) './src/gui/image_slice_window.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/image_slice_window.cpp'; fi` + +./src/gui/magicseteditor-images_export_window.o: ./src/gui/images_export_window.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-images_export_window.o -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-images_export_window.Tpo -c -o ./src/gui/magicseteditor-images_export_window.o `test -f './src/gui/images_export_window.cpp' || echo '$(srcdir)/'`./src/gui/images_export_window.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-images_export_window.Tpo ./src/gui/$(DEPDIR)/magicseteditor-images_export_window.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/images_export_window.cpp' object='./src/gui/magicseteditor-images_export_window.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-images_export_window.o `test -f './src/gui/images_export_window.cpp' || echo '$(srcdir)/'`./src/gui/images_export_window.cpp + +./src/gui/magicseteditor-images_export_window.obj: ./src/gui/images_export_window.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-images_export_window.obj -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-images_export_window.Tpo -c -o ./src/gui/magicseteditor-images_export_window.obj `if test -f './src/gui/images_export_window.cpp'; then $(CYGPATH_W) './src/gui/images_export_window.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/images_export_window.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-images_export_window.Tpo ./src/gui/$(DEPDIR)/magicseteditor-images_export_window.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/images_export_window.cpp' object='./src/gui/magicseteditor-images_export_window.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-images_export_window.obj `if test -f './src/gui/images_export_window.cpp'; then $(CYGPATH_W) './src/gui/images_export_window.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/images_export_window.cpp'; fi` + +./src/gui/magicseteditor-new_window.o: ./src/gui/new_window.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-new_window.o -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-new_window.Tpo -c -o ./src/gui/magicseteditor-new_window.o `test -f './src/gui/new_window.cpp' || echo '$(srcdir)/'`./src/gui/new_window.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-new_window.Tpo ./src/gui/$(DEPDIR)/magicseteditor-new_window.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/new_window.cpp' object='./src/gui/magicseteditor-new_window.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-new_window.o `test -f './src/gui/new_window.cpp' || echo '$(srcdir)/'`./src/gui/new_window.cpp + +./src/gui/magicseteditor-new_window.obj: ./src/gui/new_window.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/gui/magicseteditor-new_window.obj -MD -MP -MF ./src/gui/$(DEPDIR)/magicseteditor-new_window.Tpo -c -o ./src/gui/magicseteditor-new_window.obj `if test -f './src/gui/new_window.cpp'; then $(CYGPATH_W) './src/gui/new_window.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/new_window.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/gui/$(DEPDIR)/magicseteditor-new_window.Tpo ./src/gui/$(DEPDIR)/magicseteditor-new_window.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/gui/new_window.cpp' object='./src/gui/magicseteditor-new_window.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/gui/magicseteditor-new_window.obj `if test -f './src/gui/new_window.cpp'; then $(CYGPATH_W) './src/gui/new_window.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/gui/new_window.cpp'; fi` + +./src/render/card/magicseteditor-viewer.o: ./src/render/card/viewer.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/render/card/magicseteditor-viewer.o -MD -MP -MF ./src/render/card/$(DEPDIR)/magicseteditor-viewer.Tpo -c -o ./src/render/card/magicseteditor-viewer.o `test -f './src/render/card/viewer.cpp' || echo '$(srcdir)/'`./src/render/card/viewer.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/render/card/$(DEPDIR)/magicseteditor-viewer.Tpo ./src/render/card/$(DEPDIR)/magicseteditor-viewer.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/render/card/viewer.cpp' object='./src/render/card/magicseteditor-viewer.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/render/card/magicseteditor-viewer.o `test -f './src/render/card/viewer.cpp' || echo '$(srcdir)/'`./src/render/card/viewer.cpp + +./src/render/card/magicseteditor-viewer.obj: ./src/render/card/viewer.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/render/card/magicseteditor-viewer.obj -MD -MP -MF ./src/render/card/$(DEPDIR)/magicseteditor-viewer.Tpo -c -o ./src/render/card/magicseteditor-viewer.obj `if test -f './src/render/card/viewer.cpp'; then $(CYGPATH_W) './src/render/card/viewer.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/render/card/viewer.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/render/card/$(DEPDIR)/magicseteditor-viewer.Tpo ./src/render/card/$(DEPDIR)/magicseteditor-viewer.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/render/card/viewer.cpp' object='./src/render/card/magicseteditor-viewer.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/render/card/magicseteditor-viewer.obj `if test -f './src/render/card/viewer.cpp'; then $(CYGPATH_W) './src/render/card/viewer.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/render/card/viewer.cpp'; fi` + +./src/render/symbol/magicseteditor-filter.o: ./src/render/symbol/filter.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/render/symbol/magicseteditor-filter.o -MD -MP -MF ./src/render/symbol/$(DEPDIR)/magicseteditor-filter.Tpo -c -o ./src/render/symbol/magicseteditor-filter.o `test -f './src/render/symbol/filter.cpp' || echo '$(srcdir)/'`./src/render/symbol/filter.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/render/symbol/$(DEPDIR)/magicseteditor-filter.Tpo ./src/render/symbol/$(DEPDIR)/magicseteditor-filter.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/render/symbol/filter.cpp' object='./src/render/symbol/magicseteditor-filter.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/render/symbol/magicseteditor-filter.o `test -f './src/render/symbol/filter.cpp' || echo '$(srcdir)/'`./src/render/symbol/filter.cpp + +./src/render/symbol/magicseteditor-filter.obj: ./src/render/symbol/filter.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/render/symbol/magicseteditor-filter.obj -MD -MP -MF ./src/render/symbol/$(DEPDIR)/magicseteditor-filter.Tpo -c -o ./src/render/symbol/magicseteditor-filter.obj `if test -f './src/render/symbol/filter.cpp'; then $(CYGPATH_W) './src/render/symbol/filter.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/render/symbol/filter.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/render/symbol/$(DEPDIR)/magicseteditor-filter.Tpo ./src/render/symbol/$(DEPDIR)/magicseteditor-filter.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/render/symbol/filter.cpp' object='./src/render/symbol/magicseteditor-filter.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/render/symbol/magicseteditor-filter.obj `if test -f './src/render/symbol/filter.cpp'; then $(CYGPATH_W) './src/render/symbol/filter.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/render/symbol/filter.cpp'; fi` + +./src/render/symbol/magicseteditor-viewer.o: ./src/render/symbol/viewer.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/render/symbol/magicseteditor-viewer.o -MD -MP -MF ./src/render/symbol/$(DEPDIR)/magicseteditor-viewer.Tpo -c -o ./src/render/symbol/magicseteditor-viewer.o `test -f './src/render/symbol/viewer.cpp' || echo '$(srcdir)/'`./src/render/symbol/viewer.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/render/symbol/$(DEPDIR)/magicseteditor-viewer.Tpo ./src/render/symbol/$(DEPDIR)/magicseteditor-viewer.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/render/symbol/viewer.cpp' object='./src/render/symbol/magicseteditor-viewer.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/render/symbol/magicseteditor-viewer.o `test -f './src/render/symbol/viewer.cpp' || echo '$(srcdir)/'`./src/render/symbol/viewer.cpp + +./src/render/symbol/magicseteditor-viewer.obj: ./src/render/symbol/viewer.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/render/symbol/magicseteditor-viewer.obj -MD -MP -MF ./src/render/symbol/$(DEPDIR)/magicseteditor-viewer.Tpo -c -o ./src/render/symbol/magicseteditor-viewer.obj `if test -f './src/render/symbol/viewer.cpp'; then $(CYGPATH_W) './src/render/symbol/viewer.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/render/symbol/viewer.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/render/symbol/$(DEPDIR)/magicseteditor-viewer.Tpo ./src/render/symbol/$(DEPDIR)/magicseteditor-viewer.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/render/symbol/viewer.cpp' object='./src/render/symbol/magicseteditor-viewer.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/render/symbol/magicseteditor-viewer.obj `if test -f './src/render/symbol/viewer.cpp'; then $(CYGPATH_W) './src/render/symbol/viewer.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/render/symbol/viewer.cpp'; fi` + +./src/render/text/magicseteditor-compound.o: ./src/render/text/compound.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/render/text/magicseteditor-compound.o -MD -MP -MF ./src/render/text/$(DEPDIR)/magicseteditor-compound.Tpo -c -o ./src/render/text/magicseteditor-compound.o `test -f './src/render/text/compound.cpp' || echo '$(srcdir)/'`./src/render/text/compound.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/render/text/$(DEPDIR)/magicseteditor-compound.Tpo ./src/render/text/$(DEPDIR)/magicseteditor-compound.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/render/text/compound.cpp' object='./src/render/text/magicseteditor-compound.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/render/text/magicseteditor-compound.o `test -f './src/render/text/compound.cpp' || echo '$(srcdir)/'`./src/render/text/compound.cpp + +./src/render/text/magicseteditor-compound.obj: ./src/render/text/compound.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/render/text/magicseteditor-compound.obj -MD -MP -MF ./src/render/text/$(DEPDIR)/magicseteditor-compound.Tpo -c -o ./src/render/text/magicseteditor-compound.obj `if test -f './src/render/text/compound.cpp'; then $(CYGPATH_W) './src/render/text/compound.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/render/text/compound.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/render/text/$(DEPDIR)/magicseteditor-compound.Tpo ./src/render/text/$(DEPDIR)/magicseteditor-compound.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/render/text/compound.cpp' object='./src/render/text/magicseteditor-compound.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/render/text/magicseteditor-compound.obj `if test -f './src/render/text/compound.cpp'; then $(CYGPATH_W) './src/render/text/compound.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/render/text/compound.cpp'; fi` + +./src/render/text/magicseteditor-element.o: ./src/render/text/element.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/render/text/magicseteditor-element.o -MD -MP -MF ./src/render/text/$(DEPDIR)/magicseteditor-element.Tpo -c -o ./src/render/text/magicseteditor-element.o `test -f './src/render/text/element.cpp' || echo '$(srcdir)/'`./src/render/text/element.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/render/text/$(DEPDIR)/magicseteditor-element.Tpo ./src/render/text/$(DEPDIR)/magicseteditor-element.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/render/text/element.cpp' object='./src/render/text/magicseteditor-element.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/render/text/magicseteditor-element.o `test -f './src/render/text/element.cpp' || echo '$(srcdir)/'`./src/render/text/element.cpp + +./src/render/text/magicseteditor-element.obj: ./src/render/text/element.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/render/text/magicseteditor-element.obj -MD -MP -MF ./src/render/text/$(DEPDIR)/magicseteditor-element.Tpo -c -o ./src/render/text/magicseteditor-element.obj `if test -f './src/render/text/element.cpp'; then $(CYGPATH_W) './src/render/text/element.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/render/text/element.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/render/text/$(DEPDIR)/magicseteditor-element.Tpo ./src/render/text/$(DEPDIR)/magicseteditor-element.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/render/text/element.cpp' object='./src/render/text/magicseteditor-element.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/render/text/magicseteditor-element.obj `if test -f './src/render/text/element.cpp'; then $(CYGPATH_W) './src/render/text/element.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/render/text/element.cpp'; fi` + +./src/render/text/magicseteditor-font.o: ./src/render/text/font.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/render/text/magicseteditor-font.o -MD -MP -MF ./src/render/text/$(DEPDIR)/magicseteditor-font.Tpo -c -o ./src/render/text/magicseteditor-font.o `test -f './src/render/text/font.cpp' || echo '$(srcdir)/'`./src/render/text/font.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/render/text/$(DEPDIR)/magicseteditor-font.Tpo ./src/render/text/$(DEPDIR)/magicseteditor-font.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/render/text/font.cpp' object='./src/render/text/magicseteditor-font.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/render/text/magicseteditor-font.o `test -f './src/render/text/font.cpp' || echo '$(srcdir)/'`./src/render/text/font.cpp + +./src/render/text/magicseteditor-font.obj: ./src/render/text/font.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/render/text/magicseteditor-font.obj -MD -MP -MF ./src/render/text/$(DEPDIR)/magicseteditor-font.Tpo -c -o ./src/render/text/magicseteditor-font.obj `if test -f './src/render/text/font.cpp'; then $(CYGPATH_W) './src/render/text/font.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/render/text/font.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/render/text/$(DEPDIR)/magicseteditor-font.Tpo ./src/render/text/$(DEPDIR)/magicseteditor-font.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/render/text/font.cpp' object='./src/render/text/magicseteditor-font.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/render/text/magicseteditor-font.obj `if test -f './src/render/text/font.cpp'; then $(CYGPATH_W) './src/render/text/font.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/render/text/font.cpp'; fi` + +./src/render/text/magicseteditor-symbol.o: ./src/render/text/symbol.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/render/text/magicseteditor-symbol.o -MD -MP -MF ./src/render/text/$(DEPDIR)/magicseteditor-symbol.Tpo -c -o ./src/render/text/magicseteditor-symbol.o `test -f './src/render/text/symbol.cpp' || echo '$(srcdir)/'`./src/render/text/symbol.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/render/text/$(DEPDIR)/magicseteditor-symbol.Tpo ./src/render/text/$(DEPDIR)/magicseteditor-symbol.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/render/text/symbol.cpp' object='./src/render/text/magicseteditor-symbol.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/render/text/magicseteditor-symbol.o `test -f './src/render/text/symbol.cpp' || echo '$(srcdir)/'`./src/render/text/symbol.cpp + +./src/render/text/magicseteditor-symbol.obj: ./src/render/text/symbol.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/render/text/magicseteditor-symbol.obj -MD -MP -MF ./src/render/text/$(DEPDIR)/magicseteditor-symbol.Tpo -c -o ./src/render/text/magicseteditor-symbol.obj `if test -f './src/render/text/symbol.cpp'; then $(CYGPATH_W) './src/render/text/symbol.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/render/text/symbol.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/render/text/$(DEPDIR)/magicseteditor-symbol.Tpo ./src/render/text/$(DEPDIR)/magicseteditor-symbol.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/render/text/symbol.cpp' object='./src/render/text/magicseteditor-symbol.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/render/text/magicseteditor-symbol.obj `if test -f './src/render/text/symbol.cpp'; then $(CYGPATH_W) './src/render/text/symbol.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/render/text/symbol.cpp'; fi` + +./src/render/text/magicseteditor-viewer.o: ./src/render/text/viewer.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/render/text/magicseteditor-viewer.o -MD -MP -MF ./src/render/text/$(DEPDIR)/magicseteditor-viewer.Tpo -c -o ./src/render/text/magicseteditor-viewer.o `test -f './src/render/text/viewer.cpp' || echo '$(srcdir)/'`./src/render/text/viewer.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/render/text/$(DEPDIR)/magicseteditor-viewer.Tpo ./src/render/text/$(DEPDIR)/magicseteditor-viewer.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/render/text/viewer.cpp' object='./src/render/text/magicseteditor-viewer.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/render/text/magicseteditor-viewer.o `test -f './src/render/text/viewer.cpp' || echo '$(srcdir)/'`./src/render/text/viewer.cpp + +./src/render/text/magicseteditor-viewer.obj: ./src/render/text/viewer.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/render/text/magicseteditor-viewer.obj -MD -MP -MF ./src/render/text/$(DEPDIR)/magicseteditor-viewer.Tpo -c -o ./src/render/text/magicseteditor-viewer.obj `if test -f './src/render/text/viewer.cpp'; then $(CYGPATH_W) './src/render/text/viewer.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/render/text/viewer.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/render/text/$(DEPDIR)/magicseteditor-viewer.Tpo ./src/render/text/$(DEPDIR)/magicseteditor-viewer.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/render/text/viewer.cpp' object='./src/render/text/magicseteditor-viewer.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/render/text/magicseteditor-viewer.obj `if test -f './src/render/text/viewer.cpp'; then $(CYGPATH_W) './src/render/text/viewer.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/render/text/viewer.cpp'; fi` + +./src/render/value/magicseteditor-choice.o: ./src/render/value/choice.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/render/value/magicseteditor-choice.o -MD -MP -MF ./src/render/value/$(DEPDIR)/magicseteditor-choice.Tpo -c -o ./src/render/value/magicseteditor-choice.o `test -f './src/render/value/choice.cpp' || echo '$(srcdir)/'`./src/render/value/choice.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/render/value/$(DEPDIR)/magicseteditor-choice.Tpo ./src/render/value/$(DEPDIR)/magicseteditor-choice.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/render/value/choice.cpp' object='./src/render/value/magicseteditor-choice.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/render/value/magicseteditor-choice.o `test -f './src/render/value/choice.cpp' || echo '$(srcdir)/'`./src/render/value/choice.cpp + +./src/render/value/magicseteditor-choice.obj: ./src/render/value/choice.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/render/value/magicseteditor-choice.obj -MD -MP -MF ./src/render/value/$(DEPDIR)/magicseteditor-choice.Tpo -c -o ./src/render/value/magicseteditor-choice.obj `if test -f './src/render/value/choice.cpp'; then $(CYGPATH_W) './src/render/value/choice.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/render/value/choice.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/render/value/$(DEPDIR)/magicseteditor-choice.Tpo ./src/render/value/$(DEPDIR)/magicseteditor-choice.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/render/value/choice.cpp' object='./src/render/value/magicseteditor-choice.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/render/value/magicseteditor-choice.obj `if test -f './src/render/value/choice.cpp'; then $(CYGPATH_W) './src/render/value/choice.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/render/value/choice.cpp'; fi` + +./src/render/value/magicseteditor-color.o: ./src/render/value/color.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/render/value/magicseteditor-color.o -MD -MP -MF ./src/render/value/$(DEPDIR)/magicseteditor-color.Tpo -c -o ./src/render/value/magicseteditor-color.o `test -f './src/render/value/color.cpp' || echo '$(srcdir)/'`./src/render/value/color.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/render/value/$(DEPDIR)/magicseteditor-color.Tpo ./src/render/value/$(DEPDIR)/magicseteditor-color.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/render/value/color.cpp' object='./src/render/value/magicseteditor-color.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/render/value/magicseteditor-color.o `test -f './src/render/value/color.cpp' || echo '$(srcdir)/'`./src/render/value/color.cpp + +./src/render/value/magicseteditor-color.obj: ./src/render/value/color.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/render/value/magicseteditor-color.obj -MD -MP -MF ./src/render/value/$(DEPDIR)/magicseteditor-color.Tpo -c -o ./src/render/value/magicseteditor-color.obj `if test -f './src/render/value/color.cpp'; then $(CYGPATH_W) './src/render/value/color.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/render/value/color.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/render/value/$(DEPDIR)/magicseteditor-color.Tpo ./src/render/value/$(DEPDIR)/magicseteditor-color.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/render/value/color.cpp' object='./src/render/value/magicseteditor-color.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/render/value/magicseteditor-color.obj `if test -f './src/render/value/color.cpp'; then $(CYGPATH_W) './src/render/value/color.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/render/value/color.cpp'; fi` + +./src/render/value/magicseteditor-image.o: ./src/render/value/image.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/render/value/magicseteditor-image.o -MD -MP -MF ./src/render/value/$(DEPDIR)/magicseteditor-image.Tpo -c -o ./src/render/value/magicseteditor-image.o `test -f './src/render/value/image.cpp' || echo '$(srcdir)/'`./src/render/value/image.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/render/value/$(DEPDIR)/magicseteditor-image.Tpo ./src/render/value/$(DEPDIR)/magicseteditor-image.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/render/value/image.cpp' object='./src/render/value/magicseteditor-image.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/render/value/magicseteditor-image.o `test -f './src/render/value/image.cpp' || echo '$(srcdir)/'`./src/render/value/image.cpp + +./src/render/value/magicseteditor-image.obj: ./src/render/value/image.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/render/value/magicseteditor-image.obj -MD -MP -MF ./src/render/value/$(DEPDIR)/magicseteditor-image.Tpo -c -o ./src/render/value/magicseteditor-image.obj `if test -f './src/render/value/image.cpp'; then $(CYGPATH_W) './src/render/value/image.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/render/value/image.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/render/value/$(DEPDIR)/magicseteditor-image.Tpo ./src/render/value/$(DEPDIR)/magicseteditor-image.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/render/value/image.cpp' object='./src/render/value/magicseteditor-image.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/render/value/magicseteditor-image.obj `if test -f './src/render/value/image.cpp'; then $(CYGPATH_W) './src/render/value/image.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/render/value/image.cpp'; fi` + +./src/render/value/magicseteditor-information.o: ./src/render/value/information.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/render/value/magicseteditor-information.o -MD -MP -MF ./src/render/value/$(DEPDIR)/magicseteditor-information.Tpo -c -o ./src/render/value/magicseteditor-information.o `test -f './src/render/value/information.cpp' || echo '$(srcdir)/'`./src/render/value/information.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/render/value/$(DEPDIR)/magicseteditor-information.Tpo ./src/render/value/$(DEPDIR)/magicseteditor-information.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/render/value/information.cpp' object='./src/render/value/magicseteditor-information.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/render/value/magicseteditor-information.o `test -f './src/render/value/information.cpp' || echo '$(srcdir)/'`./src/render/value/information.cpp + +./src/render/value/magicseteditor-information.obj: ./src/render/value/information.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/render/value/magicseteditor-information.obj -MD -MP -MF ./src/render/value/$(DEPDIR)/magicseteditor-information.Tpo -c -o ./src/render/value/magicseteditor-information.obj `if test -f './src/render/value/information.cpp'; then $(CYGPATH_W) './src/render/value/information.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/render/value/information.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/render/value/$(DEPDIR)/magicseteditor-information.Tpo ./src/render/value/$(DEPDIR)/magicseteditor-information.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/render/value/information.cpp' object='./src/render/value/magicseteditor-information.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/render/value/magicseteditor-information.obj `if test -f './src/render/value/information.cpp'; then $(CYGPATH_W) './src/render/value/information.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/render/value/information.cpp'; fi` + +./src/render/value/magicseteditor-multiple_choice.o: ./src/render/value/multiple_choice.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/render/value/magicseteditor-multiple_choice.o -MD -MP -MF ./src/render/value/$(DEPDIR)/magicseteditor-multiple_choice.Tpo -c -o ./src/render/value/magicseteditor-multiple_choice.o `test -f './src/render/value/multiple_choice.cpp' || echo '$(srcdir)/'`./src/render/value/multiple_choice.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/render/value/$(DEPDIR)/magicseteditor-multiple_choice.Tpo ./src/render/value/$(DEPDIR)/magicseteditor-multiple_choice.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/render/value/multiple_choice.cpp' object='./src/render/value/magicseteditor-multiple_choice.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/render/value/magicseteditor-multiple_choice.o `test -f './src/render/value/multiple_choice.cpp' || echo '$(srcdir)/'`./src/render/value/multiple_choice.cpp + +./src/render/value/magicseteditor-multiple_choice.obj: ./src/render/value/multiple_choice.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/render/value/magicseteditor-multiple_choice.obj -MD -MP -MF ./src/render/value/$(DEPDIR)/magicseteditor-multiple_choice.Tpo -c -o ./src/render/value/magicseteditor-multiple_choice.obj `if test -f './src/render/value/multiple_choice.cpp'; then $(CYGPATH_W) './src/render/value/multiple_choice.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/render/value/multiple_choice.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/render/value/$(DEPDIR)/magicseteditor-multiple_choice.Tpo ./src/render/value/$(DEPDIR)/magicseteditor-multiple_choice.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/render/value/multiple_choice.cpp' object='./src/render/value/magicseteditor-multiple_choice.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/render/value/magicseteditor-multiple_choice.obj `if test -f './src/render/value/multiple_choice.cpp'; then $(CYGPATH_W) './src/render/value/multiple_choice.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/render/value/multiple_choice.cpp'; fi` + +./src/render/value/magicseteditor-package_choice.o: ./src/render/value/package_choice.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/render/value/magicseteditor-package_choice.o -MD -MP -MF ./src/render/value/$(DEPDIR)/magicseteditor-package_choice.Tpo -c -o ./src/render/value/magicseteditor-package_choice.o `test -f './src/render/value/package_choice.cpp' || echo '$(srcdir)/'`./src/render/value/package_choice.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/render/value/$(DEPDIR)/magicseteditor-package_choice.Tpo ./src/render/value/$(DEPDIR)/magicseteditor-package_choice.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/render/value/package_choice.cpp' object='./src/render/value/magicseteditor-package_choice.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/render/value/magicseteditor-package_choice.o `test -f './src/render/value/package_choice.cpp' || echo '$(srcdir)/'`./src/render/value/package_choice.cpp + +./src/render/value/magicseteditor-package_choice.obj: ./src/render/value/package_choice.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/render/value/magicseteditor-package_choice.obj -MD -MP -MF ./src/render/value/$(DEPDIR)/magicseteditor-package_choice.Tpo -c -o ./src/render/value/magicseteditor-package_choice.obj `if test -f './src/render/value/package_choice.cpp'; then $(CYGPATH_W) './src/render/value/package_choice.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/render/value/package_choice.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/render/value/$(DEPDIR)/magicseteditor-package_choice.Tpo ./src/render/value/$(DEPDIR)/magicseteditor-package_choice.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/render/value/package_choice.cpp' object='./src/render/value/magicseteditor-package_choice.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/render/value/magicseteditor-package_choice.obj `if test -f './src/render/value/package_choice.cpp'; then $(CYGPATH_W) './src/render/value/package_choice.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/render/value/package_choice.cpp'; fi` + +./src/render/value/magicseteditor-symbol.o: ./src/render/value/symbol.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/render/value/magicseteditor-symbol.o -MD -MP -MF ./src/render/value/$(DEPDIR)/magicseteditor-symbol.Tpo -c -o ./src/render/value/magicseteditor-symbol.o `test -f './src/render/value/symbol.cpp' || echo '$(srcdir)/'`./src/render/value/symbol.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/render/value/$(DEPDIR)/magicseteditor-symbol.Tpo ./src/render/value/$(DEPDIR)/magicseteditor-symbol.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/render/value/symbol.cpp' object='./src/render/value/magicseteditor-symbol.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/render/value/magicseteditor-symbol.o `test -f './src/render/value/symbol.cpp' || echo '$(srcdir)/'`./src/render/value/symbol.cpp + +./src/render/value/magicseteditor-symbol.obj: ./src/render/value/symbol.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/render/value/magicseteditor-symbol.obj -MD -MP -MF ./src/render/value/$(DEPDIR)/magicseteditor-symbol.Tpo -c -o ./src/render/value/magicseteditor-symbol.obj `if test -f './src/render/value/symbol.cpp'; then $(CYGPATH_W) './src/render/value/symbol.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/render/value/symbol.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/render/value/$(DEPDIR)/magicseteditor-symbol.Tpo ./src/render/value/$(DEPDIR)/magicseteditor-symbol.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/render/value/symbol.cpp' object='./src/render/value/magicseteditor-symbol.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/render/value/magicseteditor-symbol.obj `if test -f './src/render/value/symbol.cpp'; then $(CYGPATH_W) './src/render/value/symbol.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/render/value/symbol.cpp'; fi` + +./src/render/value/magicseteditor-text.o: ./src/render/value/text.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/render/value/magicseteditor-text.o -MD -MP -MF ./src/render/value/$(DEPDIR)/magicseteditor-text.Tpo -c -o ./src/render/value/magicseteditor-text.o `test -f './src/render/value/text.cpp' || echo '$(srcdir)/'`./src/render/value/text.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/render/value/$(DEPDIR)/magicseteditor-text.Tpo ./src/render/value/$(DEPDIR)/magicseteditor-text.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/render/value/text.cpp' object='./src/render/value/magicseteditor-text.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/render/value/magicseteditor-text.o `test -f './src/render/value/text.cpp' || echo '$(srcdir)/'`./src/render/value/text.cpp + +./src/render/value/magicseteditor-text.obj: ./src/render/value/text.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/render/value/magicseteditor-text.obj -MD -MP -MF ./src/render/value/$(DEPDIR)/magicseteditor-text.Tpo -c -o ./src/render/value/magicseteditor-text.obj `if test -f './src/render/value/text.cpp'; then $(CYGPATH_W) './src/render/value/text.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/render/value/text.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/render/value/$(DEPDIR)/magicseteditor-text.Tpo ./src/render/value/$(DEPDIR)/magicseteditor-text.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/render/value/text.cpp' object='./src/render/value/magicseteditor-text.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/render/value/magicseteditor-text.obj `if test -f './src/render/value/text.cpp'; then $(CYGPATH_W) './src/render/value/text.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/render/value/text.cpp'; fi` + +./src/render/value/magicseteditor-viewer.o: ./src/render/value/viewer.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/render/value/magicseteditor-viewer.o -MD -MP -MF ./src/render/value/$(DEPDIR)/magicseteditor-viewer.Tpo -c -o ./src/render/value/magicseteditor-viewer.o `test -f './src/render/value/viewer.cpp' || echo '$(srcdir)/'`./src/render/value/viewer.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/render/value/$(DEPDIR)/magicseteditor-viewer.Tpo ./src/render/value/$(DEPDIR)/magicseteditor-viewer.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/render/value/viewer.cpp' object='./src/render/value/magicseteditor-viewer.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/render/value/magicseteditor-viewer.o `test -f './src/render/value/viewer.cpp' || echo '$(srcdir)/'`./src/render/value/viewer.cpp + +./src/render/value/magicseteditor-viewer.obj: ./src/render/value/viewer.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/render/value/magicseteditor-viewer.obj -MD -MP -MF ./src/render/value/$(DEPDIR)/magicseteditor-viewer.Tpo -c -o ./src/render/value/magicseteditor-viewer.obj `if test -f './src/render/value/viewer.cpp'; then $(CYGPATH_W) './src/render/value/viewer.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/render/value/viewer.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/render/value/$(DEPDIR)/magicseteditor-viewer.Tpo ./src/render/value/$(DEPDIR)/magicseteditor-viewer.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/render/value/viewer.cpp' object='./src/render/value/magicseteditor-viewer.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/render/value/magicseteditor-viewer.obj `if test -f './src/render/value/viewer.cpp'; then $(CYGPATH_W) './src/render/value/viewer.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/render/value/viewer.cpp'; fi` + +./src/script/functions/magicseteditor-basic.o: ./src/script/functions/basic.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/script/functions/magicseteditor-basic.o -MD -MP -MF ./src/script/functions/$(DEPDIR)/magicseteditor-basic.Tpo -c -o ./src/script/functions/magicseteditor-basic.o `test -f './src/script/functions/basic.cpp' || echo '$(srcdir)/'`./src/script/functions/basic.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/script/functions/$(DEPDIR)/magicseteditor-basic.Tpo ./src/script/functions/$(DEPDIR)/magicseteditor-basic.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/script/functions/basic.cpp' object='./src/script/functions/magicseteditor-basic.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/script/functions/magicseteditor-basic.o `test -f './src/script/functions/basic.cpp' || echo '$(srcdir)/'`./src/script/functions/basic.cpp + +./src/script/functions/magicseteditor-basic.obj: ./src/script/functions/basic.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/script/functions/magicseteditor-basic.obj -MD -MP -MF ./src/script/functions/$(DEPDIR)/magicseteditor-basic.Tpo -c -o ./src/script/functions/magicseteditor-basic.obj `if test -f './src/script/functions/basic.cpp'; then $(CYGPATH_W) './src/script/functions/basic.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/script/functions/basic.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/script/functions/$(DEPDIR)/magicseteditor-basic.Tpo ./src/script/functions/$(DEPDIR)/magicseteditor-basic.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/script/functions/basic.cpp' object='./src/script/functions/magicseteditor-basic.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/script/functions/magicseteditor-basic.obj `if test -f './src/script/functions/basic.cpp'; then $(CYGPATH_W) './src/script/functions/basic.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/script/functions/basic.cpp'; fi` + +./src/script/functions/magicseteditor-construction.o: ./src/script/functions/construction.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/script/functions/magicseteditor-construction.o -MD -MP -MF ./src/script/functions/$(DEPDIR)/magicseteditor-construction.Tpo -c -o ./src/script/functions/magicseteditor-construction.o `test -f './src/script/functions/construction.cpp' || echo '$(srcdir)/'`./src/script/functions/construction.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/script/functions/$(DEPDIR)/magicseteditor-construction.Tpo ./src/script/functions/$(DEPDIR)/magicseteditor-construction.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/script/functions/construction.cpp' object='./src/script/functions/magicseteditor-construction.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/script/functions/magicseteditor-construction.o `test -f './src/script/functions/construction.cpp' || echo '$(srcdir)/'`./src/script/functions/construction.cpp + +./src/script/functions/magicseteditor-construction.obj: ./src/script/functions/construction.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/script/functions/magicseteditor-construction.obj -MD -MP -MF ./src/script/functions/$(DEPDIR)/magicseteditor-construction.Tpo -c -o ./src/script/functions/magicseteditor-construction.obj `if test -f './src/script/functions/construction.cpp'; then $(CYGPATH_W) './src/script/functions/construction.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/script/functions/construction.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/script/functions/$(DEPDIR)/magicseteditor-construction.Tpo ./src/script/functions/$(DEPDIR)/magicseteditor-construction.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/script/functions/construction.cpp' object='./src/script/functions/magicseteditor-construction.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/script/functions/magicseteditor-construction.obj `if test -f './src/script/functions/construction.cpp'; then $(CYGPATH_W) './src/script/functions/construction.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/script/functions/construction.cpp'; fi` + +./src/script/functions/magicseteditor-editor.o: ./src/script/functions/editor.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/script/functions/magicseteditor-editor.o -MD -MP -MF ./src/script/functions/$(DEPDIR)/magicseteditor-editor.Tpo -c -o ./src/script/functions/magicseteditor-editor.o `test -f './src/script/functions/editor.cpp' || echo '$(srcdir)/'`./src/script/functions/editor.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/script/functions/$(DEPDIR)/magicseteditor-editor.Tpo ./src/script/functions/$(DEPDIR)/magicseteditor-editor.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/script/functions/editor.cpp' object='./src/script/functions/magicseteditor-editor.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/script/functions/magicseteditor-editor.o `test -f './src/script/functions/editor.cpp' || echo '$(srcdir)/'`./src/script/functions/editor.cpp + +./src/script/functions/magicseteditor-editor.obj: ./src/script/functions/editor.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/script/functions/magicseteditor-editor.obj -MD -MP -MF ./src/script/functions/$(DEPDIR)/magicseteditor-editor.Tpo -c -o ./src/script/functions/magicseteditor-editor.obj `if test -f './src/script/functions/editor.cpp'; then $(CYGPATH_W) './src/script/functions/editor.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/script/functions/editor.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/script/functions/$(DEPDIR)/magicseteditor-editor.Tpo ./src/script/functions/$(DEPDIR)/magicseteditor-editor.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/script/functions/editor.cpp' object='./src/script/functions/magicseteditor-editor.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/script/functions/magicseteditor-editor.obj `if test -f './src/script/functions/editor.cpp'; then $(CYGPATH_W) './src/script/functions/editor.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/script/functions/editor.cpp'; fi` + +./src/script/functions/magicseteditor-english.o: ./src/script/functions/english.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/script/functions/magicseteditor-english.o -MD -MP -MF ./src/script/functions/$(DEPDIR)/magicseteditor-english.Tpo -c -o ./src/script/functions/magicseteditor-english.o `test -f './src/script/functions/english.cpp' || echo '$(srcdir)/'`./src/script/functions/english.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/script/functions/$(DEPDIR)/magicseteditor-english.Tpo ./src/script/functions/$(DEPDIR)/magicseteditor-english.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/script/functions/english.cpp' object='./src/script/functions/magicseteditor-english.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/script/functions/magicseteditor-english.o `test -f './src/script/functions/english.cpp' || echo '$(srcdir)/'`./src/script/functions/english.cpp + +./src/script/functions/magicseteditor-english.obj: ./src/script/functions/english.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/script/functions/magicseteditor-english.obj -MD -MP -MF ./src/script/functions/$(DEPDIR)/magicseteditor-english.Tpo -c -o ./src/script/functions/magicseteditor-english.obj `if test -f './src/script/functions/english.cpp'; then $(CYGPATH_W) './src/script/functions/english.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/script/functions/english.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/script/functions/$(DEPDIR)/magicseteditor-english.Tpo ./src/script/functions/$(DEPDIR)/magicseteditor-english.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/script/functions/english.cpp' object='./src/script/functions/magicseteditor-english.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/script/functions/magicseteditor-english.obj `if test -f './src/script/functions/english.cpp'; then $(CYGPATH_W) './src/script/functions/english.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/script/functions/english.cpp'; fi` + +./src/script/functions/magicseteditor-export.o: ./src/script/functions/export.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/script/functions/magicseteditor-export.o -MD -MP -MF ./src/script/functions/$(DEPDIR)/magicseteditor-export.Tpo -c -o ./src/script/functions/magicseteditor-export.o `test -f './src/script/functions/export.cpp' || echo '$(srcdir)/'`./src/script/functions/export.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/script/functions/$(DEPDIR)/magicseteditor-export.Tpo ./src/script/functions/$(DEPDIR)/magicseteditor-export.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/script/functions/export.cpp' object='./src/script/functions/magicseteditor-export.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/script/functions/magicseteditor-export.o `test -f './src/script/functions/export.cpp' || echo '$(srcdir)/'`./src/script/functions/export.cpp + +./src/script/functions/magicseteditor-export.obj: ./src/script/functions/export.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/script/functions/magicseteditor-export.obj -MD -MP -MF ./src/script/functions/$(DEPDIR)/magicseteditor-export.Tpo -c -o ./src/script/functions/magicseteditor-export.obj `if test -f './src/script/functions/export.cpp'; then $(CYGPATH_W) './src/script/functions/export.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/script/functions/export.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/script/functions/$(DEPDIR)/magicseteditor-export.Tpo ./src/script/functions/$(DEPDIR)/magicseteditor-export.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/script/functions/export.cpp' object='./src/script/functions/magicseteditor-export.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/script/functions/magicseteditor-export.obj `if test -f './src/script/functions/export.cpp'; then $(CYGPATH_W) './src/script/functions/export.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/script/functions/export.cpp'; fi` + +./src/script/functions/magicseteditor-image.o: ./src/script/functions/image.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/script/functions/magicseteditor-image.o -MD -MP -MF ./src/script/functions/$(DEPDIR)/magicseteditor-image.Tpo -c -o ./src/script/functions/magicseteditor-image.o `test -f './src/script/functions/image.cpp' || echo '$(srcdir)/'`./src/script/functions/image.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/script/functions/$(DEPDIR)/magicseteditor-image.Tpo ./src/script/functions/$(DEPDIR)/magicseteditor-image.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/script/functions/image.cpp' object='./src/script/functions/magicseteditor-image.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/script/functions/magicseteditor-image.o `test -f './src/script/functions/image.cpp' || echo '$(srcdir)/'`./src/script/functions/image.cpp + +./src/script/functions/magicseteditor-image.obj: ./src/script/functions/image.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/script/functions/magicseteditor-image.obj -MD -MP -MF ./src/script/functions/$(DEPDIR)/magicseteditor-image.Tpo -c -o ./src/script/functions/magicseteditor-image.obj `if test -f './src/script/functions/image.cpp'; then $(CYGPATH_W) './src/script/functions/image.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/script/functions/image.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/script/functions/$(DEPDIR)/magicseteditor-image.Tpo ./src/script/functions/$(DEPDIR)/magicseteditor-image.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/script/functions/image.cpp' object='./src/script/functions/magicseteditor-image.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/script/functions/magicseteditor-image.obj `if test -f './src/script/functions/image.cpp'; then $(CYGPATH_W) './src/script/functions/image.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/script/functions/image.cpp'; fi` + +./src/script/functions/magicseteditor-regex.o: ./src/script/functions/regex.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/script/functions/magicseteditor-regex.o -MD -MP -MF ./src/script/functions/$(DEPDIR)/magicseteditor-regex.Tpo -c -o ./src/script/functions/magicseteditor-regex.o `test -f './src/script/functions/regex.cpp' || echo '$(srcdir)/'`./src/script/functions/regex.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/script/functions/$(DEPDIR)/magicseteditor-regex.Tpo ./src/script/functions/$(DEPDIR)/magicseteditor-regex.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/script/functions/regex.cpp' object='./src/script/functions/magicseteditor-regex.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/script/functions/magicseteditor-regex.o `test -f './src/script/functions/regex.cpp' || echo '$(srcdir)/'`./src/script/functions/regex.cpp + +./src/script/functions/magicseteditor-regex.obj: ./src/script/functions/regex.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/script/functions/magicseteditor-regex.obj -MD -MP -MF ./src/script/functions/$(DEPDIR)/magicseteditor-regex.Tpo -c -o ./src/script/functions/magicseteditor-regex.obj `if test -f './src/script/functions/regex.cpp'; then $(CYGPATH_W) './src/script/functions/regex.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/script/functions/regex.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/script/functions/$(DEPDIR)/magicseteditor-regex.Tpo ./src/script/functions/$(DEPDIR)/magicseteditor-regex.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/script/functions/regex.cpp' object='./src/script/functions/magicseteditor-regex.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/script/functions/magicseteditor-regex.obj `if test -f './src/script/functions/regex.cpp'; then $(CYGPATH_W) './src/script/functions/regex.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/script/functions/regex.cpp'; fi` + +./src/script/functions/magicseteditor-spelling.o: ./src/script/functions/spelling.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/script/functions/magicseteditor-spelling.o -MD -MP -MF ./src/script/functions/$(DEPDIR)/magicseteditor-spelling.Tpo -c -o ./src/script/functions/magicseteditor-spelling.o `test -f './src/script/functions/spelling.cpp' || echo '$(srcdir)/'`./src/script/functions/spelling.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/script/functions/$(DEPDIR)/magicseteditor-spelling.Tpo ./src/script/functions/$(DEPDIR)/magicseteditor-spelling.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/script/functions/spelling.cpp' object='./src/script/functions/magicseteditor-spelling.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/script/functions/magicseteditor-spelling.o `test -f './src/script/functions/spelling.cpp' || echo '$(srcdir)/'`./src/script/functions/spelling.cpp + +./src/script/functions/magicseteditor-spelling.obj: ./src/script/functions/spelling.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/script/functions/magicseteditor-spelling.obj -MD -MP -MF ./src/script/functions/$(DEPDIR)/magicseteditor-spelling.Tpo -c -o ./src/script/functions/magicseteditor-spelling.obj `if test -f './src/script/functions/spelling.cpp'; then $(CYGPATH_W) './src/script/functions/spelling.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/script/functions/spelling.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/script/functions/$(DEPDIR)/magicseteditor-spelling.Tpo ./src/script/functions/$(DEPDIR)/magicseteditor-spelling.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/script/functions/spelling.cpp' object='./src/script/functions/magicseteditor-spelling.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/script/functions/magicseteditor-spelling.obj `if test -f './src/script/functions/spelling.cpp'; then $(CYGPATH_W) './src/script/functions/spelling.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/script/functions/spelling.cpp'; fi` + +./src/script/magicseteditor-context.o: ./src/script/context.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/script/magicseteditor-context.o -MD -MP -MF ./src/script/$(DEPDIR)/magicseteditor-context.Tpo -c -o ./src/script/magicseteditor-context.o `test -f './src/script/context.cpp' || echo '$(srcdir)/'`./src/script/context.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/script/$(DEPDIR)/magicseteditor-context.Tpo ./src/script/$(DEPDIR)/magicseteditor-context.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/script/context.cpp' object='./src/script/magicseteditor-context.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/script/magicseteditor-context.o `test -f './src/script/context.cpp' || echo '$(srcdir)/'`./src/script/context.cpp + +./src/script/magicseteditor-context.obj: ./src/script/context.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/script/magicseteditor-context.obj -MD -MP -MF ./src/script/$(DEPDIR)/magicseteditor-context.Tpo -c -o ./src/script/magicseteditor-context.obj `if test -f './src/script/context.cpp'; then $(CYGPATH_W) './src/script/context.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/script/context.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/script/$(DEPDIR)/magicseteditor-context.Tpo ./src/script/$(DEPDIR)/magicseteditor-context.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/script/context.cpp' object='./src/script/magicseteditor-context.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/script/magicseteditor-context.obj `if test -f './src/script/context.cpp'; then $(CYGPATH_W) './src/script/context.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/script/context.cpp'; fi` + +./src/script/magicseteditor-dependency.o: ./src/script/dependency.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/script/magicseteditor-dependency.o -MD -MP -MF ./src/script/$(DEPDIR)/magicseteditor-dependency.Tpo -c -o ./src/script/magicseteditor-dependency.o `test -f './src/script/dependency.cpp' || echo '$(srcdir)/'`./src/script/dependency.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/script/$(DEPDIR)/magicseteditor-dependency.Tpo ./src/script/$(DEPDIR)/magicseteditor-dependency.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/script/dependency.cpp' object='./src/script/magicseteditor-dependency.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/script/magicseteditor-dependency.o `test -f './src/script/dependency.cpp' || echo '$(srcdir)/'`./src/script/dependency.cpp + +./src/script/magicseteditor-dependency.obj: ./src/script/dependency.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/script/magicseteditor-dependency.obj -MD -MP -MF ./src/script/$(DEPDIR)/magicseteditor-dependency.Tpo -c -o ./src/script/magicseteditor-dependency.obj `if test -f './src/script/dependency.cpp'; then $(CYGPATH_W) './src/script/dependency.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/script/dependency.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/script/$(DEPDIR)/magicseteditor-dependency.Tpo ./src/script/$(DEPDIR)/magicseteditor-dependency.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/script/dependency.cpp' object='./src/script/magicseteditor-dependency.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/script/magicseteditor-dependency.obj `if test -f './src/script/dependency.cpp'; then $(CYGPATH_W) './src/script/dependency.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/script/dependency.cpp'; fi` + +./src/script/magicseteditor-image.o: ./src/script/image.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/script/magicseteditor-image.o -MD -MP -MF ./src/script/$(DEPDIR)/magicseteditor-image.Tpo -c -o ./src/script/magicseteditor-image.o `test -f './src/script/image.cpp' || echo '$(srcdir)/'`./src/script/image.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/script/$(DEPDIR)/magicseteditor-image.Tpo ./src/script/$(DEPDIR)/magicseteditor-image.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/script/image.cpp' object='./src/script/magicseteditor-image.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/script/magicseteditor-image.o `test -f './src/script/image.cpp' || echo '$(srcdir)/'`./src/script/image.cpp + +./src/script/magicseteditor-image.obj: ./src/script/image.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/script/magicseteditor-image.obj -MD -MP -MF ./src/script/$(DEPDIR)/magicseteditor-image.Tpo -c -o ./src/script/magicseteditor-image.obj `if test -f './src/script/image.cpp'; then $(CYGPATH_W) './src/script/image.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/script/image.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/script/$(DEPDIR)/magicseteditor-image.Tpo ./src/script/$(DEPDIR)/magicseteditor-image.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/script/image.cpp' object='./src/script/magicseteditor-image.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/script/magicseteditor-image.obj `if test -f './src/script/image.cpp'; then $(CYGPATH_W) './src/script/image.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/script/image.cpp'; fi` + +./src/script/magicseteditor-parser.o: ./src/script/parser.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/script/magicseteditor-parser.o -MD -MP -MF ./src/script/$(DEPDIR)/magicseteditor-parser.Tpo -c -o ./src/script/magicseteditor-parser.o `test -f './src/script/parser.cpp' || echo '$(srcdir)/'`./src/script/parser.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/script/$(DEPDIR)/magicseteditor-parser.Tpo ./src/script/$(DEPDIR)/magicseteditor-parser.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/script/parser.cpp' object='./src/script/magicseteditor-parser.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/script/magicseteditor-parser.o `test -f './src/script/parser.cpp' || echo '$(srcdir)/'`./src/script/parser.cpp + +./src/script/magicseteditor-parser.obj: ./src/script/parser.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/script/magicseteditor-parser.obj -MD -MP -MF ./src/script/$(DEPDIR)/magicseteditor-parser.Tpo -c -o ./src/script/magicseteditor-parser.obj `if test -f './src/script/parser.cpp'; then $(CYGPATH_W) './src/script/parser.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/script/parser.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/script/$(DEPDIR)/magicseteditor-parser.Tpo ./src/script/$(DEPDIR)/magicseteditor-parser.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/script/parser.cpp' object='./src/script/magicseteditor-parser.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/script/magicseteditor-parser.obj `if test -f './src/script/parser.cpp'; then $(CYGPATH_W) './src/script/parser.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/script/parser.cpp'; fi` + +./src/script/magicseteditor-profiler.o: ./src/script/profiler.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/script/magicseteditor-profiler.o -MD -MP -MF ./src/script/$(DEPDIR)/magicseteditor-profiler.Tpo -c -o ./src/script/magicseteditor-profiler.o `test -f './src/script/profiler.cpp' || echo '$(srcdir)/'`./src/script/profiler.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/script/$(DEPDIR)/magicseteditor-profiler.Tpo ./src/script/$(DEPDIR)/magicseteditor-profiler.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/script/profiler.cpp' object='./src/script/magicseteditor-profiler.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/script/magicseteditor-profiler.o `test -f './src/script/profiler.cpp' || echo '$(srcdir)/'`./src/script/profiler.cpp + +./src/script/magicseteditor-profiler.obj: ./src/script/profiler.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/script/magicseteditor-profiler.obj -MD -MP -MF ./src/script/$(DEPDIR)/magicseteditor-profiler.Tpo -c -o ./src/script/magicseteditor-profiler.obj `if test -f './src/script/profiler.cpp'; then $(CYGPATH_W) './src/script/profiler.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/script/profiler.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/script/$(DEPDIR)/magicseteditor-profiler.Tpo ./src/script/$(DEPDIR)/magicseteditor-profiler.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/script/profiler.cpp' object='./src/script/magicseteditor-profiler.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/script/magicseteditor-profiler.obj `if test -f './src/script/profiler.cpp'; then $(CYGPATH_W) './src/script/profiler.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/script/profiler.cpp'; fi` + +./src/script/magicseteditor-script.o: ./src/script/script.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/script/magicseteditor-script.o -MD -MP -MF ./src/script/$(DEPDIR)/magicseteditor-script.Tpo -c -o ./src/script/magicseteditor-script.o `test -f './src/script/script.cpp' || echo '$(srcdir)/'`./src/script/script.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/script/$(DEPDIR)/magicseteditor-script.Tpo ./src/script/$(DEPDIR)/magicseteditor-script.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/script/script.cpp' object='./src/script/magicseteditor-script.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/script/magicseteditor-script.o `test -f './src/script/script.cpp' || echo '$(srcdir)/'`./src/script/script.cpp + +./src/script/magicseteditor-script.obj: ./src/script/script.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/script/magicseteditor-script.obj -MD -MP -MF ./src/script/$(DEPDIR)/magicseteditor-script.Tpo -c -o ./src/script/magicseteditor-script.obj `if test -f './src/script/script.cpp'; then $(CYGPATH_W) './src/script/script.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/script/script.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/script/$(DEPDIR)/magicseteditor-script.Tpo ./src/script/$(DEPDIR)/magicseteditor-script.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/script/script.cpp' object='./src/script/magicseteditor-script.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/script/magicseteditor-script.obj `if test -f './src/script/script.cpp'; then $(CYGPATH_W) './src/script/script.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/script/script.cpp'; fi` + +./src/script/magicseteditor-script_manager.o: ./src/script/script_manager.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/script/magicseteditor-script_manager.o -MD -MP -MF ./src/script/$(DEPDIR)/magicseteditor-script_manager.Tpo -c -o ./src/script/magicseteditor-script_manager.o `test -f './src/script/script_manager.cpp' || echo '$(srcdir)/'`./src/script/script_manager.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/script/$(DEPDIR)/magicseteditor-script_manager.Tpo ./src/script/$(DEPDIR)/magicseteditor-script_manager.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/script/script_manager.cpp' object='./src/script/magicseteditor-script_manager.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/script/magicseteditor-script_manager.o `test -f './src/script/script_manager.cpp' || echo '$(srcdir)/'`./src/script/script_manager.cpp + +./src/script/magicseteditor-script_manager.obj: ./src/script/script_manager.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/script/magicseteditor-script_manager.obj -MD -MP -MF ./src/script/$(DEPDIR)/magicseteditor-script_manager.Tpo -c -o ./src/script/magicseteditor-script_manager.obj `if test -f './src/script/script_manager.cpp'; then $(CYGPATH_W) './src/script/script_manager.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/script/script_manager.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/script/$(DEPDIR)/magicseteditor-script_manager.Tpo ./src/script/$(DEPDIR)/magicseteditor-script_manager.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/script/script_manager.cpp' object='./src/script/magicseteditor-script_manager.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/script/magicseteditor-script_manager.obj `if test -f './src/script/script_manager.cpp'; then $(CYGPATH_W) './src/script/script_manager.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/script/script_manager.cpp'; fi` + +./src/script/magicseteditor-scriptable.o: ./src/script/scriptable.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/script/magicseteditor-scriptable.o -MD -MP -MF ./src/script/$(DEPDIR)/magicseteditor-scriptable.Tpo -c -o ./src/script/magicseteditor-scriptable.o `test -f './src/script/scriptable.cpp' || echo '$(srcdir)/'`./src/script/scriptable.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/script/$(DEPDIR)/magicseteditor-scriptable.Tpo ./src/script/$(DEPDIR)/magicseteditor-scriptable.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/script/scriptable.cpp' object='./src/script/magicseteditor-scriptable.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/script/magicseteditor-scriptable.o `test -f './src/script/scriptable.cpp' || echo '$(srcdir)/'`./src/script/scriptable.cpp + +./src/script/magicseteditor-scriptable.obj: ./src/script/scriptable.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/script/magicseteditor-scriptable.obj -MD -MP -MF ./src/script/$(DEPDIR)/magicseteditor-scriptable.Tpo -c -o ./src/script/magicseteditor-scriptable.obj `if test -f './src/script/scriptable.cpp'; then $(CYGPATH_W) './src/script/scriptable.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/script/scriptable.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/script/$(DEPDIR)/magicseteditor-scriptable.Tpo ./src/script/$(DEPDIR)/magicseteditor-scriptable.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/script/scriptable.cpp' object='./src/script/magicseteditor-scriptable.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/script/magicseteditor-scriptable.obj `if test -f './src/script/scriptable.cpp'; then $(CYGPATH_W) './src/script/scriptable.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/script/scriptable.cpp'; fi` + +./src/script/magicseteditor-value.o: ./src/script/value.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/script/magicseteditor-value.o -MD -MP -MF ./src/script/$(DEPDIR)/magicseteditor-value.Tpo -c -o ./src/script/magicseteditor-value.o `test -f './src/script/value.cpp' || echo '$(srcdir)/'`./src/script/value.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/script/$(DEPDIR)/magicseteditor-value.Tpo ./src/script/$(DEPDIR)/magicseteditor-value.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/script/value.cpp' object='./src/script/magicseteditor-value.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/script/magicseteditor-value.o `test -f './src/script/value.cpp' || echo '$(srcdir)/'`./src/script/value.cpp + +./src/script/magicseteditor-value.obj: ./src/script/value.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/script/magicseteditor-value.obj -MD -MP -MF ./src/script/$(DEPDIR)/magicseteditor-value.Tpo -c -o ./src/script/magicseteditor-value.obj `if test -f './src/script/value.cpp'; then $(CYGPATH_W) './src/script/value.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/script/value.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/script/$(DEPDIR)/magicseteditor-value.Tpo ./src/script/$(DEPDIR)/magicseteditor-value.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/script/value.cpp' object='./src/script/magicseteditor-value.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/script/magicseteditor-value.obj `if test -f './src/script/value.cpp'; then $(CYGPATH_W) './src/script/value.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/script/value.cpp'; fi` + +./src/util/io/magicseteditor-get_member.o: ./src/util/io/get_member.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/io/magicseteditor-get_member.o -MD -MP -MF ./src/util/io/$(DEPDIR)/magicseteditor-get_member.Tpo -c -o ./src/util/io/magicseteditor-get_member.o `test -f './src/util/io/get_member.cpp' || echo '$(srcdir)/'`./src/util/io/get_member.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/io/$(DEPDIR)/magicseteditor-get_member.Tpo ./src/util/io/$(DEPDIR)/magicseteditor-get_member.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/io/get_member.cpp' object='./src/util/io/magicseteditor-get_member.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/io/magicseteditor-get_member.o `test -f './src/util/io/get_member.cpp' || echo '$(srcdir)/'`./src/util/io/get_member.cpp + +./src/util/io/magicseteditor-get_member.obj: ./src/util/io/get_member.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/io/magicseteditor-get_member.obj -MD -MP -MF ./src/util/io/$(DEPDIR)/magicseteditor-get_member.Tpo -c -o ./src/util/io/magicseteditor-get_member.obj `if test -f './src/util/io/get_member.cpp'; then $(CYGPATH_W) './src/util/io/get_member.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/io/get_member.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/io/$(DEPDIR)/magicseteditor-get_member.Tpo ./src/util/io/$(DEPDIR)/magicseteditor-get_member.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/io/get_member.cpp' object='./src/util/io/magicseteditor-get_member.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/io/magicseteditor-get_member.obj `if test -f './src/util/io/get_member.cpp'; then $(CYGPATH_W) './src/util/io/get_member.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/io/get_member.cpp'; fi` + +./src/util/io/magicseteditor-package.o: ./src/util/io/package.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/io/magicseteditor-package.o -MD -MP -MF ./src/util/io/$(DEPDIR)/magicseteditor-package.Tpo -c -o ./src/util/io/magicseteditor-package.o `test -f './src/util/io/package.cpp' || echo '$(srcdir)/'`./src/util/io/package.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/io/$(DEPDIR)/magicseteditor-package.Tpo ./src/util/io/$(DEPDIR)/magicseteditor-package.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/io/package.cpp' object='./src/util/io/magicseteditor-package.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/io/magicseteditor-package.o `test -f './src/util/io/package.cpp' || echo '$(srcdir)/'`./src/util/io/package.cpp + +./src/util/io/magicseteditor-package.obj: ./src/util/io/package.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/io/magicseteditor-package.obj -MD -MP -MF ./src/util/io/$(DEPDIR)/magicseteditor-package.Tpo -c -o ./src/util/io/magicseteditor-package.obj `if test -f './src/util/io/package.cpp'; then $(CYGPATH_W) './src/util/io/package.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/io/package.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/io/$(DEPDIR)/magicseteditor-package.Tpo ./src/util/io/$(DEPDIR)/magicseteditor-package.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/io/package.cpp' object='./src/util/io/magicseteditor-package.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/io/magicseteditor-package.obj `if test -f './src/util/io/package.cpp'; then $(CYGPATH_W) './src/util/io/package.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/io/package.cpp'; fi` + +./src/util/io/magicseteditor-package_manager.o: ./src/util/io/package_manager.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/io/magicseteditor-package_manager.o -MD -MP -MF ./src/util/io/$(DEPDIR)/magicseteditor-package_manager.Tpo -c -o ./src/util/io/magicseteditor-package_manager.o `test -f './src/util/io/package_manager.cpp' || echo '$(srcdir)/'`./src/util/io/package_manager.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/io/$(DEPDIR)/magicseteditor-package_manager.Tpo ./src/util/io/$(DEPDIR)/magicseteditor-package_manager.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/io/package_manager.cpp' object='./src/util/io/magicseteditor-package_manager.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/io/magicseteditor-package_manager.o `test -f './src/util/io/package_manager.cpp' || echo '$(srcdir)/'`./src/util/io/package_manager.cpp + +./src/util/io/magicseteditor-package_manager.obj: ./src/util/io/package_manager.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/io/magicseteditor-package_manager.obj -MD -MP -MF ./src/util/io/$(DEPDIR)/magicseteditor-package_manager.Tpo -c -o ./src/util/io/magicseteditor-package_manager.obj `if test -f './src/util/io/package_manager.cpp'; then $(CYGPATH_W) './src/util/io/package_manager.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/io/package_manager.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/io/$(DEPDIR)/magicseteditor-package_manager.Tpo ./src/util/io/$(DEPDIR)/magicseteditor-package_manager.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/io/package_manager.cpp' object='./src/util/io/magicseteditor-package_manager.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/io/magicseteditor-package_manager.obj `if test -f './src/util/io/package_manager.cpp'; then $(CYGPATH_W) './src/util/io/package_manager.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/io/package_manager.cpp'; fi` + +./src/util/io/magicseteditor-reader.o: ./src/util/io/reader.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/io/magicseteditor-reader.o -MD -MP -MF ./src/util/io/$(DEPDIR)/magicseteditor-reader.Tpo -c -o ./src/util/io/magicseteditor-reader.o `test -f './src/util/io/reader.cpp' || echo '$(srcdir)/'`./src/util/io/reader.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/io/$(DEPDIR)/magicseteditor-reader.Tpo ./src/util/io/$(DEPDIR)/magicseteditor-reader.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/io/reader.cpp' object='./src/util/io/magicseteditor-reader.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/io/magicseteditor-reader.o `test -f './src/util/io/reader.cpp' || echo '$(srcdir)/'`./src/util/io/reader.cpp + +./src/util/io/magicseteditor-reader.obj: ./src/util/io/reader.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/io/magicseteditor-reader.obj -MD -MP -MF ./src/util/io/$(DEPDIR)/magicseteditor-reader.Tpo -c -o ./src/util/io/magicseteditor-reader.obj `if test -f './src/util/io/reader.cpp'; then $(CYGPATH_W) './src/util/io/reader.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/io/reader.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/io/$(DEPDIR)/magicseteditor-reader.Tpo ./src/util/io/$(DEPDIR)/magicseteditor-reader.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/io/reader.cpp' object='./src/util/io/magicseteditor-reader.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/io/magicseteditor-reader.obj `if test -f './src/util/io/reader.cpp'; then $(CYGPATH_W) './src/util/io/reader.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/io/reader.cpp'; fi` + +./src/util/io/magicseteditor-writer.o: ./src/util/io/writer.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/io/magicseteditor-writer.o -MD -MP -MF ./src/util/io/$(DEPDIR)/magicseteditor-writer.Tpo -c -o ./src/util/io/magicseteditor-writer.o `test -f './src/util/io/writer.cpp' || echo '$(srcdir)/'`./src/util/io/writer.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/io/$(DEPDIR)/magicseteditor-writer.Tpo ./src/util/io/$(DEPDIR)/magicseteditor-writer.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/io/writer.cpp' object='./src/util/io/magicseteditor-writer.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/io/magicseteditor-writer.o `test -f './src/util/io/writer.cpp' || echo '$(srcdir)/'`./src/util/io/writer.cpp + +./src/util/io/magicseteditor-writer.obj: ./src/util/io/writer.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/io/magicseteditor-writer.obj -MD -MP -MF ./src/util/io/$(DEPDIR)/magicseteditor-writer.Tpo -c -o ./src/util/io/magicseteditor-writer.obj `if test -f './src/util/io/writer.cpp'; then $(CYGPATH_W) './src/util/io/writer.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/io/writer.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/io/$(DEPDIR)/magicseteditor-writer.Tpo ./src/util/io/$(DEPDIR)/magicseteditor-writer.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/io/writer.cpp' object='./src/util/io/magicseteditor-writer.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/io/magicseteditor-writer.obj `if test -f './src/util/io/writer.cpp'; then $(CYGPATH_W) './src/util/io/writer.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/io/writer.cpp'; fi` + +./src/util/vcs/magicseteditor-subversion.o: ./src/util/vcs/subversion.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/vcs/magicseteditor-subversion.o -MD -MP -MF ./src/util/vcs/$(DEPDIR)/magicseteditor-subversion.Tpo -c -o ./src/util/vcs/magicseteditor-subversion.o `test -f './src/util/vcs/subversion.cpp' || echo '$(srcdir)/'`./src/util/vcs/subversion.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/vcs/$(DEPDIR)/magicseteditor-subversion.Tpo ./src/util/vcs/$(DEPDIR)/magicseteditor-subversion.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/vcs/subversion.cpp' object='./src/util/vcs/magicseteditor-subversion.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/vcs/magicseteditor-subversion.o `test -f './src/util/vcs/subversion.cpp' || echo '$(srcdir)/'`./src/util/vcs/subversion.cpp + +./src/util/vcs/magicseteditor-subversion.obj: ./src/util/vcs/subversion.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/vcs/magicseteditor-subversion.obj -MD -MP -MF ./src/util/vcs/$(DEPDIR)/magicseteditor-subversion.Tpo -c -o ./src/util/vcs/magicseteditor-subversion.obj `if test -f './src/util/vcs/subversion.cpp'; then $(CYGPATH_W) './src/util/vcs/subversion.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/vcs/subversion.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/vcs/$(DEPDIR)/magicseteditor-subversion.Tpo ./src/util/vcs/$(DEPDIR)/magicseteditor-subversion.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/vcs/subversion.cpp' object='./src/util/vcs/magicseteditor-subversion.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/vcs/magicseteditor-subversion.obj `if test -f './src/util/vcs/subversion.cpp'; then $(CYGPATH_W) './src/util/vcs/subversion.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/vcs/subversion.cpp'; fi` + +./src/util/magicseteditor-spec_sort.o: ./src/util/spec_sort.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/magicseteditor-spec_sort.o -MD -MP -MF ./src/util/$(DEPDIR)/magicseteditor-spec_sort.Tpo -c -o ./src/util/magicseteditor-spec_sort.o `test -f './src/util/spec_sort.cpp' || echo '$(srcdir)/'`./src/util/spec_sort.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/$(DEPDIR)/magicseteditor-spec_sort.Tpo ./src/util/$(DEPDIR)/magicseteditor-spec_sort.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/spec_sort.cpp' object='./src/util/magicseteditor-spec_sort.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/magicseteditor-spec_sort.o `test -f './src/util/spec_sort.cpp' || echo '$(srcdir)/'`./src/util/spec_sort.cpp + +./src/util/magicseteditor-spec_sort.obj: ./src/util/spec_sort.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/magicseteditor-spec_sort.obj -MD -MP -MF ./src/util/$(DEPDIR)/magicseteditor-spec_sort.Tpo -c -o ./src/util/magicseteditor-spec_sort.obj `if test -f './src/util/spec_sort.cpp'; then $(CYGPATH_W) './src/util/spec_sort.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/spec_sort.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/$(DEPDIR)/magicseteditor-spec_sort.Tpo ./src/util/$(DEPDIR)/magicseteditor-spec_sort.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/spec_sort.cpp' object='./src/util/magicseteditor-spec_sort.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/magicseteditor-spec_sort.obj `if test -f './src/util/spec_sort.cpp'; then $(CYGPATH_W) './src/util/spec_sort.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/spec_sort.cpp'; fi` + +./src/util/magicseteditor-spell_checker.o: ./src/util/spell_checker.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/magicseteditor-spell_checker.o -MD -MP -MF ./src/util/$(DEPDIR)/magicseteditor-spell_checker.Tpo -c -o ./src/util/magicseteditor-spell_checker.o `test -f './src/util/spell_checker.cpp' || echo '$(srcdir)/'`./src/util/spell_checker.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/$(DEPDIR)/magicseteditor-spell_checker.Tpo ./src/util/$(DEPDIR)/magicseteditor-spell_checker.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/spell_checker.cpp' object='./src/util/magicseteditor-spell_checker.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/magicseteditor-spell_checker.o `test -f './src/util/spell_checker.cpp' || echo '$(srcdir)/'`./src/util/spell_checker.cpp + +./src/util/magicseteditor-spell_checker.obj: ./src/util/spell_checker.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/magicseteditor-spell_checker.obj -MD -MP -MF ./src/util/$(DEPDIR)/magicseteditor-spell_checker.Tpo -c -o ./src/util/magicseteditor-spell_checker.obj `if test -f './src/util/spell_checker.cpp'; then $(CYGPATH_W) './src/util/spell_checker.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/spell_checker.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/$(DEPDIR)/magicseteditor-spell_checker.Tpo ./src/util/$(DEPDIR)/magicseteditor-spell_checker.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/spell_checker.cpp' object='./src/util/magicseteditor-spell_checker.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/magicseteditor-spell_checker.obj `if test -f './src/util/spell_checker.cpp'; then $(CYGPATH_W) './src/util/spell_checker.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/spell_checker.cpp'; fi` + +./src/util/magicseteditor-string.o: ./src/util/string.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/magicseteditor-string.o -MD -MP -MF ./src/util/$(DEPDIR)/magicseteditor-string.Tpo -c -o ./src/util/magicseteditor-string.o `test -f './src/util/string.cpp' || echo '$(srcdir)/'`./src/util/string.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/$(DEPDIR)/magicseteditor-string.Tpo ./src/util/$(DEPDIR)/magicseteditor-string.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/string.cpp' object='./src/util/magicseteditor-string.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/magicseteditor-string.o `test -f './src/util/string.cpp' || echo '$(srcdir)/'`./src/util/string.cpp + +./src/util/magicseteditor-string.obj: ./src/util/string.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/magicseteditor-string.obj -MD -MP -MF ./src/util/$(DEPDIR)/magicseteditor-string.Tpo -c -o ./src/util/magicseteditor-string.obj `if test -f './src/util/string.cpp'; then $(CYGPATH_W) './src/util/string.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/string.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/$(DEPDIR)/magicseteditor-string.Tpo ./src/util/$(DEPDIR)/magicseteditor-string.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/string.cpp' object='./src/util/magicseteditor-string.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/magicseteditor-string.obj `if test -f './src/util/string.cpp'; then $(CYGPATH_W) './src/util/string.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/string.cpp'; fi` + +./src/util/magicseteditor-tagged_string.o: ./src/util/tagged_string.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/magicseteditor-tagged_string.o -MD -MP -MF ./src/util/$(DEPDIR)/magicseteditor-tagged_string.Tpo -c -o ./src/util/magicseteditor-tagged_string.o `test -f './src/util/tagged_string.cpp' || echo '$(srcdir)/'`./src/util/tagged_string.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/$(DEPDIR)/magicseteditor-tagged_string.Tpo ./src/util/$(DEPDIR)/magicseteditor-tagged_string.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/tagged_string.cpp' object='./src/util/magicseteditor-tagged_string.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/magicseteditor-tagged_string.o `test -f './src/util/tagged_string.cpp' || echo '$(srcdir)/'`./src/util/tagged_string.cpp + +./src/util/magicseteditor-tagged_string.obj: ./src/util/tagged_string.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/magicseteditor-tagged_string.obj -MD -MP -MF ./src/util/$(DEPDIR)/magicseteditor-tagged_string.Tpo -c -o ./src/util/magicseteditor-tagged_string.obj `if test -f './src/util/tagged_string.cpp'; then $(CYGPATH_W) './src/util/tagged_string.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/tagged_string.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/$(DEPDIR)/magicseteditor-tagged_string.Tpo ./src/util/$(DEPDIR)/magicseteditor-tagged_string.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/tagged_string.cpp' object='./src/util/magicseteditor-tagged_string.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/magicseteditor-tagged_string.obj `if test -f './src/util/tagged_string.cpp'; then $(CYGPATH_W) './src/util/tagged_string.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/tagged_string.cpp'; fi` + +./src/util/magicseteditor-vcs.o: ./src/util/vcs.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/magicseteditor-vcs.o -MD -MP -MF ./src/util/$(DEPDIR)/magicseteditor-vcs.Tpo -c -o ./src/util/magicseteditor-vcs.o `test -f './src/util/vcs.cpp' || echo '$(srcdir)/'`./src/util/vcs.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/$(DEPDIR)/magicseteditor-vcs.Tpo ./src/util/$(DEPDIR)/magicseteditor-vcs.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/vcs.cpp' object='./src/util/magicseteditor-vcs.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/magicseteditor-vcs.o `test -f './src/util/vcs.cpp' || echo '$(srcdir)/'`./src/util/vcs.cpp + +./src/util/magicseteditor-vcs.obj: ./src/util/vcs.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/magicseteditor-vcs.obj -MD -MP -MF ./src/util/$(DEPDIR)/magicseteditor-vcs.Tpo -c -o ./src/util/magicseteditor-vcs.obj `if test -f './src/util/vcs.cpp'; then $(CYGPATH_W) './src/util/vcs.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/vcs.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/$(DEPDIR)/magicseteditor-vcs.Tpo ./src/util/$(DEPDIR)/magicseteditor-vcs.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/vcs.cpp' object='./src/util/magicseteditor-vcs.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/magicseteditor-vcs.obj `if test -f './src/util/vcs.cpp'; then $(CYGPATH_W) './src/util/vcs.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/vcs.cpp'; fi` + +./src/util/magicseteditor-version.o: ./src/util/version.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/magicseteditor-version.o -MD -MP -MF ./src/util/$(DEPDIR)/magicseteditor-version.Tpo -c -o ./src/util/magicseteditor-version.o `test -f './src/util/version.cpp' || echo '$(srcdir)/'`./src/util/version.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/$(DEPDIR)/magicseteditor-version.Tpo ./src/util/$(DEPDIR)/magicseteditor-version.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/version.cpp' object='./src/util/magicseteditor-version.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/magicseteditor-version.o `test -f './src/util/version.cpp' || echo '$(srcdir)/'`./src/util/version.cpp + +./src/util/magicseteditor-version.obj: ./src/util/version.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/magicseteditor-version.obj -MD -MP -MF ./src/util/$(DEPDIR)/magicseteditor-version.Tpo -c -o ./src/util/magicseteditor-version.obj `if test -f './src/util/version.cpp'; then $(CYGPATH_W) './src/util/version.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/version.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/$(DEPDIR)/magicseteditor-version.Tpo ./src/util/$(DEPDIR)/magicseteditor-version.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/version.cpp' object='./src/util/magicseteditor-version.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/magicseteditor-version.obj `if test -f './src/util/version.cpp'; then $(CYGPATH_W) './src/util/version.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/version.cpp'; fi` + +./src/util/magicseteditor-action_stack.o: ./src/util/action_stack.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/magicseteditor-action_stack.o -MD -MP -MF ./src/util/$(DEPDIR)/magicseteditor-action_stack.Tpo -c -o ./src/util/magicseteditor-action_stack.o `test -f './src/util/action_stack.cpp' || echo '$(srcdir)/'`./src/util/action_stack.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/$(DEPDIR)/magicseteditor-action_stack.Tpo ./src/util/$(DEPDIR)/magicseteditor-action_stack.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/action_stack.cpp' object='./src/util/magicseteditor-action_stack.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/magicseteditor-action_stack.o `test -f './src/util/action_stack.cpp' || echo '$(srcdir)/'`./src/util/action_stack.cpp + +./src/util/magicseteditor-action_stack.obj: ./src/util/action_stack.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/magicseteditor-action_stack.obj -MD -MP -MF ./src/util/$(DEPDIR)/magicseteditor-action_stack.Tpo -c -o ./src/util/magicseteditor-action_stack.obj `if test -f './src/util/action_stack.cpp'; then $(CYGPATH_W) './src/util/action_stack.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/action_stack.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/$(DEPDIR)/magicseteditor-action_stack.Tpo ./src/util/$(DEPDIR)/magicseteditor-action_stack.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/action_stack.cpp' object='./src/util/magicseteditor-action_stack.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/magicseteditor-action_stack.obj `if test -f './src/util/action_stack.cpp'; then $(CYGPATH_W) './src/util/action_stack.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/action_stack.cpp'; fi` + +./src/util/magicseteditor-age.o: ./src/util/age.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/magicseteditor-age.o -MD -MP -MF ./src/util/$(DEPDIR)/magicseteditor-age.Tpo -c -o ./src/util/magicseteditor-age.o `test -f './src/util/age.cpp' || echo '$(srcdir)/'`./src/util/age.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/$(DEPDIR)/magicseteditor-age.Tpo ./src/util/$(DEPDIR)/magicseteditor-age.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/age.cpp' object='./src/util/magicseteditor-age.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/magicseteditor-age.o `test -f './src/util/age.cpp' || echo '$(srcdir)/'`./src/util/age.cpp + +./src/util/magicseteditor-age.obj: ./src/util/age.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/magicseteditor-age.obj -MD -MP -MF ./src/util/$(DEPDIR)/magicseteditor-age.Tpo -c -o ./src/util/magicseteditor-age.obj `if test -f './src/util/age.cpp'; then $(CYGPATH_W) './src/util/age.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/age.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/$(DEPDIR)/magicseteditor-age.Tpo ./src/util/$(DEPDIR)/magicseteditor-age.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/age.cpp' object='./src/util/magicseteditor-age.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/magicseteditor-age.obj `if test -f './src/util/age.cpp'; then $(CYGPATH_W) './src/util/age.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/age.cpp'; fi` + +./src/util/magicseteditor-alignment.o: ./src/util/alignment.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/magicseteditor-alignment.o -MD -MP -MF ./src/util/$(DEPDIR)/magicseteditor-alignment.Tpo -c -o ./src/util/magicseteditor-alignment.o `test -f './src/util/alignment.cpp' || echo '$(srcdir)/'`./src/util/alignment.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/$(DEPDIR)/magicseteditor-alignment.Tpo ./src/util/$(DEPDIR)/magicseteditor-alignment.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/alignment.cpp' object='./src/util/magicseteditor-alignment.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/magicseteditor-alignment.o `test -f './src/util/alignment.cpp' || echo '$(srcdir)/'`./src/util/alignment.cpp + +./src/util/magicseteditor-alignment.obj: ./src/util/alignment.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/magicseteditor-alignment.obj -MD -MP -MF ./src/util/$(DEPDIR)/magicseteditor-alignment.Tpo -c -o ./src/util/magicseteditor-alignment.obj `if test -f './src/util/alignment.cpp'; then $(CYGPATH_W) './src/util/alignment.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/alignment.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/$(DEPDIR)/magicseteditor-alignment.Tpo ./src/util/$(DEPDIR)/magicseteditor-alignment.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/alignment.cpp' object='./src/util/magicseteditor-alignment.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/magicseteditor-alignment.obj `if test -f './src/util/alignment.cpp'; then $(CYGPATH_W) './src/util/alignment.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/alignment.cpp'; fi` + +./src/util/magicseteditor-error.o: ./src/util/error.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/magicseteditor-error.o -MD -MP -MF ./src/util/$(DEPDIR)/magicseteditor-error.Tpo -c -o ./src/util/magicseteditor-error.o `test -f './src/util/error.cpp' || echo '$(srcdir)/'`./src/util/error.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/$(DEPDIR)/magicseteditor-error.Tpo ./src/util/$(DEPDIR)/magicseteditor-error.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/error.cpp' object='./src/util/magicseteditor-error.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/magicseteditor-error.o `test -f './src/util/error.cpp' || echo '$(srcdir)/'`./src/util/error.cpp + +./src/util/magicseteditor-error.obj: ./src/util/error.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/magicseteditor-error.obj -MD -MP -MF ./src/util/$(DEPDIR)/magicseteditor-error.Tpo -c -o ./src/util/magicseteditor-error.obj `if test -f './src/util/error.cpp'; then $(CYGPATH_W) './src/util/error.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/error.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/$(DEPDIR)/magicseteditor-error.Tpo ./src/util/$(DEPDIR)/magicseteditor-error.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/error.cpp' object='./src/util/magicseteditor-error.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/magicseteditor-error.obj `if test -f './src/util/error.cpp'; then $(CYGPATH_W) './src/util/error.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/error.cpp'; fi` + +./src/util/magicseteditor-file_utils.o: ./src/util/file_utils.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/magicseteditor-file_utils.o -MD -MP -MF ./src/util/$(DEPDIR)/magicseteditor-file_utils.Tpo -c -o ./src/util/magicseteditor-file_utils.o `test -f './src/util/file_utils.cpp' || echo '$(srcdir)/'`./src/util/file_utils.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/$(DEPDIR)/magicseteditor-file_utils.Tpo ./src/util/$(DEPDIR)/magicseteditor-file_utils.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/file_utils.cpp' object='./src/util/magicseteditor-file_utils.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/magicseteditor-file_utils.o `test -f './src/util/file_utils.cpp' || echo '$(srcdir)/'`./src/util/file_utils.cpp + +./src/util/magicseteditor-file_utils.obj: ./src/util/file_utils.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/magicseteditor-file_utils.obj -MD -MP -MF ./src/util/$(DEPDIR)/magicseteditor-file_utils.Tpo -c -o ./src/util/magicseteditor-file_utils.obj `if test -f './src/util/file_utils.cpp'; then $(CYGPATH_W) './src/util/file_utils.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/file_utils.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/$(DEPDIR)/magicseteditor-file_utils.Tpo ./src/util/$(DEPDIR)/magicseteditor-file_utils.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/file_utils.cpp' object='./src/util/magicseteditor-file_utils.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/magicseteditor-file_utils.obj `if test -f './src/util/file_utils.cpp'; then $(CYGPATH_W) './src/util/file_utils.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/file_utils.cpp'; fi` + +./src/util/magicseteditor-regex.o: ./src/util/regex.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/magicseteditor-regex.o -MD -MP -MF ./src/util/$(DEPDIR)/magicseteditor-regex.Tpo -c -o ./src/util/magicseteditor-regex.o `test -f './src/util/regex.cpp' || echo '$(srcdir)/'`./src/util/regex.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/$(DEPDIR)/magicseteditor-regex.Tpo ./src/util/$(DEPDIR)/magicseteditor-regex.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/regex.cpp' object='./src/util/magicseteditor-regex.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/magicseteditor-regex.o `test -f './src/util/regex.cpp' || echo '$(srcdir)/'`./src/util/regex.cpp + +./src/util/magicseteditor-regex.obj: ./src/util/regex.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/magicseteditor-regex.obj -MD -MP -MF ./src/util/$(DEPDIR)/magicseteditor-regex.Tpo -c -o ./src/util/magicseteditor-regex.obj `if test -f './src/util/regex.cpp'; then $(CYGPATH_W) './src/util/regex.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/regex.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/$(DEPDIR)/magicseteditor-regex.Tpo ./src/util/$(DEPDIR)/magicseteditor-regex.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/regex.cpp' object='./src/util/magicseteditor-regex.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/magicseteditor-regex.obj `if test -f './src/util/regex.cpp'; then $(CYGPATH_W) './src/util/regex.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/regex.cpp'; fi` + +./src/util/magicseteditor-rotation.o: ./src/util/rotation.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/magicseteditor-rotation.o -MD -MP -MF ./src/util/$(DEPDIR)/magicseteditor-rotation.Tpo -c -o ./src/util/magicseteditor-rotation.o `test -f './src/util/rotation.cpp' || echo '$(srcdir)/'`./src/util/rotation.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/$(DEPDIR)/magicseteditor-rotation.Tpo ./src/util/$(DEPDIR)/magicseteditor-rotation.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/rotation.cpp' object='./src/util/magicseteditor-rotation.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/magicseteditor-rotation.o `test -f './src/util/rotation.cpp' || echo '$(srcdir)/'`./src/util/rotation.cpp + +./src/util/magicseteditor-rotation.obj: ./src/util/rotation.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/util/magicseteditor-rotation.obj -MD -MP -MF ./src/util/$(DEPDIR)/magicseteditor-rotation.Tpo -c -o ./src/util/magicseteditor-rotation.obj `if test -f './src/util/rotation.cpp'; then $(CYGPATH_W) './src/util/rotation.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/rotation.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/util/$(DEPDIR)/magicseteditor-rotation.Tpo ./src/util/$(DEPDIR)/magicseteditor-rotation.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/util/rotation.cpp' object='./src/util/magicseteditor-rotation.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/util/magicseteditor-rotation.obj `if test -f './src/util/rotation.cpp'; then $(CYGPATH_W) './src/util/rotation.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/util/rotation.cpp'; fi` + +./src/magicseteditor-code_template.o: ./src/code_template.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/magicseteditor-code_template.o -MD -MP -MF ./src/$(DEPDIR)/magicseteditor-code_template.Tpo -c -o ./src/magicseteditor-code_template.o `test -f './src/code_template.cpp' || echo '$(srcdir)/'`./src/code_template.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/$(DEPDIR)/magicseteditor-code_template.Tpo ./src/$(DEPDIR)/magicseteditor-code_template.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/code_template.cpp' object='./src/magicseteditor-code_template.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/magicseteditor-code_template.o `test -f './src/code_template.cpp' || echo '$(srcdir)/'`./src/code_template.cpp + +./src/magicseteditor-code_template.obj: ./src/code_template.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/magicseteditor-code_template.obj -MD -MP -MF ./src/$(DEPDIR)/magicseteditor-code_template.Tpo -c -o ./src/magicseteditor-code_template.obj `if test -f './src/code_template.cpp'; then $(CYGPATH_W) './src/code_template.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/code_template.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/$(DEPDIR)/magicseteditor-code_template.Tpo ./src/$(DEPDIR)/magicseteditor-code_template.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/code_template.cpp' object='./src/magicseteditor-code_template.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/magicseteditor-code_template.obj `if test -f './src/code_template.cpp'; then $(CYGPATH_W) './src/code_template.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/code_template.cpp'; fi` + +./src/magicseteditor-main.o: ./src/main.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/magicseteditor-main.o -MD -MP -MF ./src/$(DEPDIR)/magicseteditor-main.Tpo -c -o ./src/magicseteditor-main.o `test -f './src/main.cpp' || echo '$(srcdir)/'`./src/main.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/$(DEPDIR)/magicseteditor-main.Tpo ./src/$(DEPDIR)/magicseteditor-main.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/main.cpp' object='./src/magicseteditor-main.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/magicseteditor-main.o `test -f './src/main.cpp' || echo '$(srcdir)/'`./src/main.cpp + +./src/magicseteditor-main.obj: ./src/main.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -MT ./src/magicseteditor-main.obj -MD -MP -MF ./src/$(DEPDIR)/magicseteditor-main.Tpo -c -o ./src/magicseteditor-main.obj `if test -f './src/main.cpp'; then $(CYGPATH_W) './src/main.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/main.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ./src/$(DEPDIR)/magicseteditor-main.Tpo ./src/$(DEPDIR)/magicseteditor-main.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='./src/main.cpp' object='./src/magicseteditor-main.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(magicseteditor_CXXFLAGS) $(CXXFLAGS) -c -o ./src/magicseteditor-main.obj `if test -f './src/main.cpp'; then $(CYGPATH_W) './src/main.cpp'; else $(CYGPATH_W) '$(srcdir)/./src/main.cpp'; fi` ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique