EasyRPG / Player

RPG Maker 2000/2003 and EasyRPG games interpreter
https://easyrpg.org/player/
GNU General Public License v3.0
1.01k stars 192 forks source link

Can't build on Mac OS X #409

Closed BlisterB closed 9 years ago

BlisterB commented 9 years ago

Hi, I'm trying to build the Player on Mac OS following the documentation but when using "./configure --prefix=/usr" it stops with this message : "checking boost/foreach.hpp usability... no checking boost/foreach.hpp presence... no checking for boost/foreach.hpp... no configure: error: 'boost' is required but it doesn't seem to be installed on this system."

Maybe this is just an error in the documentation, but boost was installed fine with brew

fdelapena commented 9 years ago

Could you paste the output of brew info boost ?

BlisterB commented 9 years ago

Of course :

boost: stable 1.57.0 (bottled), HEAD http://www.boost.org /usr/local/Cellar/boost/1.57.0 (10572 files, 439M) * Poured from bottle From: https://github.com/Homebrew/homebrew/blob/master/Library/Formula/boost.rb ==> Dependencies Optional: icu4c ✔ ==> Options --c++11 Build using C++11 mode --universal Build a universal binary --with-icu4c Build regexp engine with icu support --with-mpi Build with MPI support --without-single Disable building single-threading variant --without-static Disable building static library variant --HEAD Install HEAD version

fdelapena commented 9 years ago

Thanks, could you retry with this line?

./configure --prefix=/usr CFLAGS="-I/usr/local/Cellar/boost/1.57.0/include" LDFLAGS="-L/usr/local/Cellar/boost/1.57.0/lib"

BlisterB commented 9 years ago

Still the same error problem :/

fdelapena commented 9 years ago

Try commenting out or removing the line 42 of configure.ac Regenerate the configure script with autoreconf -i Then retry ./configure --prefix=/usr

BlisterB commented 9 years ago

Yay /o/ ./configure now terminated

But make does an error :

/Applications/Xcode.app/Contents/Developer/usr/bin/make all-recursive Making all in src CXX easyrpg_player-al_audio.o CXX easyrpg_player-audio.o In file included from audio.cpp:19: ./audio.h:23:10: fatal error: 'boost/noncopyable.hpp' file not found

include <boost/noncopyable.hpp>

     ^

1 error generated. make[2]: * [easyrpg_player-audio.o] Error 1 make[1]: * [all-recursive] Error 1 make: *\ [all] Error 2

fdelapena commented 9 years ago

OK, please retry again with the previous method:

./configure --prefix=/usr CFLAGS="-I/usr/local/Cellar/boost/1.57.0/include" LDFLAGS="-L/usr/local/Cellar/boost/1.57.0/lib"

BlisterB commented 9 years ago

Not sure to understand, you want me to do the same thing with the line 42 ?

With the line, I have the error message of ./configure : "checking boost/foreach.hpp presence... no checking for boost/foreach.hpp... no configure: error: 'boost' is required but it doesn't seem to be installed on this system."

Without the line, ./configure terminate but I still have the previous make error.

Please excuse me I think I didn't understood your request.

fdelapena commented 9 years ago

The line 42 of configure.ac disables a boost header availability check. It is not finding boost/foreach.hpp file in existing include paths. When passing the CFLAGS argument to ./configure, the -I option adds the include path to the search path list to check the availability of the boost/foreach.hpp file.

To discard a configure script issue, when trying the ./configure with CFLAGS and LIBS arguments after skipping the line 42 maybe works when doing make, as the check has been disabled in configure.

In other words, try the ./configure with CFLAGS and LIBS without re-enabling the line 42.

Also, it could be nice to check manually if the /usr/local/Cellar/boost/1.57.0/include/boost/foreach.hpp file exists in your system, just in case.

BlisterB commented 9 years ago

Thanks for the explanation :). So ./configure terminate without problem but make have this probleme with #include <boost/noncopyable.hpp>.

I checked and both foreach.hpp and noncopyable.hpp are in the directorie.

ls /usr/local/Cellar/boost/1.57.0/include/boost/ accumulators algorithm align align.hpp aligned_storage.hpp any.hpp archive array.hpp asio asio.hpp assert.hpp assign assign.hpp atomic atomic.hpp bimap bimap.hpp bind bind.hpp blank.hpp blank_fwd.hpp call_traits.hpp cast.hpp cerrno.hpp checked_delete.hpp chrono chrono.hpp circular_buffer circular_buffer.hpp circular_buffer_fwd.hpp compatibility compressed_pair.hpp concept concept_archetype.hpp concept_check concept_check.hpp config config.hpp container context core coroutine crc.hpp cregex.hpp cstdfloat.hpp cstdint.hpp cstdlib.hpp current_function.hpp date_time date_time.hpp detail dynamic_bitset dynamic_bitset.hpp dynamic_bitset_fwd.hpp enable_shared_from_this.hpp exception exception_ptr.hpp filesystem filesystem.hpp flyweight flyweight.hpp foreach.hpp foreach_fwd.hpp format format.hpp function function.hpp function_equal.hpp function_output_iterator.hpp function_types functional functional.hpp fusion generator_iterator.hpp geometry geometry.hpp get_pointer.hpp gil graph heap icl implicit_cast.hpp indirect_reference.hpp integer integer.hpp integer_fwd.hpp integer_traits.hpp interprocess intrusive intrusive_ptr.hpp io io_fwd.hpp iostreams is_placeholder.hpp iterator iterator.hpp iterator_adaptors.hpp lambda last_value.hpp lexical_cast lexical_cast.hpp limits.hpp local_function local_function.hpp locale locale.hpp lockfree log logic make_shared.hpp make_unique.hpp math math_fwd.hpp mem_fn.hpp memory_order.hpp move mpi mpi.hpp mpl msm multi_array multi_array.hpp multi_index multi_index_container.hpp multi_index_container_fwd.hpp multiprecision next_prior.hpp non_type.hpp noncopyable.hpp nondet_random.hpp none.hpp none_t.hpp numeric operators.hpp optional optional.hpp parameter parameter.hpp pending phoenix phoenix.hpp pointee.hpp pointer_cast.hpp pointer_to_other.hpp polygon polymorphic_cast.hpp pool predef predef.h preprocessor preprocessor.hpp program_options program_options.hpp progress.hpp property_map property_tree proto ptr_container python python.hpp random random.hpp range range.hpp ratio ratio.hpp rational.hpp ref.hpp regex regex.h regex.hpp regex_fwd.hpp scope_exit.hpp scoped_array.hpp scoped_ptr.hpp serialization shared_array.hpp shared_container_iterator.hpp shared_ptr.hpp signal.hpp signals signals.hpp signals2 signals2.hpp smart_ptr smart_ptr.hpp spirit spirit.hpp statechart static_assert.hpp strong_typedef.hpp swap.hpp system test thread thread.hpp throw_exception.hpp timer timer.hpp token_functions.hpp token_iterator.hpp tokenizer.hpp tr1 tti tuple type.hpp type_erasure type_index type_index.hpp type_traits type_traits.hpp typeof units unordered unordered_map.hpp unordered_set.hpp utility utility.hpp uuid variant variant.hpp version.hpp visit_each.hpp wave wave.hpp weak_ptr.hpp xpressive

fdelapena commented 9 years ago

Then the make executed after ./configure --prefix=/usr CFLAGS="-I/usr/local/Cellar/boost/1.57.0/include" LDFLAGS="-L/usr/local/Cellar/boost/1.57.0/lib" is still failing? Strange...

To debug how the C++ compiler is receiving the header paths set by CFLAGS you can run it in verbose mode (non-silent) with:

make V=1

And paste some compile lines.

BlisterB commented 9 years ago

I also found this akward.

Here is the result of make V=1, if found no mention of boost in the g++ command, don't if it's normal :

/Applications/Xcode.app/Contents/Developer/usr/bin/make all-recursive Making all in src g++ -DHAVE_CONFIG_H -I. -I.. -I./../lib/shinonome -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1 -I/usr/local/Cellar/freetype/2.5.5/include/freetype2 -D_THREAD_SAFE -I/usr/local/include/SDL2 -D_THREAD_SAFE -I/usr/local/include/SDL2 -I/usr/local/Cellar/libpng/1.6.16/include/libpng16 -g -O2 -MT easyrpg_player-al_audio.o -MD -MP -MF .deps/easyrpg_player-al_audio.Tpo -c -o easyrpg_player-al_audio.o test -f 'al_audio.cpp' || echo './'al_audio.cpp mv -f .deps/easyrpg_player-al_audio.Tpo .deps/easyrpg_player-al_audio.Po g++ -DHAVE_CONFIG_H -I. -I.. -I./../lib/shinonome -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1 -I/usr/local/Cellar/freetype/2.5.5/include/freetype2 -D_THREAD_SAFE -I/usr/local/include/SDL2 -D_THREAD_SAFE -I/usr/local/include/SDL2 -I/usr/local/Cellar/libpng/1.6.16/include/libpng16 -g -O2 -MT easyrpg_player-audio.o -MD -MP -MF .deps/easyrpg_player-audio.Tpo -c -o easyrpg_player-audio.o test -f 'audio.cpp' || echo './'audio.cpp In file included from audio.cpp:19: ./audio.h:23:10: fatal error: 'boost/noncopyable.hpp' file not found

include <boost/noncopyable.hpp>

     ^

1 error generated. make[2]: * [easyrpg_player-audio.o] Error 1 make[1]: * [all-recursive] Error 1 make: *\ [all] Error 2

BlisterB commented 9 years ago

A cleaner version : http://img11.hostingpics.net/pics/775398Capturedcran20150130165659.png

fdelapena commented 9 years ago

Looks like there is an issue with Mac OS X arguments. Try this alternate way, setting vars before configure:

CFLAGS="-I/usr/local/Cellar/boost/1.57.0/include" LDFLAGS="-L/usr/local/Cellar/boost/1.57.0/lib" ./configure --prefix=/usr
BlisterB commented 9 years ago

Always the same problem. To be more precise when I do the make j4 V=1 this is what it output :

/Applications/Xcode.app/Contents/Developer/usr/bin/make  all-recursive
Making all in src
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -g -O2 -MT easyrpg_player-audio.o -MD -MP -MF .deps/easyrpg_player-audio.Tpo -c -o easyrpg_player-audio.o `test -f 'audio.cpp' || echo './'`audio.cpp
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -g -O2 -MT easyrpg_player-background.o -MD -MP -MF .deps/easyrpg_player-background.Tpo -c -o easyrpg_player-background.o `test -f 'background.cpp' || echo './'`background.cpp
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -g -O2 -MT easyrpg_player-baseui.o -MD -MP -MF .deps/easyrpg_player-baseui.Tpo -c -o easyrpg_player-baseui.o `test -f 'baseui.cpp' || echo './'`baseui.cpp
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -g -O2 -MT easyrpg_player-battle_animation.o -MD -MP -MF .deps/easyrpg_player-battle_animation.Tpo -c -o easyrpg_player-battle_animation.o `test -f 'battle_animation.cpp' || echo './'`battle_animation.cpp
In file included from audio.cpp:19:
./audio.h:23:10: fatal error: 'boost/noncopyable.hpp' file not found
#include <boost/noncopyable.hpp>
         ^
In file included from baseui.cpp:19:
In file included from ./baseui.h:25:
In file included from ./system.h:44:
./memory_management.h:23:10: fatal error: 'boost/config.hpp' file not found
#include <boost/config.hpp>
         ^
In file included from battle_animation.cpp:18:
In file included from ./bitmap.h:28:
In file included from ./system.h:44:
./memory_management.h:23:10: fatal error: 'boost/config.hpp' file not found
#include <boost/config.hpp>
         ^
1 error generated.
make[2]: *** [easyrpg_player-audio.o] Error 1
make[2]: *** Waiting for unfinished jobs....
In file included from background.cpp:22:
In file included from ./baseui.h:25:
In file included from ./system.h:44:
./memory_management.h:23:10: fatal error: 'boost/config.hpp' file not found
#include <boost/config.hpp>
         ^
1 error generated.
make[2]: *** [easyrpg_player-battle_animation.o] Error 1
1 error generated.
make[2]: *** [easyrpg_player-baseui.o] Error 1
1 error generated.
make[2]: *** [easyrpg_player-background.o] Error 1
make[1]: *** [all-recursive] Error 1
make: *** [all] Error 2
fdelapena commented 9 years ago

The last try but I guess it won't work anyways:

export CFLAGS=-I/usr/local/Cellar/boost/1.57.0/include export LDFLAGS=-L/usr/local/Cellar/boost/1.57.0/lib ./configure --prefix=/usr

Another attempt is to pass CFLAGS and LDFLAGS to make, e.g. make CFLAGS="-I/usr/local/Cellar/boost/1.57.0/include" LDFLAGS="-L/usr/local/Cellar/boost/1.57.0/lib" V=1

BlisterB commented 9 years ago

Huum always the same issue :/.

BlisterB commented 9 years ago

Apple doesn't like free software and has found a way to tell us haha.

Ghabry commented 9 years ago

Try CXXFLAGS and CPPFLAGS instead of CFLAGS

BlisterB commented 9 years ago

It worked ! It has compiled a lot of file, but ended with a linked command fail.

Here is the result of make -j4 V=1 :

/Applications/Xcode.app/Contents/Developer/usr/bin/make  all-recursive
Making all in src
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-al_audio.o -MD -MP -MF .deps/easyrpg_player-al_audio.Tpo -c -o easyrpg_player-al_audio.o `test -f 'al_audio.cpp' || echo './'`al_audio.cpp
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-audio.o -MD -MP -MF .deps/easyrpg_player-audio.Tpo -c -o easyrpg_player-audio.o `test -f 'audio.cpp' || echo './'`audio.cpp
mv -f .deps/easyrpg_player-al_audio.Tpo .deps/easyrpg_player-al_audio.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-background.o -MD -MP -MF .deps/easyrpg_player-background.Tpo -c -o easyrpg_player-background.o `test -f 'background.cpp' || echo './'`background.cpp
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-baseui.o -MD -MP -MF .deps/easyrpg_player-baseui.Tpo -c -o easyrpg_player-baseui.o `test -f 'baseui.cpp' || echo './'`baseui.cpp
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-battle_animation.o -MD -MP -MF .deps/easyrpg_player-battle_animation.Tpo -c -o easyrpg_player-battle_animation.o `test -f 'battle_animation.cpp' || echo './'`battle_animation.cpp
mv -f .deps/easyrpg_player-audio.Tpo .deps/easyrpg_player-audio.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-bitmap.o -MD -MP -MF .deps/easyrpg_player-bitmap.Tpo -c -o easyrpg_player-bitmap.o `test -f 'bitmap.cpp' || echo './'`bitmap.cpp
mv -f .deps/easyrpg_player-baseui.Tpo .deps/easyrpg_player-baseui.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-cache.o -MD -MP -MF .deps/easyrpg_player-cache.Tpo -c -o easyrpg_player-cache.o `test -f 'cache.cpp' || echo './'`cache.cpp
mv -f .deps/easyrpg_player-background.Tpo .deps/easyrpg_player-background.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-color.o -MD -MP -MF .deps/easyrpg_player-color.Tpo -c -o easyrpg_player-color.o `test -f 'color.cpp' || echo './'`color.cpp
mv -f .deps/easyrpg_player-color.Tpo .deps/easyrpg_player-color.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-effects.o -MD -MP -MF .deps/easyrpg_player-effects.Tpo -c -o easyrpg_player-effects.o `test -f 'effects.cpp' || echo './'`effects.cpp
mv -f .deps/easyrpg_player-battle_animation.Tpo .deps/easyrpg_player-battle_animation.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-filefinder.o -MD -MP -MF .deps/easyrpg_player-filefinder.Tpo -c -o easyrpg_player-filefinder.o `test -f 'filefinder.cpp' || echo './'`filefinder.cpp
mv -f .deps/easyrpg_player-effects.Tpo .deps/easyrpg_player-effects.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-font.o -MD -MP -MF .deps/easyrpg_player-font.Tpo -c -o easyrpg_player-font.o `test -f 'font.cpp' || echo './'`font.cpp
mv -f .deps/easyrpg_player-bitmap.Tpo .deps/easyrpg_player-bitmap.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-game_actor.o -MD -MP -MF .deps/easyrpg_player-game_actor.Tpo -c -o easyrpg_player-game_actor.o `test -f 'game_actor.cpp' || echo './'`game_actor.cpp
mv -f .deps/easyrpg_player-cache.Tpo .deps/easyrpg_player-cache.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-game_actors.o -MD -MP -MF .deps/easyrpg_player-game_actors.Tpo -c -o easyrpg_player-game_actors.o `test -f 'game_actors.cpp' || echo './'`game_actors.cpp
mv -f .deps/easyrpg_player-font.Tpo .deps/easyrpg_player-font.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-game_battle.o -MD -MP -MF .deps/easyrpg_player-game_battle.Tpo -c -o easyrpg_player-game_battle.o `test -f 'game_battle.cpp' || echo './'`game_battle.cpp
mv -f .deps/easyrpg_player-game_actors.Tpo .deps/easyrpg_player-game_actors.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-game_battlealgorithm.o -MD -MP -MF .deps/easyrpg_player-game_battlealgorithm.Tpo -c -o easyrpg_player-game_battlealgorithm.o `test -f 'game_battlealgorithm.cpp' || echo './'`game_battlealgorithm.cpp
mv -f .deps/easyrpg_player-game_actor.Tpo .deps/easyrpg_player-game_actor.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-game_battler.o -MD -MP -MF .deps/easyrpg_player-game_battler.Tpo -c -o easyrpg_player-game_battler.o `test -f 'game_battler.cpp' || echo './'`game_battler.cpp
mv -f .deps/easyrpg_player-game_battle.Tpo .deps/easyrpg_player-game_battle.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-game_character.o -MD -MP -MF .deps/easyrpg_player-game_character.Tpo -c -o easyrpg_player-game_character.o `test -f 'game_character.cpp' || echo './'`game_character.cpp
mv -f .deps/easyrpg_player-game_battler.Tpo .deps/easyrpg_player-game_battler.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-game_commonevent.o -MD -MP -MF .deps/easyrpg_player-game_commonevent.Tpo -c -o easyrpg_player-game_commonevent.o `test -f 'game_commonevent.cpp' || echo './'`game_commonevent.cpp
mv -f .deps/easyrpg_player-game_battlealgorithm.Tpo .deps/easyrpg_player-game_battlealgorithm.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-game_enemy.o -MD -MP -MF .deps/easyrpg_player-game_enemy.Tpo -c -o easyrpg_player-game_enemy.o `test -f 'game_enemy.cpp' || echo './'`game_enemy.cpp
mv -f .deps/easyrpg_player-game_character.Tpo .deps/easyrpg_player-game_character.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-game_enemyparty.o -MD -MP -MF .deps/easyrpg_player-game_enemyparty.Tpo -c -o easyrpg_player-game_enemyparty.o `test -f 'game_enemyparty.cpp' || echo './'`game_enemyparty.cpp
mv -f .deps/easyrpg_player-game_commonevent.Tpo .deps/easyrpg_player-game_commonevent.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-game_event.o -MD -MP -MF .deps/easyrpg_player-game_event.Tpo -c -o easyrpg_player-game_event.o `test -f 'game_event.cpp' || echo './'`game_event.cpp
mv -f .deps/easyrpg_player-game_enemy.Tpo .deps/easyrpg_player-game_enemy.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-game_interpreter_battle.o -MD -MP -MF .deps/easyrpg_player-game_interpreter_battle.Tpo -c -o easyrpg_player-game_interpreter_battle.o `test -f 'game_interpreter_battle.cpp' || echo './'`game_interpreter_battle.cpp
mv -f .deps/easyrpg_player-game_enemyparty.Tpo .deps/easyrpg_player-game_enemyparty.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-game_interpreter.o -MD -MP -MF .deps/easyrpg_player-game_interpreter.Tpo -c -o easyrpg_player-game_interpreter.o `test -f 'game_interpreter.cpp' || echo './'`game_interpreter.cpp
mv -f .deps/easyrpg_player-filefinder.Tpo .deps/easyrpg_player-filefinder.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-game_interpreter_map.o -MD -MP -MF .deps/easyrpg_player-game_interpreter_map.Tpo -c -o easyrpg_player-game_interpreter_map.o `test -f 'game_interpreter_map.cpp' || echo './'`game_interpreter_map.cpp
mv -f .deps/easyrpg_player-game_event.Tpo .deps/easyrpg_player-game_event.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-game_map.o -MD -MP -MF .deps/easyrpg_player-game_map.Tpo -c -o easyrpg_player-game_map.o `test -f 'game_map.cpp' || echo './'`game_map.cpp
mv -f .deps/easyrpg_player-game_interpreter_battle.Tpo .deps/easyrpg_player-game_interpreter_battle.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-game_message.o -MD -MP -MF .deps/easyrpg_player-game_message.Tpo -c -o easyrpg_player-game_message.o `test -f 'game_message.cpp' || echo './'`game_message.cpp
mv -f .deps/easyrpg_player-game_message.Tpo .deps/easyrpg_player-game_message.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-game_party.o -MD -MP -MF .deps/easyrpg_player-game_party.Tpo -c -o easyrpg_player-game_party.o `test -f 'game_party.cpp' || echo './'`game_party.cpp
mv -f .deps/easyrpg_player-game_interpreter.Tpo .deps/easyrpg_player-game_interpreter.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-game_party_base.o -MD -MP -MF .deps/easyrpg_player-game_party_base.Tpo -c -o easyrpg_player-game_party_base.o `test -f 'game_party_base.cpp' || echo './'`game_party_base.cpp
mv -f .deps/easyrpg_player-game_party.Tpo .deps/easyrpg_player-game_party.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-game_picture.o -MD -MP -MF .deps/easyrpg_player-game_picture.Tpo -c -o easyrpg_player-game_picture.o `test -f 'game_picture.cpp' || echo './'`game_picture.cpp
mv -f .deps/easyrpg_player-game_party_base.Tpo .deps/easyrpg_player-game_party_base.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-game_player.o -MD -MP -MF .deps/easyrpg_player-game_player.Tpo -c -o easyrpg_player-game_player.o `test -f 'game_player.cpp' || echo './'`game_player.cpp
mv -f .deps/easyrpg_player-game_interpreter_map.Tpo .deps/easyrpg_player-game_interpreter_map.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-game_screen.o -MD -MP -MF .deps/easyrpg_player-game_screen.Tpo -c -o easyrpg_player-game_screen.o `test -f 'game_screen.cpp' || echo './'`game_screen.cpp
mv -f .deps/easyrpg_player-game_picture.Tpo .deps/easyrpg_player-game_picture.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-game_system.o -MD -MP -MF .deps/easyrpg_player-game_system.Tpo -c -o easyrpg_player-game_system.o `test -f 'game_system.cpp' || echo './'`game_system.cpp
mv -f .deps/easyrpg_player-game_map.Tpo .deps/easyrpg_player-game_map.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-game_targets.o -MD -MP -MF .deps/easyrpg_player-game_targets.Tpo -c -o easyrpg_player-game_targets.o `test -f 'game_targets.cpp' || echo './'`game_targets.cpp
mv -f .deps/easyrpg_player-game_player.Tpo .deps/easyrpg_player-game_player.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-game_temp.o -MD -MP -MF .deps/easyrpg_player-game_temp.Tpo -c -o easyrpg_player-game_temp.o `test -f 'game_temp.cpp' || echo './'`game_temp.cpp
mv -f .deps/easyrpg_player-game_system.Tpo .deps/easyrpg_player-game_system.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-game_vehicle.o -MD -MP -MF .deps/easyrpg_player-game_vehicle.Tpo -c -o easyrpg_player-game_vehicle.o `test -f 'game_vehicle.cpp' || echo './'`game_vehicle.cpp
mv -f .deps/easyrpg_player-game_temp.Tpo .deps/easyrpg_player-game_temp.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-graphics.o -MD -MP -MF .deps/easyrpg_player-graphics.Tpo -c -o easyrpg_player-graphics.o `test -f 'graphics.cpp' || echo './'`graphics.cpp
mv -f .deps/easyrpg_player-game_screen.Tpo .deps/easyrpg_player-game_screen.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-hslrgb.o -MD -MP -MF .deps/easyrpg_player-hslrgb.Tpo -c -o easyrpg_player-hslrgb.o `test -f 'hslrgb.cpp' || echo './'`hslrgb.cpp
mv -f .deps/easyrpg_player-game_targets.Tpo .deps/easyrpg_player-game_targets.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-image_bmp.o -MD -MP -MF .deps/easyrpg_player-image_bmp.Tpo -c -o easyrpg_player-image_bmp.o `test -f 'image_bmp.cpp' || echo './'`image_bmp.cpp
mv -f .deps/easyrpg_player-hslrgb.Tpo .deps/easyrpg_player-hslrgb.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-image_jpg.o -MD -MP -MF .deps/easyrpg_player-image_jpg.Tpo -c -o easyrpg_player-image_jpg.o `test -f 'image_jpg.cpp' || echo './'`image_jpg.cpp
mv -f .deps/easyrpg_player-image_jpg.Tpo .deps/easyrpg_player-image_jpg.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-image_png.o -MD -MP -MF .deps/easyrpg_player-image_png.Tpo -c -o easyrpg_player-image_png.o `test -f 'image_png.cpp' || echo './'`image_png.cpp
mv -f .deps/easyrpg_player-image_bmp.Tpo .deps/easyrpg_player-image_bmp.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-image_xyz.o -MD -MP -MF .deps/easyrpg_player-image_xyz.Tpo -c -o easyrpg_player-image_xyz.o `test -f 'image_xyz.cpp' || echo './'`image_xyz.cpp
mv -f .deps/easyrpg_player-game_vehicle.Tpo .deps/easyrpg_player-game_vehicle.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-input_buttons_desktop.o -MD -MP -MF .deps/easyrpg_player-input_buttons_desktop.Tpo -c -o easyrpg_player-input_buttons_desktop.o `test -f 'input_buttons_desktop.cpp' || echo './'`input_buttons_desktop.cpp
mv -f .deps/easyrpg_player-image_xyz.Tpo .deps/easyrpg_player-image_xyz.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-input_buttons_gekko.o -MD -MP -MF .deps/easyrpg_player-input_buttons_gekko.Tpo -c -o easyrpg_player-input_buttons_gekko.o `test -f 'input_buttons_gekko.cpp' || echo './'`input_buttons_gekko.cpp
mv -f .deps/easyrpg_player-input_buttons_gekko.Tpo .deps/easyrpg_player-input_buttons_gekko.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-input_buttons_gph.o -MD -MP -MF .deps/easyrpg_player-input_buttons_gph.Tpo -c -o easyrpg_player-input_buttons_gph.o `test -f 'input_buttons_gph.cpp' || echo './'`input_buttons_gph.cpp
mv -f .deps/easyrpg_player-input_buttons_gph.Tpo .deps/easyrpg_player-input_buttons_gph.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-input_buttons_opendingux.o -MD -MP -MF .deps/easyrpg_player-input_buttons_opendingux.Tpo -c -o easyrpg_player-input_buttons_opendingux.o `test -f 'input_buttons_opendingux.cpp' || echo './'`input_buttons_opendingux.cpp
mv -f .deps/easyrpg_player-input_buttons_desktop.Tpo .deps/easyrpg_player-input_buttons_desktop.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-input_buttons_psp.o -MD -MP -MF .deps/easyrpg_player-input_buttons_psp.Tpo -c -o easyrpg_player-input_buttons_psp.o `test -f 'input_buttons_psp.cpp' || echo './'`input_buttons_psp.cpp
mv -f .deps/easyrpg_player-input_buttons_opendingux.Tpo .deps/easyrpg_player-input_buttons_opendingux.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-input.o -MD -MP -MF .deps/easyrpg_player-input.Tpo -c -o easyrpg_player-input.o `test -f 'input.cpp' || echo './'`input.cpp
mv -f .deps/easyrpg_player-input_buttons_psp.Tpo .deps/easyrpg_player-input_buttons_psp.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-main.o -MD -MP -MF .deps/easyrpg_player-main.Tpo -c -o easyrpg_player-main.o `test -f 'main.cpp' || echo './'`main.cpp
mv -f .deps/easyrpg_player-image_png.Tpo .deps/easyrpg_player-image_png.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-main_data.o -MD -MP -MF .deps/easyrpg_player-main_data.Tpo -c -o easyrpg_player-main_data.o `test -f 'main_data.cpp' || echo './'`main_data.cpp
mv -f .deps/easyrpg_player-graphics.Tpo .deps/easyrpg_player-graphics.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-message_overlay.o -MD -MP -MF .deps/easyrpg_player-message_overlay.Tpo -c -o easyrpg_player-message_overlay.o `test -f 'message_overlay.cpp' || echo './'`message_overlay.cpp
mv -f .deps/easyrpg_player-main.Tpo .deps/easyrpg_player-main.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-output.o -MD -MP -MF .deps/easyrpg_player-output.Tpo -c -o easyrpg_player-output.o `test -f 'output.cpp' || echo './'`output.cpp
mv -f .deps/easyrpg_player-main_data.Tpo .deps/easyrpg_player-main_data.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-plane.o -MD -MP -MF .deps/easyrpg_player-plane.Tpo -c -o easyrpg_player-plane.o `test -f 'plane.cpp' || echo './'`plane.cpp
mv -f .deps/easyrpg_player-input.Tpo .deps/easyrpg_player-input.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-player.o -MD -MP -MF .deps/easyrpg_player-player.Tpo -c -o easyrpg_player-player.o `test -f 'player.cpp' || echo './'`player.cpp
mv -f .deps/easyrpg_player-plane.Tpo .deps/easyrpg_player-plane.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-rect.o -MD -MP -MF .deps/easyrpg_player-rect.Tpo -c -o easyrpg_player-rect.o `test -f 'rect.cpp' || echo './'`rect.cpp
mv -f .deps/easyrpg_player-rect.Tpo .deps/easyrpg_player-rect.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-registry.o -MD -MP -MF .deps/easyrpg_player-registry.Tpo -c -o easyrpg_player-registry.o `test -f 'registry.cpp' || echo './'`registry.cpp
mv -f .deps/easyrpg_player-message_overlay.Tpo .deps/easyrpg_player-message_overlay.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-scene_actortarget.o -MD -MP -MF .deps/easyrpg_player-scene_actortarget.Tpo -c -o easyrpg_player-scene_actortarget.o `test -f 'scene_actortarget.cpp' || echo './'`scene_actortarget.cpp
mv -f .deps/easyrpg_player-registry.Tpo .deps/easyrpg_player-registry.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-scene_battle.o -MD -MP -MF .deps/easyrpg_player-scene_battle.Tpo -c -o easyrpg_player-scene_battle.o `test -f 'scene_battle.cpp' || echo './'`scene_battle.cpp
mv -f .deps/easyrpg_player-scene_actortarget.Tpo .deps/easyrpg_player-scene_actortarget.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-scene_battle_rpg2k.o -MD -MP -MF .deps/easyrpg_player-scene_battle_rpg2k.Tpo -c -o easyrpg_player-scene_battle_rpg2k.o `test -f 'scene_battle_rpg2k.cpp' || echo './'`scene_battle_rpg2k.cpp
mv -f .deps/easyrpg_player-output.Tpo .deps/easyrpg_player-output.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-scene_battle_rpg2k3.o -MD -MP -MF .deps/easyrpg_player-scene_battle_rpg2k3.Tpo -c -o easyrpg_player-scene_battle_rpg2k3.o `test -f 'scene_battle_rpg2k3.cpp' || echo './'`scene_battle_rpg2k3.cpp
mv -f .deps/easyrpg_player-player.Tpo .deps/easyrpg_player-player.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-scene.o -MD -MP -MF .deps/easyrpg_player-scene.Tpo -c -o easyrpg_player-scene.o `test -f 'scene.cpp' || echo './'`scene.cpp
mv -f .deps/easyrpg_player-scene.Tpo .deps/easyrpg_player-scene.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-scene_debug.o -MD -MP -MF .deps/easyrpg_player-scene_debug.Tpo -c -o easyrpg_player-scene_debug.o `test -f 'scene_debug.cpp' || echo './'`scene_debug.cpp
mv -f .deps/easyrpg_player-scene_battle_rpg2k.Tpo .deps/easyrpg_player-scene_battle_rpg2k.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-scene_end.o -MD -MP -MF .deps/easyrpg_player-scene_end.Tpo -c -o easyrpg_player-scene_end.o `test -f 'scene_end.cpp' || echo './'`scene_end.cpp
mv -f .deps/easyrpg_player-scene_debug.Tpo .deps/easyrpg_player-scene_debug.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-scene_equip.o -MD -MP -MF .deps/easyrpg_player-scene_equip.Tpo -c -o easyrpg_player-scene_equip.o `test -f 'scene_equip.cpp' || echo './'`scene_equip.cpp
mv -f .deps/easyrpg_player-scene_battle.Tpo .deps/easyrpg_player-scene_battle.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-scene_file.o -MD -MP -MF .deps/easyrpg_player-scene_file.Tpo -c -o easyrpg_player-scene_file.o `test -f 'scene_file.cpp' || echo './'`scene_file.cpp
mv -f .deps/easyrpg_player-scene_end.Tpo .deps/easyrpg_player-scene_end.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-scene_gameover.o -MD -MP -MF .deps/easyrpg_player-scene_gameover.Tpo -c -o easyrpg_player-scene_gameover.o `test -f 'scene_gameover.cpp' || echo './'`scene_gameover.cpp
mv -f .deps/easyrpg_player-scene_battle_rpg2k3.Tpo .deps/easyrpg_player-scene_battle_rpg2k3.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-scene_item.o -MD -MP -MF .deps/easyrpg_player-scene_item.Tpo -c -o easyrpg_player-scene_item.o `test -f 'scene_item.cpp' || echo './'`scene_item.cpp
mv -f .deps/easyrpg_player-scene_equip.Tpo .deps/easyrpg_player-scene_equip.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-scene_load.o -MD -MP -MF .deps/easyrpg_player-scene_load.Tpo -c -o easyrpg_player-scene_load.o `test -f 'scene_load.cpp' || echo './'`scene_load.cpp
mv -f .deps/easyrpg_player-scene_gameover.Tpo .deps/easyrpg_player-scene_gameover.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-scene_logo.o -MD -MP -MF .deps/easyrpg_player-scene_logo.Tpo -c -o easyrpg_player-scene_logo.o `test -f 'scene_logo.cpp' || echo './'`scene_logo.cpp
mv -f .deps/easyrpg_player-scene_file.Tpo .deps/easyrpg_player-scene_file.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-scene_map.o -MD -MP -MF .deps/easyrpg_player-scene_map.Tpo -c -o easyrpg_player-scene_map.o `test -f 'scene_map.cpp' || echo './'`scene_map.cpp
mv -f .deps/easyrpg_player-scene_item.Tpo .deps/easyrpg_player-scene_item.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-scene_menu.o -MD -MP -MF .deps/easyrpg_player-scene_menu.Tpo -c -o easyrpg_player-scene_menu.o `test -f 'scene_menu.cpp' || echo './'`scene_menu.cpp
mv -f .deps/easyrpg_player-scene_load.Tpo .deps/easyrpg_player-scene_load.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-scene_name.o -MD -MP -MF .deps/easyrpg_player-scene_name.Tpo -c -o easyrpg_player-scene_name.o `test -f 'scene_name.cpp' || echo './'`scene_name.cpp
mv -f .deps/easyrpg_player-scene_name.Tpo .deps/easyrpg_player-scene_name.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-scene_order.o -MD -MP -MF .deps/easyrpg_player-scene_order.Tpo -c -o easyrpg_player-scene_order.o `test -f 'scene_order.cpp' || echo './'`scene_order.cpp
mv -f .deps/easyrpg_player-scene_logo.Tpo .deps/easyrpg_player-scene_logo.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-scene_save.o -MD -MP -MF .deps/easyrpg_player-scene_save.Tpo -c -o easyrpg_player-scene_save.o `test -f 'scene_save.cpp' || echo './'`scene_save.cpp
mv -f .deps/easyrpg_player-scene_map.Tpo .deps/easyrpg_player-scene_map.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-scene_shop.o -MD -MP -MF .deps/easyrpg_player-scene_shop.Tpo -c -o easyrpg_player-scene_shop.o `test -f 'scene_shop.cpp' || echo './'`scene_shop.cpp
mv -f .deps/easyrpg_player-scene_menu.Tpo .deps/easyrpg_player-scene_menu.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-scene_skill.o -MD -MP -MF .deps/easyrpg_player-scene_skill.Tpo -c -o easyrpg_player-scene_skill.o `test -f 'scene_skill.cpp' || echo './'`scene_skill.cpp
mv -f .deps/easyrpg_player-scene_order.Tpo .deps/easyrpg_player-scene_order.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-scene_status.o -MD -MP -MF .deps/easyrpg_player-scene_status.Tpo -c -o easyrpg_player-scene_status.o `test -f 'scene_status.cpp' || echo './'`scene_status.cpp
mv -f .deps/easyrpg_player-scene_shop.Tpo .deps/easyrpg_player-scene_shop.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-scene_title.o -MD -MP -MF .deps/easyrpg_player-scene_title.Tpo -c -o easyrpg_player-scene_title.o `test -f 'scene_title.cpp' || echo './'`scene_title.cpp
mv -f .deps/easyrpg_player-scene_save.Tpo .deps/easyrpg_player-scene_save.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-screen.o -MD -MP -MF .deps/easyrpg_player-screen.Tpo -c -o easyrpg_player-screen.o `test -f 'screen.cpp' || echo './'`screen.cpp
mv -f .deps/easyrpg_player-scene_status.Tpo .deps/easyrpg_player-scene_status.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-sdl_audio.o -MD -MP -MF .deps/easyrpg_player-sdl_audio.Tpo -c -o easyrpg_player-sdl_audio.o `test -f 'sdl_audio.cpp' || echo './'`sdl_audio.cpp
mv -f .deps/easyrpg_player-scene_skill.Tpo .deps/easyrpg_player-scene_skill.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-sdl_ui.o -MD -MP -MF .deps/easyrpg_player-sdl_ui.Tpo -c -o easyrpg_player-sdl_ui.o `test -f 'sdl_ui.cpp' || echo './'`sdl_ui.cpp
mv -f .deps/easyrpg_player-screen.Tpo .deps/easyrpg_player-screen.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-sprite_battler.o -MD -MP -MF .deps/easyrpg_player-sprite_battler.Tpo -c -o easyrpg_player-sprite_battler.o `test -f 'sprite_battler.cpp' || echo './'`sprite_battler.cpp
mv -f .deps/easyrpg_player-sdl_ui.Tpo .deps/easyrpg_player-sdl_ui.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-sprite_character.o -MD -MP -MF .deps/easyrpg_player-sprite_character.Tpo -c -o easyrpg_player-sprite_character.o `test -f 'sprite_character.cpp' || echo './'`sprite_character.cpp
mv -f .deps/easyrpg_player-sprite_battler.Tpo .deps/easyrpg_player-sprite_battler.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-sprite.o -MD -MP -MF .deps/easyrpg_player-sprite.Tpo -c -o easyrpg_player-sprite.o `test -f 'sprite.cpp' || echo './'`sprite.cpp
mv -f .deps/easyrpg_player-sdl_audio.Tpo .deps/easyrpg_player-sdl_audio.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-spriteset_battle.o -MD -MP -MF .deps/easyrpg_player-spriteset_battle.Tpo -c -o easyrpg_player-spriteset_battle.o `test -f 'spriteset_battle.cpp' || echo './'`spriteset_battle.cpp
mv -f .deps/easyrpg_player-sprite_character.Tpo .deps/easyrpg_player-sprite_character.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-spriteset_map.o -MD -MP -MF .deps/easyrpg_player-spriteset_map.Tpo -c -o easyrpg_player-spriteset_map.o `test -f 'spriteset_map.cpp' || echo './'`spriteset_map.cpp
mv -f .deps/easyrpg_player-sprite.Tpo .deps/easyrpg_player-sprite.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-text.o -MD -MP -MF .deps/easyrpg_player-text.Tpo -c -o easyrpg_player-text.o `test -f 'text.cpp' || echo './'`text.cpp
mv -f .deps/easyrpg_player-scene_title.Tpo .deps/easyrpg_player-scene_title.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-tilemap.o -MD -MP -MF .deps/easyrpg_player-tilemap.Tpo -c -o easyrpg_player-tilemap.o `test -f 'tilemap.cpp' || echo './'`tilemap.cpp
mv -f .deps/easyrpg_player-spriteset_battle.Tpo .deps/easyrpg_player-spriteset_battle.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-tilemap_layer.o -MD -MP -MF .deps/easyrpg_player-tilemap_layer.Tpo -c -o easyrpg_player-tilemap_layer.o `test -f 'tilemap_layer.cpp' || echo './'`tilemap_layer.cpp
mv -f .deps/easyrpg_player-tilemap.Tpo .deps/easyrpg_player-tilemap.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-tone.o -MD -MP -MF .deps/easyrpg_player-tone.Tpo -c -o easyrpg_player-tone.o `test -f 'tone.cpp' || echo './'`tone.cpp
mv -f .deps/easyrpg_player-spriteset_map.Tpo .deps/easyrpg_player-spriteset_map.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-utils.o -MD -MP -MF .deps/easyrpg_player-utils.Tpo -c -o easyrpg_player-utils.o `test -f 'utils.cpp' || echo './'`utils.cpp
mv -f .deps/easyrpg_player-tone.Tpo .deps/easyrpg_player-tone.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-util_win.o -MD -MP -MF .deps/easyrpg_player-util_win.Tpo -c -o easyrpg_player-util_win.o `test -f 'util_win.cpp' || echo './'`util_win.cpp
mv -f .deps/easyrpg_player-util_win.Tpo .deps/easyrpg_player-util_win.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-weather.o -MD -MP -MF .deps/easyrpg_player-weather.Tpo -c -o easyrpg_player-weather.o `test -f 'weather.cpp' || echo './'`weather.cpp
mv -f .deps/easyrpg_player-text.Tpo .deps/easyrpg_player-text.Po
mv -f .deps/easyrpg_player-tilemap_layer.Tpo .deps/easyrpg_player-tilemap_layer.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-window_actorinfo.o -MD -MP -MF .deps/easyrpg_player-window_actorinfo.Tpo -c -o easyrpg_player-window_actorinfo.o `test -f 'window_actorinfo.cpp' || echo './'`window_actorinfo.cpp
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-window_actorstatus.o -MD -MP -MF .deps/easyrpg_player-window_actorstatus.Tpo -c -o easyrpg_player-window_actorstatus.o `test -f 'window_actorstatus.cpp' || echo './'`window_actorstatus.cpp
mv -f .deps/easyrpg_player-weather.Tpo .deps/easyrpg_player-weather.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-window_actortarget.o -MD -MP -MF .deps/easyrpg_player-window_actortarget.Tpo -c -o easyrpg_player-window_actortarget.o `test -f 'window_actortarget.cpp' || echo './'`window_actortarget.cpp
mv -f .deps/easyrpg_player-utils.Tpo .deps/easyrpg_player-utils.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-window_base.o -MD -MP -MF .deps/easyrpg_player-window_base.Tpo -c -o easyrpg_player-window_base.o `test -f 'window_base.cpp' || echo './'`window_base.cpp
mv -f .deps/easyrpg_player-window_actortarget.Tpo .deps/easyrpg_player-window_actortarget.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-window_battlecommand.o -MD -MP -MF .deps/easyrpg_player-window_battlecommand.Tpo -c -o easyrpg_player-window_battlecommand.o `test -f 'window_battlecommand.cpp' || echo './'`window_battlecommand.cpp
mv -f .deps/easyrpg_player-window_actorinfo.Tpo .deps/easyrpg_player-window_actorinfo.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-window_battlemessage.o -MD -MP -MF .deps/easyrpg_player-window_battlemessage.Tpo -c -o easyrpg_player-window_battlemessage.o `test -f 'window_battlemessage.cpp' || echo './'`window_battlemessage.cpp
mv -f .deps/easyrpg_player-window_actorstatus.Tpo .deps/easyrpg_player-window_actorstatus.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-window_battleoption.o -MD -MP -MF .deps/easyrpg_player-window_battleoption.Tpo -c -o easyrpg_player-window_battleoption.o `test -f 'window_battleoption.cpp' || echo './'`window_battleoption.cpp
mv -f .deps/easyrpg_player-window_base.Tpo .deps/easyrpg_player-window_base.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-window_battlestatus.o -MD -MP -MF .deps/easyrpg_player-window_battlestatus.Tpo -c -o easyrpg_player-window_battlestatus.o `test -f 'window_battlestatus.cpp' || echo './'`window_battlestatus.cpp
mv -f .deps/easyrpg_player-window_battlecommand.Tpo .deps/easyrpg_player-window_battlecommand.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-window_command.o -MD -MP -MF .deps/easyrpg_player-window_command.Tpo -c -o easyrpg_player-window_command.o `test -f 'window_command.cpp' || echo './'`window_command.cpp
mv -f .deps/easyrpg_player-window_battleoption.Tpo .deps/easyrpg_player-window_battleoption.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-window.o -MD -MP -MF .deps/easyrpg_player-window.Tpo -c -o easyrpg_player-window.o `test -f 'window.cpp' || echo './'`window.cpp
mv -f .deps/easyrpg_player-window_battlemessage.Tpo .deps/easyrpg_player-window_battlemessage.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-window_equip.o -MD -MP -MF .deps/easyrpg_player-window_equip.Tpo -c -o easyrpg_player-window_equip.o `test -f 'window_equip.cpp' || echo './'`window_equip.cpp
mv -f .deps/easyrpg_player-window_battlestatus.Tpo .deps/easyrpg_player-window_battlestatus.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-window_equipitem.o -MD -MP -MF .deps/easyrpg_player-window_equipitem.Tpo -c -o easyrpg_player-window_equipitem.o `test -f 'window_equipitem.cpp' || echo './'`window_equipitem.cpp
mv -f .deps/easyrpg_player-window.Tpo .deps/easyrpg_player-window.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-window_equipstatus.o -MD -MP -MF .deps/easyrpg_player-window_equipstatus.Tpo -c -o easyrpg_player-window_equipstatus.o `test -f 'window_equipstatus.cpp' || echo './'`window_equipstatus.cpp
mv -f .deps/easyrpg_player-window_command.Tpo .deps/easyrpg_player-window_command.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-window_face.o -MD -MP -MF .deps/easyrpg_player-window_face.Tpo -c -o easyrpg_player-window_face.o `test -f 'window_face.cpp' || echo './'`window_face.cpp
mv -f .deps/easyrpg_player-window_equip.Tpo .deps/easyrpg_player-window_equip.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-window_gold.o -MD -MP -MF .deps/easyrpg_player-window_gold.Tpo -c -o easyrpg_player-window_gold.o `test -f 'window_gold.cpp' || echo './'`window_gold.cpp
mv -f .deps/easyrpg_player-window_equipitem.Tpo .deps/easyrpg_player-window_equipitem.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-window_help.o -MD -MP -MF .deps/easyrpg_player-window_help.Tpo -c -o easyrpg_player-window_help.o `test -f 'window_help.cpp' || echo './'`window_help.cpp
mv -f .deps/easyrpg_player-window_face.Tpo .deps/easyrpg_player-window_face.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-window_item.o -MD -MP -MF .deps/easyrpg_player-window_item.Tpo -c -o easyrpg_player-window_item.o `test -f 'window_item.cpp' || echo './'`window_item.cpp
mv -f .deps/easyrpg_player-window_equipstatus.Tpo .deps/easyrpg_player-window_equipstatus.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-window_keyboard.o -MD -MP -MF .deps/easyrpg_player-window_keyboard.Tpo -c -o easyrpg_player-window_keyboard.o `test -f 'window_keyboard.cpp' || echo './'`window_keyboard.cpp
mv -f .deps/easyrpg_player-window_gold.Tpo .deps/easyrpg_player-window_gold.Po
mv -f .deps/easyrpg_player-window_help.Tpo .deps/easyrpg_player-window_help.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-window_menustatus.o -MD -MP -MF .deps/easyrpg_player-window_menustatus.Tpo -c -o easyrpg_player-window_menustatus.o `test -f 'window_menustatus.cpp' || echo './'`window_menustatus.cpp
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-window_message.o -MD -MP -MF .deps/easyrpg_player-window_message.Tpo -c -o easyrpg_player-window_message.o `test -f 'window_message.cpp' || echo './'`window_message.cpp
mv -f .deps/easyrpg_player-window_item.Tpo .deps/easyrpg_player-window_item.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-window_name.o -MD -MP -MF .deps/easyrpg_player-window_name.Tpo -c -o easyrpg_player-window_name.o `test -f 'window_name.cpp' || echo './'`window_name.cpp
mv -f .deps/easyrpg_player-window_menustatus.Tpo .deps/easyrpg_player-window_menustatus.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-window_numberinput.o -MD -MP -MF .deps/easyrpg_player-window_numberinput.Tpo -c -o easyrpg_player-window_numberinput.o `test -f 'window_numberinput.cpp' || echo './'`window_numberinput.cpp
mv -f .deps/easyrpg_player-window_keyboard.Tpo .deps/easyrpg_player-window_keyboard.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-window_savefile.o -MD -MP -MF .deps/easyrpg_player-window_savefile.Tpo -c -o easyrpg_player-window_savefile.o `test -f 'window_savefile.cpp' || echo './'`window_savefile.cpp
mv -f .deps/easyrpg_player-window_message.Tpo .deps/easyrpg_player-window_message.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-window_selectable.o -MD -MP -MF .deps/easyrpg_player-window_selectable.Tpo -c -o easyrpg_player-window_selectable.o `test -f 'window_selectable.cpp' || echo './'`window_selectable.cpp
mv -f .deps/easyrpg_player-window_numberinput.Tpo .deps/easyrpg_player-window_numberinput.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-window_shopbuy.o -MD -MP -MF .deps/easyrpg_player-window_shopbuy.Tpo -c -o easyrpg_player-window_shopbuy.o `test -f 'window_shopbuy.cpp' || echo './'`window_shopbuy.cpp
mv -f .deps/easyrpg_player-window_name.Tpo .deps/easyrpg_player-window_name.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-window_shop.o -MD -MP -MF .deps/easyrpg_player-window_shop.Tpo -c -o easyrpg_player-window_shop.o `test -f 'window_shop.cpp' || echo './'`window_shop.cpp
mv -f .deps/easyrpg_player-window_selectable.Tpo .deps/easyrpg_player-window_selectable.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-window_shopnumber.o -MD -MP -MF .deps/easyrpg_player-window_shopnumber.Tpo -c -o easyrpg_player-window_shopnumber.o `test -f 'window_shopnumber.cpp' || echo './'`window_shopnumber.cpp
mv -f .deps/easyrpg_player-window_savefile.Tpo .deps/easyrpg_player-window_savefile.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-window_shopparty.o -MD -MP -MF .deps/easyrpg_player-window_shopparty.Tpo -c -o easyrpg_player-window_shopparty.o `test -f 'window_shopparty.cpp' || echo './'`window_shopparty.cpp
mv -f .deps/easyrpg_player-window_shopbuy.Tpo .deps/easyrpg_player-window_shopbuy.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-window_shopsell.o -MD -MP -MF .deps/easyrpg_player-window_shopsell.Tpo -c -o easyrpg_player-window_shopsell.o `test -f 'window_shopsell.cpp' || echo './'`window_shopsell.cpp
mv -f .deps/easyrpg_player-window_shop.Tpo .deps/easyrpg_player-window_shop.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-window_shopstatus.o -MD -MP -MF .deps/easyrpg_player-window_shopstatus.Tpo -c -o easyrpg_player-window_shopstatus.o `test -f 'window_shopstatus.cpp' || echo './'`window_shopstatus.cpp
mv -f .deps/easyrpg_player-window_shopparty.Tpo .deps/easyrpg_player-window_shopparty.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-window_skill.o -MD -MP -MF .deps/easyrpg_player-window_skill.Tpo -c -o easyrpg_player-window_skill.o `test -f 'window_skill.cpp' || echo './'`window_skill.cpp
mv -f .deps/easyrpg_player-window_shopnumber.Tpo .deps/easyrpg_player-window_shopnumber.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-window_skillstatus.o -MD -MP -MF .deps/easyrpg_player-window_skillstatus.Tpo -c -o easyrpg_player-window_skillstatus.o `test -f 'window_skillstatus.cpp' || echo './'`window_skillstatus.cpp
mv -f .deps/easyrpg_player-window_shopsell.Tpo .deps/easyrpg_player-window_shopsell.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-window_targetstatus.o -MD -MP -MF .deps/easyrpg_player-window_targetstatus.Tpo -c -o easyrpg_player-window_targetstatus.o `test -f 'window_targetstatus.cpp' || echo './'`window_targetstatus.cpp
mv -f .deps/easyrpg_player-window_shopstatus.Tpo .deps/easyrpg_player-window_shopstatus.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT easyrpg_player-window_varlist.o -MD -MP -MF .deps/easyrpg_player-window_varlist.Tpo -c -o easyrpg_player-window_varlist.o `test -f 'window_varlist.cpp' || echo './'`window_varlist.cpp
mv -f .deps/easyrpg_player-window_skillstatus.Tpo .deps/easyrpg_player-window_skillstatus.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT ../lib/shinonome/easyrpg_player-gothic.o -MD -MP -MF ../lib/shinonome/.deps/easyrpg_player-gothic.Tpo -c -o ../lib/shinonome/easyrpg_player-gothic.o `test -f '../lib/shinonome/gothic.cxx' || echo './'`../lib/shinonome/gothic.cxx
mv -f .deps/easyrpg_player-window_skill.Tpo .deps/easyrpg_player-window_skill.Po
g++ -DHAVE_CONFIG_H -I. -I..  -I./../lib/shinonome  -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include -MT ../lib/shinonome/easyrpg_player-mincho.o -MD -MP -MF ../lib/shinonome/.deps/easyrpg_player-mincho.Tpo -c -o ../lib/shinonome/easyrpg_player-mincho.o `test -f '../lib/shinonome/mincho.cxx' || echo './'`../lib/shinonome/mincho.cxx
mv -f ../lib/shinonome/.deps/easyrpg_player-mincho.Tpo ../lib/shinonome/.deps/easyrpg_player-mincho.Po
mv -f ../lib/shinonome/.deps/easyrpg_player-gothic.Tpo ../lib/shinonome/.deps/easyrpg_player-gothic.Po
mv -f .deps/easyrpg_player-window_targetstatus.Tpo .deps/easyrpg_player-window_targetstatus.Po
mv -f .deps/easyrpg_player-window_varlist.Tpo .deps/easyrpg_player-window_varlist.Po
g++ -std=c++0x -I/usr/local/Cellar/icu4c/54.1/include -I/usr/local/Cellar/expat/2.1.0_1/include -I/usr/include/liblcf  -I/usr/local/Cellar/pixman/0.32.6/include/pixman-1  -I/usr/local/Cellar/freetype/2.5.5/include/freetype2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -D_THREAD_SAFE -I/usr/local/include/SDL2  -I/usr/local/Cellar/libpng/1.6.16/include/libpng16   -I/usr/local/Cellar/boost/1.57.0/include  -L/usr/local/Cellar/boost/1.57.0/lib -o easyrpg-player easyrpg_player-al_audio.o easyrpg_player-audio.o easyrpg_player-background.o easyrpg_player-baseui.o easyrpg_player-battle_animation.o easyrpg_player-bitmap.o easyrpg_player-cache.o easyrpg_player-color.o easyrpg_player-effects.o easyrpg_player-filefinder.o easyrpg_player-font.o easyrpg_player-game_actor.o easyrpg_player-game_actors.o easyrpg_player-game_battle.o easyrpg_player-game_battlealgorithm.o easyrpg_player-game_battler.o easyrpg_player-game_character.o easyrpg_player-game_commonevent.o easyrpg_player-game_enemy.o easyrpg_player-game_enemyparty.o easyrpg_player-game_event.o easyrpg_player-game_interpreter_battle.o easyrpg_player-game_interpreter.o easyrpg_player-game_interpreter_map.o easyrpg_player-game_map.o easyrpg_player-game_message.o easyrpg_player-game_party.o easyrpg_player-game_party_base.o easyrpg_player-game_picture.o easyrpg_player-game_player.o easyrpg_player-game_screen.o easyrpg_player-game_system.o easyrpg_player-game_targets.o easyrpg_player-game_temp.o easyrpg_player-game_vehicle.o easyrpg_player-graphics.o easyrpg_player-hslrgb.o easyrpg_player-image_bmp.o easyrpg_player-image_jpg.o easyrpg_player-image_png.o easyrpg_player-image_xyz.o easyrpg_player-input_buttons_desktop.o easyrpg_player-input_buttons_gekko.o easyrpg_player-input_buttons_gph.o easyrpg_player-input_buttons_opendingux.o easyrpg_player-input_buttons_psp.o easyrpg_player-input.o easyrpg_player-main.o easyrpg_player-main_data.o easyrpg_player-message_overlay.o easyrpg_player-output.o easyrpg_player-plane.o easyrpg_player-player.o easyrpg_player-rect.o easyrpg_player-registry.o easyrpg_player-scene_actortarget.o easyrpg_player-scene_battle.o easyrpg_player-scene_battle_rpg2k.o easyrpg_player-scene_battle_rpg2k3.o easyrpg_player-scene.o easyrpg_player-scene_debug.o easyrpg_player-scene_end.o easyrpg_player-scene_equip.o easyrpg_player-scene_file.o easyrpg_player-scene_gameover.o easyrpg_player-scene_item.o easyrpg_player-scene_load.o easyrpg_player-scene_logo.o easyrpg_player-scene_map.o easyrpg_player-scene_menu.o easyrpg_player-scene_name.o easyrpg_player-scene_order.o easyrpg_player-scene_save.o easyrpg_player-scene_shop.o easyrpg_player-scene_skill.o easyrpg_player-scene_status.o easyrpg_player-scene_title.o easyrpg_player-screen.o easyrpg_player-sdl_audio.o easyrpg_player-sdl_ui.o easyrpg_player-sprite_battler.o easyrpg_player-sprite_character.o easyrpg_player-sprite.o easyrpg_player-spriteset_battle.o easyrpg_player-spriteset_map.o easyrpg_player-text.o easyrpg_player-tilemap.o easyrpg_player-tilemap_layer.o easyrpg_player-tone.o easyrpg_player-utils.o easyrpg_player-util_win.o easyrpg_player-weather.o easyrpg_player-window_actorinfo.o easyrpg_player-window_actorstatus.o easyrpg_player-window_actortarget.o easyrpg_player-window_base.o easyrpg_player-window_battlecommand.o easyrpg_player-window_battlemessage.o easyrpg_player-window_battleoption.o easyrpg_player-window_battlestatus.o easyrpg_player-window_command.o easyrpg_player-window.o easyrpg_player-window_equip.o easyrpg_player-window_equipitem.o easyrpg_player-window_equipstatus.o easyrpg_player-window_face.o easyrpg_player-window_gold.o easyrpg_player-window_help.o easyrpg_player-window_item.o easyrpg_player-window_keyboard.o easyrpg_player-window_menustatus.o easyrpg_player-window_message.o easyrpg_player-window_name.o easyrpg_player-window_numberinput.o easyrpg_player-window_savefile.o easyrpg_player-window_selectable.o easyrpg_player-window_shopbuy.o easyrpg_player-window_shop.o easyrpg_player-window_shopnumber.o easyrpg_player-window_shopparty.o easyrpg_player-window_shopsell.o easyrpg_player-window_shopstatus.o easyrpg_player-window_skill.o easyrpg_player-window_skillstatus.o easyrpg_player-window_targetstatus.o easyrpg_player-window_varlist.o ../lib/shinonome/easyrpg_player-gothic.o ../lib/shinonome/easyrpg_player-mincho.o -L/usr/local/Cellar/icu4c/54.1/lib -L/usr/local/Cellar/expat/2.1.0_1/lib -llcf -lexpat -licui18n -licuuc -licudata  -L/usr/local/Cellar/pixman/0.32.6/lib -lpixman-1  -L/usr/local/Cellar/freetype/2.5.5/lib -lfreetype  -L/usr/local/lib -lSDL2  -L/usr/local/lib -lSDL2_mixer -lSDL2  -L/usr/local/Cellar/libpng/1.6.16/lib -lpng16  -L/usr/lib -lz
ld: library not found for -llcf
clang: error: linker command failed with exit code 1 (use -v to see invocation)
make[2]: *** [easyrpg-player] Error 1
make[1]: *** [all-recursive] Error 1
make: *** [all] Error 2
fdelapena commented 9 years ago

Good! :+1:

About the linking issue... weird, as the configure script checked for LCF before and passed.

Could you check where liblcf is installed? If you did sudo make install and the configure prefix was /usr, then there should a file called liblcf.pc placed at /usr/lib/pkgconfig/

Can you paste the output of this command?

pkg-config --libs --debug liblcf
BlisterB commented 9 years ago

Here is the resultat :

Error printing enabled by default due to use of output options besides --exists or --atleast/exact/max-version. Value of --silence-errors: 0
Error printing enabled
Adding virtual 'pkg-config' package to list of known packages
Scanning directory '/usr/local/opt/icu4c/lib/pkgconfig'
Ignoring file '.' in search directory; not a .pc file
Ignoring file '..' in search directory; not a .pc file
File 'icu-i18n.pc' appears to be a .pc file
Will find package 'icu-i18n' in file '/usr/local/opt/icu4c/lib/pkgconfig/icu-i18n.pc'
File 'icu-io.pc' appears to be a .pc file
Will find package 'icu-io' in file '/usr/local/opt/icu4c/lib/pkgconfig/icu-io.pc'
File 'icu-le.pc' appears to be a .pc file
Will find package 'icu-le' in file '/usr/local/opt/icu4c/lib/pkgconfig/icu-le.pc'
File 'icu-lx.pc' appears to be a .pc file
Will find package 'icu-lx' in file '/usr/local/opt/icu4c/lib/pkgconfig/icu-lx.pc'
File 'icu-uc.pc' appears to be a .pc file
Will find package 'icu-uc' in file '/usr/local/opt/icu4c/lib/pkgconfig/icu-uc.pc'
Scanning directory '/usr/local/opt/expat/lib/pkgconfig'
Ignoring file '.' in search directory; not a .pc file
Ignoring file '..' in search directory; not a .pc file
File 'expat.pc' appears to be a .pc file
Will find package 'expat' in file '/usr/local/opt/expat/lib/pkgconfig/expat.pc'
Scanning directory '/usr/local/opt/icu4c/lib/pkgconfig'
Ignoring file '.' in search directory; not a .pc file
Ignoring file '..' in search directory; not a .pc file
File 'icu-i18n.pc' appears to be a .pc file
File 'icu-i18n.pc' ignored, we already know about package 'icu-i18n'
File 'icu-io.pc' appears to be a .pc file
File 'icu-io.pc' ignored, we already know about package 'icu-io'
File 'icu-le.pc' appears to be a .pc file
File 'icu-le.pc' ignored, we already know about package 'icu-le'
File 'icu-lx.pc' appears to be a .pc file
File 'icu-lx.pc' ignored, we already know about package 'icu-lx'
File 'icu-uc.pc' appears to be a .pc file
File 'icu-uc.pc' ignored, we already know about package 'icu-uc'
Scanning directory '/usr/local/opt/expat/lib/pkgconfig'
Ignoring file '.' in search directory; not a .pc file
Ignoring file '..' in search directory; not a .pc file
File 'expat.pc' appears to be a .pc file
File 'expat.pc' ignored, we already know about package 'expat'
Cannot open directory '' in package search path: No such file or directory
Scanning directory '/usr/local/lib/pkgconfig'
Ignoring file '.' in search directory; not a .pc file
Ignoring file '..' in search directory; not a .pc file
File 'freetype2.pc' appears to be a .pc file
Will find package 'freetype2' in file '/usr/local/lib/pkgconfig/freetype2.pc'
File 'liblzma.pc' appears to be a .pc file
Will find package 'liblzma' in file '/usr/local/lib/pkgconfig/liblzma.pc'
File 'libpng.pc' appears to be a .pc file
Will find package 'libpng' in file '/usr/local/lib/pkgconfig/libpng.pc'
File 'libpng16.pc' appears to be a .pc file
Will find package 'libpng16' in file '/usr/local/lib/pkgconfig/libpng16.pc'
File 'ogg.pc' appears to be a .pc file
Will find package 'ogg' in file '/usr/local/lib/pkgconfig/ogg.pc'
File 'pixman-1.pc' appears to be a .pc file
Will find package 'pixman-1' in file '/usr/local/lib/pkgconfig/pixman-1.pc'
File 'sdl.pc' appears to be a .pc file
Will find package 'sdl' in file '/usr/local/lib/pkgconfig/sdl.pc'
File 'sdl2.pc' appears to be a .pc file
Will find package 'sdl2' in file '/usr/local/lib/pkgconfig/sdl2.pc'
File 'SDL2_mixer.pc' appears to be a .pc file
Will find package 'SDL2_mixer' in file '/usr/local/lib/pkgconfig/SDL2_mixer.pc'
File 'vorbis.pc' appears to be a .pc file
Will find package 'vorbis' in file '/usr/local/lib/pkgconfig/vorbis.pc'
File 'vorbisenc.pc' appears to be a .pc file
Will find package 'vorbisenc' in file '/usr/local/lib/pkgconfig/vorbisenc.pc'
File 'vorbisfile.pc' appears to be a .pc file
Will find package 'vorbisfile' in file '/usr/local/lib/pkgconfig/vorbisfile.pc'
Cannot open directory '/usr/local/share/pkgconfig' in package search path: No such file or directory
Scanning directory '/usr/lib/pkgconfig'
Ignoring file '.' in search directory; not a .pc file
Ignoring file '..' in search directory; not a .pc file
File 'apr-1.pc' appears to be a .pc file
Will find package 'apr-1' in file '/usr/lib/pkgconfig/apr-1.pc'
File 'apr-util-1.pc' appears to be a .pc file
Will find package 'apr-util-1' in file '/usr/lib/pkgconfig/apr-util-1.pc'
File 'libcrypto.pc' appears to be a .pc file
Will find package 'libcrypto' in file '/usr/lib/pkgconfig/libcrypto.pc'
File 'libedit.pc' appears to be a .pc file
Will find package 'libedit' in file '/usr/lib/pkgconfig/libedit.pc'
File 'libiodbc.pc' appears to be a .pc file
Will find package 'libiodbc' in file '/usr/lib/pkgconfig/libiodbc.pc'
File 'liblcf.pc' appears to be a .pc file
Will find package 'liblcf' in file '/usr/lib/pkgconfig/liblcf.pc'
File 'libpcre.pc' appears to be a .pc file
Will find package 'libpcre' in file '/usr/lib/pkgconfig/libpcre.pc'
File 'libpcreposix.pc' appears to be a .pc file
Will find package 'libpcreposix' in file '/usr/lib/pkgconfig/libpcreposix.pc'
File 'libssl.pc' appears to be a .pc file
Will find package 'libssl' in file '/usr/lib/pkgconfig/libssl.pc'
File 'openssl.pc' appears to be a .pc file
Will find package 'openssl' in file '/usr/lib/pkgconfig/openssl.pc'
Scanning directory '/usr/local/Library/ENV/pkgconfig/10.10'
Ignoring file '.' in search directory; not a .pc file
Ignoring file '..' in search directory; not a .pc file
File 'libcurl.pc' appears to be a .pc file
Will find package 'libcurl' in file '/usr/local/Library/ENV/pkgconfig/10.10/libcurl.pc'
File 'libexslt.pc' appears to be a .pc file
Will find package 'libexslt' in file '/usr/local/Library/ENV/pkgconfig/10.10/libexslt.pc'
File 'libxml-2.0.pc' appears to be a .pc file
Will find package 'libxml-2.0' in file '/usr/local/Library/ENV/pkgconfig/10.10/libxml-2.0.pc'
File 'libxslt.pc' appears to be a .pc file
Will find package 'libxslt' in file '/usr/local/Library/ENV/pkgconfig/10.10/libxslt.pc'
File 'sqlite3.pc' appears to be a .pc file
Will find package 'sqlite3' in file '/usr/local/Library/ENV/pkgconfig/10.10/sqlite3.pc'
File 'zlib.pc' appears to be a .pc file
Will find package 'zlib' in file '/usr/local/Library/ENV/pkgconfig/10.10/zlib.pc'
Looking for package 'liblcf'
Looking for package 'liblcf-uninstalled'
Reading 'liblcf' from file '/usr/lib/pkgconfig/liblcf.pc'
Parsing package file '/usr/lib/pkgconfig/liblcf.pc'
  line>prefix=/usr
 Variable declaration, 'prefix' has value '/usr'
  line>exec_prefix=${prefix}
 Variable declaration, 'exec_prefix' has value '/usr'
  line>libdir=${exec_prefix}/lib
 Variable declaration, 'libdir' has value '/usr/lib'
  line>includedir=${prefix}/include
 Variable declaration, 'includedir' has value '/usr/include'
  line>
  line>Name: liblcf
  line>Description: Library to handle RPG Maker 2000 and 2003 game data
  line>Version: 0.2.2
  line>URL: https://easyrpg.org/
  line>Requires: expat >= 2.1 icu-i18n
  line>Libs: -L${libdir} -llcf
  line>Cflags: -I${includedir}/liblcf
Path position of 'liblcf' is 6
Adding 'liblcf' to list of known packages
Searching for 'liblcf' requirement 'expat'
Looking for package 'expat'
Looking for package 'expat-uninstalled'
Reading 'expat' from file '/usr/local/opt/expat/lib/pkgconfig/expat.pc'
Parsing package file '/usr/local/opt/expat/lib/pkgconfig/expat.pc'
  line>prefix=/usr/local/Cellar/expat/2.1.0_1
 Variable declaration, 'prefix' has value '/usr/local/Cellar/expat/2.1.0_1'
  line>exec_prefix=${prefix}
 Variable declaration, 'exec_prefix' has value '/usr/local/Cellar/expat/2.1.0_1'
  line>libdir=${exec_prefix}/lib
 Variable declaration, 'libdir' has value '/usr/local/Cellar/expat/2.1.0_1/lib'
  line>includedir=${prefix}/include
 Variable declaration, 'includedir' has value '/usr/local/Cellar/expat/2.1.0_1/include'
  line>
  line>Name: expat
  line>Version: 2.1.0
  line>Description: expat XML parser
  line>URL: http://www.libexpat.org
  line>Libs: -L${libdir} -lexpat
  line>Cflags: -I${includedir}
Path position of 'expat' is 2
Adding 'expat' to list of known packages
Searching for 'liblcf' requirement 'icu-i18n'
Looking for package 'icu-i18n'
Looking for package 'icu-i18n-uninstalled'
Reading 'icu-i18n' from file '/usr/local/opt/icu4c/lib/pkgconfig/icu-i18n.pc'
Parsing package file '/usr/local/opt/icu4c/lib/pkgconfig/icu-i18n.pc'
  line>
  line>
  line>
  line>CFLAGS =
 Variable declaration, 'CFLAGS' has value ''
  line>
  line>CXXFLAGS =  --std=c++0x
 Variable declaration, 'CXXFLAGS' has value '--std=c++0x'
  line>
  line>DEFS =
 Variable declaration, 'DEFS' has value ''
  line>prefix = /usr/local/Cellar/icu4c/54.1
 Variable declaration, 'prefix' has value '/usr/local/Cellar/icu4c/54.1'
  line>exec_prefix = ${prefix}
 Variable declaration, 'exec_prefix' has value '/usr/local/Cellar/icu4c/54.1'
  line>
  line>libdir = ${exec_prefix}/lib
 Variable declaration, 'libdir' has value '/usr/local/Cellar/icu4c/54.1/lib'
  line>includedir = ${prefix}/include
 Variable declaration, 'includedir' has value '/usr/local/Cellar/icu4c/54.1/include'
  line>baselibs = -lpthread -lm
 Variable declaration, 'baselibs' has value '-lpthread -lm'
  line>
  line>
  line>
  line>
  line>
  line>UNICODE_VERSION=7.0
 Variable declaration, 'UNICODE_VERSION' has value '7.0'
  line>ICUPREFIX=icu
 Variable declaration, 'ICUPREFIX' has value 'icu'
  line>ICULIBSUFFIX=
 Variable declaration, 'ICULIBSUFFIX' has value ''
  line>LIBICU=lib${ICUPREFIX}
 Variable declaration, 'LIBICU' has value 'libicu'
  line>
  line>pkglibdir=${libdir}/icu${ICULIBSUFFIX}/54.1
 Variable declaration, 'pkglibdir' has value '/usr/local/Cellar/icu4c/54.1/lib/icu/54.1'
  line>
  line>ICUDATA_NAME = icudt54l
 Variable declaration, 'ICUDATA_NAME' has value 'icudt54l'
  line>
  line>
  line>ICUDESC=International Components for Unicode
 Variable declaration, 'ICUDESC' has value 'International Components for Unicode'
  line>
  line>Version: 54.1
  line>Cflags: -I${includedir}
  line>
  line>Description: International Components for Unicode: Internationalization library
  line>Name: icu-i18n
  line>Requires: icu-uc
  line>Libs: -licui18n
Path position of 'icu-i18n' is 1
Adding 'icu-i18n' to list of known packages
Searching for 'icu-i18n' requirement 'icu-uc'
Looking for package 'icu-uc'
Looking for package 'icu-uc-uninstalled'
Reading 'icu-uc' from file '/usr/local/opt/icu4c/lib/pkgconfig/icu-uc.pc'
Parsing package file '/usr/local/opt/icu4c/lib/pkgconfig/icu-uc.pc'
  line>
  line>
  line>
  line>CFLAGS =
 Variable declaration, 'CFLAGS' has value ''
  line>
  line>CXXFLAGS =  --std=c++0x
 Variable declaration, 'CXXFLAGS' has value '--std=c++0x'
  line>
  line>DEFS =
 Variable declaration, 'DEFS' has value ''
  line>prefix = /usr/local/Cellar/icu4c/54.1
 Variable declaration, 'prefix' has value '/usr/local/Cellar/icu4c/54.1'
  line>exec_prefix = ${prefix}
 Variable declaration, 'exec_prefix' has value '/usr/local/Cellar/icu4c/54.1'
  line>
  line>libdir = ${exec_prefix}/lib
 Variable declaration, 'libdir' has value '/usr/local/Cellar/icu4c/54.1/lib'
  line>includedir = ${prefix}/include
 Variable declaration, 'includedir' has value '/usr/local/Cellar/icu4c/54.1/include'
  line>baselibs = -lpthread -lm
 Variable declaration, 'baselibs' has value '-lpthread -lm'
  line>
  line>
  line>
  line>
  line>
  line>UNICODE_VERSION=7.0
 Variable declaration, 'UNICODE_VERSION' has value '7.0'
  line>ICUPREFIX=icu
 Variable declaration, 'ICUPREFIX' has value 'icu'
  line>ICULIBSUFFIX=
 Variable declaration, 'ICULIBSUFFIX' has value ''
  line>LIBICU=lib${ICUPREFIX}
 Variable declaration, 'LIBICU' has value 'libicu'
  line>
  line>pkglibdir=${libdir}/icu${ICULIBSUFFIX}/54.1
 Variable declaration, 'pkglibdir' has value '/usr/local/Cellar/icu4c/54.1/lib/icu/54.1'
  line>
  line>ICUDATA_NAME = icudt54l
 Variable declaration, 'ICUDATA_NAME' has value 'icudt54l'
  line>
  line>
  line>ICUDESC=International Components for Unicode
 Variable declaration, 'ICUDESC' has value 'International Components for Unicode'
  line>
  line>Version: 54.1
  line>Cflags: -I${includedir}
  line>
  line>Description: International Components for Unicode: Common and Data libraries
  line>Name: icu-uc
  line>Libs: -L${libdir} -licuuc -licudata
  line>Libs.private: ${baselibs}
Unknown keyword 'Libs.private' in '/usr/local/opt/icu4c/lib/pkgconfig/icu-uc.pc'
Path position of 'icu-uc' is 1
Adding 'icu-uc' to list of known packages
Package liblcf has -L /usr/lib in Libs
Removing -L /usr/lib from libs for liblcf
  pre-remove: liblcf expat icu-i18n icu-uc
 post-remove: liblcf expat icu-i18n icu-uc
 original: liblcf expat icu-i18n icu-uc
   sorted: icu-i18n icu-uc expat liblcf
 removing duplicate "-L/usr/local/Cellar/expat/2.1.0_1/lib"
adding LIBS_L string "-L/usr/local/Cellar/icu4c/54.1/lib -L/usr/local/Cellar/expat/2.1.0_1/lib "
  pre-remove: liblcf expat icu-i18n icu-uc
 post-remove: liblcf expat icu-i18n icu-uc
 removing duplicate "-lexpat"
 removing duplicate "-licui18n"
 removing duplicate "-licuuc"
 removing duplicate "-licudata"
adding LIBS_OTHER | LIBS_l string "-llcf -lexpat -licui18n -licuuc -licudata "
returning flags string "-L/usr/local/Cellar/icu4c/54.1/lib -L/usr/local/Cellar/expat/2.1.0_1/lib -llcf -lexpat -licui18n -licuuc -licudata "
-L/usr/local/Cellar/icu4c/54.1/lib -L/usr/local/Cellar/expat/2.1.0_1/lib -llcf -lexpat -licui18n -licuuc -licudata
fdelapena commented 9 years ago

Could you check if there are *.dylib files related with liblcf in /usr/lib/? Looks like libtool did not do the job properly or it lacks something. Maybe for liblcf there are .so files only.

BlisterB commented 9 years ago

In /usr/lib, here is the result of ls -R *liblcf*:

/usr/lib/liblcf.0.dylib /usr/lib/liblcf.dylib
/usr/lib/liblcf.a       /usr/lib/liblcf.la
BlisterB commented 9 years ago

I rebuild all liblcf and it looks like there are some pertinent warning at the make -j4step, here is all the output :

For liblcf, here is the result of ./autoreconf -i:

checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... builds/autoconf/install-sh -c -d
checking for gawk... no
checking for mawk... no
checking for nawk... no
checking for awk... awk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking whether to enable maintainer-specific portions of Makefiles... yes
checking whether make supports nested variables... (cached) yes
checking for style of include used by make... GNU
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking whether gcc understands -c and -o together... yes
checking dependency style of gcc... gcc3
checking for ar... ar
checking the archiver (ar) interface... ar
checking for g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking dependency style of g++... gcc3
checking build system type... x86_64-apple-darwin14.1.0
checking host system type... x86_64-apple-darwin14.1.0
checking how to print strings... printf
checking for a sed that does not truncate output... /usr/bin/sed
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for fgrep... /usr/bin/grep -F
checking for ld used by gcc... /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld
checking if the linker (/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld) is GNU ld... no
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm
checking the name lister (/usr/bin/nm) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 196608
checking how to convert x86_64-apple-darwin14.1.0 file names to x86_64-apple-darwin14.1.0 format... func_convert_file_noop
checking how to convert x86_64-apple-darwin14.1.0 file names to toolchain format... func_convert_file_noop
checking for /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld option to reload object files... -r
checking for objdump... no
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for archiver @FILE support... no
checking for strip... strip
checking for ranlib... ranlib
checking command to parse /usr/bin/nm output from gcc object... ok
checking for sysroot... no
checking for a working dd... /bin/dd
checking how to truncate binary pipes... /bin/dd bs=4096 count=1
checking for mt... no
checking if : is a manifest tool... no
checking for dsymutil... dsymutil
checking for nmedit... nmedit
checking for lipo... lipo
checking for otool... otool
checking for otool64... no
checking for -single_module linker flag... yes
checking for -exported_symbols_list linker flag... yes
checking for -force_load linker flag... yes
checking how to run the C preprocessor... gcc -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking for dlfcn.h... yes
checking for objdir... .libs
checking if gcc supports -fno-rtti -fno-exceptions... yes
checking for gcc option to produce PIC... -fno-common -DPIC
checking if gcc PIC flag -fno-common -DPIC works... yes
checking if gcc static flag -static works... no
checking if gcc supports -c -o file.o... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld) supports shared libraries... yes
checking dynamic linker characteristics... darwin14.1.0 dyld
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking how to run the C++ preprocessor... g++ -E
checking for ld used by g++... /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld
checking if the linker (/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld) is GNU ld... no
checking whether the g++ linker (/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld) supports shared libraries... yes
checking for g++ option to produce PIC... -fno-common -DPIC
checking if g++ PIC flag -fno-common -DPIC works... yes
checking if g++ static flag -static works... no
checking if g++ supports -c -o file.o... yes
checking if g++ supports -c -o file.o... (cached) yes
checking whether the g++ linker (/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld) supports shared libraries... yes
checking dynamic linker characteristics... darwin14.1.0 dyld
checking how to hardcode library paths into programs... immediate
checking for pkg-config... /usr/local/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for ICU... yes
checking for EXPAT... yes
checking for stdint.h... (cached) yes
checking for stdbool.h that conforms to C99... yes
checking for _Bool... yes
checking for int16_t... yes
checking for int32_t... yes
checking for size_t... yes
checking for uint16_t... yes
checking for uint32_t... yes
checking for uint8_t... yes
checking whether byte ordering is bigendian... no
checking for floor... yes
checking for strrchr... yes
checking for strtol... yes
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating Makefile
config.status: creating src/Makefile
config.status: creating tests/Makefile
config.status: creating builds/liblcf.pc
config.status: creating config.h
config.status: config.h is unchanged
config.status: executing depfiles commands
config.status: executing libtool commands

Result of make -j4, there is some warning at the end :

/Applications/Xcode.app/Contents/Developer/usr/bin/make  all-recursive
Making all in src
  CXX      liblcf_la-data.lo
  CXX      liblcf_la-ini.lo
  CXX      liblcf_la-inireader.lo
  CXX      liblcf_la-ldb_equipment.lo
  CXX      liblcf_la-ldb_eventcommand.lo
  CXX      liblcf_la-ldb_parameters.lo
  CXX      liblcf_la-ldb_reader.lo
  CXX      liblcf_la-lmt_reader.lo
  CXX      liblcf_la-lmt_rect.lo
  CXX      liblcf_la-lmt_treemap.lo
  CXX      liblcf_la-lmu_movecommand.lo
  CXX      liblcf_la-lmu_reader.lo
  CXX      liblcf_la-lsd_reader.lo
  CXX      liblcf_la-reader_flags.lo
  CXX      liblcf_la-reader_lcf.lo
  CXX      liblcf_la-reader_struct.lo
  CXX      liblcf_la-reader_util.lo
  CXX      liblcf_la-reader_xml.lo
  CXX      liblcf_la-rpg_fixup.lo
  CXX      liblcf_la-rpg_setup.lo
  CXX      liblcf_la-writer_lcf.lo
  CXX      liblcf_la-writer_xml.lo
  CXX      generated/liblcf_la-ldb_actor.lo
  CXX      generated/liblcf_la-ldb_animationcelldata.lo
  CXX      generated/liblcf_la-ldb_animation.lo
  CXX      generated/liblcf_la-ldb_animationframe.lo
  CXX      generated/liblcf_la-ldb_animationtiming.lo
  CXX      generated/liblcf_la-ldb_attribute.lo
  CXX      generated/liblcf_la-ldb_battlecommand.lo
  CXX      generated/liblcf_la-ldb_battlecommands.lo
  CXX      generated/liblcf_la-ldb_battleranimation.lo
  CXX      generated/liblcf_la-ldb_battleranimationdata.lo
  CXX      generated/liblcf_la-ldb_battleranimationextension.lo
  CXX      generated/liblcf_la-ldb_chipset.lo
  CXX      generated/liblcf_la-ldb_class.lo
  CXX      generated/liblcf_la-ldb_commonevent.lo
  CXX      generated/liblcf_la-ldb_database.lo
  CXX      generated/liblcf_la-ldb_enemyaction.lo
  CXX      generated/liblcf_la-ldb_enemy.lo
  CXX      generated/liblcf_la-ldb_itemanimation.lo
  CXX      generated/liblcf_la-ldb_item.lo
  CXX      generated/liblcf_la-ldb_learning.lo
  CXX      generated/liblcf_la-ldb_music.lo
  CXX      generated/liblcf_la-ldb_skill.lo
  CXX      generated/liblcf_la-ldb_sound.lo
  CXX      generated/liblcf_la-ldb_state.lo
  CXX      generated/liblcf_la-ldb_switch.lo
  CXX      generated/liblcf_la-ldb_system.lo
  CXX      generated/liblcf_la-ldb_terms.lo
  CXX      generated/liblcf_la-ldb_terrain.lo
  CXX      generated/liblcf_la-ldb_terrain_flags.lo
  CXX      generated/liblcf_la-ldb_testbattler.lo
  CXX      generated/liblcf_la-ldb_troop.lo
  CXX      generated/liblcf_la-ldb_troopmember.lo
  CXX      generated/liblcf_la-ldb_trooppagecondition.lo
  CXX      generated/liblcf_la-ldb_trooppagecondition_flags.lo
  CXX      generated/liblcf_la-ldb_trooppage.lo
  CXX      generated/liblcf_la-ldb_variable.lo
  CXX      generated/liblcf_la-lmt_encounter.lo
  CXX      generated/liblcf_la-lmt_mapinfo.lo
  CXX      generated/liblcf_la-lmt_start.lo
  CXX      generated/liblcf_la-lmu_event.lo
  CXX      generated/liblcf_la-lmu_eventpagecondition.lo
  CXX      generated/liblcf_la-lmu_eventpagecondition_flags.lo
  CXX      generated/liblcf_la-lmu_eventpage.lo
  CXX      generated/liblcf_la-lmu_map.lo
  CXX      generated/liblcf_la-lmu_moveroute.lo
  CXX      generated/liblcf_la-lsd_saveactor.lo
  CXX      generated/liblcf_la-lsd_savecommonevent.lo
  CXX      generated/liblcf_la-lsd_save.lo
  CXX      generated/liblcf_la-lsd_saveeventcommands.lo
  CXX      generated/liblcf_la-lsd_saveeventdata.lo
  CXX      generated/liblcf_la-lsd_saveevents.lo
  CXX      generated/liblcf_la-lsd_saveinventory.lo
  CXX      generated/liblcf_la-lsd_savemapevent.lo
  CXX      generated/liblcf_la-lsd_savemapinfo.lo
  CXX      generated/liblcf_la-lsd_savepartylocation.lo
  CXX      generated/liblcf_la-lsd_savepicture.lo
  CXX      generated/liblcf_la-lsd_savescreen.lo
  CXX      generated/liblcf_la-lsd_savesystem.lo
  CXX      generated/liblcf_la-lsd_savetarget.lo
  CXX      generated/liblcf_la-lsd_savetitle.lo
  CXX      generated/liblcf_la-lsd_savevehiclelocation.lo
  CXX      generated/liblcf_la-rpg_actor.lo
  CXX      generated/liblcf_la-rpg_animationcelldata.lo
  CXX      generated/liblcf_la-rpg_animation.lo
  CXX      generated/liblcf_la-rpg_animationframe.lo
  CXX      generated/liblcf_la-rpg_animationtiming.lo
  CXX      generated/liblcf_la-rpg_attribute.lo
  CXX      generated/liblcf_la-rpg_battlecommand.lo
  CXX      generated/liblcf_la-rpg_battlecommands.lo
  CXX      generated/liblcf_la-rpg_battleranimation.lo
  CXX      generated/liblcf_la-rpg_battleranimationdata.lo
  CXX      generated/liblcf_la-rpg_battleranimationextension.lo
  CXX      generated/liblcf_la-rpg_chipset.lo
  CXX      generated/liblcf_la-rpg_class.lo
  CXX      generated/liblcf_la-rpg_commonevent.lo
  CXX      generated/liblcf_la-rpg_encounter.lo
  CXX      generated/liblcf_la-rpg_enemyaction.lo
  CXX      generated/liblcf_la-rpg_enemy.lo
  CXX      generated/liblcf_la-rpg_equipment.lo
  CXX      generated/liblcf_la-rpg_eventcommand.lo
  CXX      generated/liblcf_la-rpg_event.lo
  CXX      generated/liblcf_la-rpg_eventpagecondition.lo
  CXX      generated/liblcf_la-rpg_eventpage.lo
  CXX      generated/liblcf_la-rpg_itemanimation.lo
  CXX      generated/liblcf_la-rpg_item.lo
  CXX      generated/liblcf_la-rpg_learning.lo
  CXX      generated/liblcf_la-rpg_map.lo
  CXX      generated/liblcf_la-rpg_mapinfo.lo
  CXX      generated/liblcf_la-rpg_movecommand.lo
  CXX      generated/liblcf_la-rpg_moveroute.lo
  CXX      generated/liblcf_la-rpg_music.lo
  CXX      generated/liblcf_la-rpg_rect.lo
  CXX      generated/liblcf_la-rpg_saveactor.lo
  CXX      generated/liblcf_la-rpg_savecommonevent.lo
  CXX      generated/liblcf_la-rpg_save.lo
  CXX      generated/liblcf_la-rpg_saveeventcommands.lo
  CXX      generated/liblcf_la-rpg_saveeventdata.lo
  CXX      generated/liblcf_la-rpg_saveevents.lo
  CXX      generated/liblcf_la-rpg_saveinventory.lo
  CXX      generated/liblcf_la-rpg_savemapevent.lo
  CXX      generated/liblcf_la-rpg_savemapinfo.lo
  CXX      generated/liblcf_la-rpg_savepartylocation.lo
  CXX      generated/liblcf_la-rpg_savepicture.lo
  CXX      generated/liblcf_la-rpg_savescreen.lo
  CXX      generated/liblcf_la-rpg_savesystem.lo
  CXX      generated/liblcf_la-rpg_savetarget.lo
  CXX      generated/liblcf_la-rpg_savetitle.lo
  CXX      generated/liblcf_la-rpg_savevehiclelocation.lo
  CXX      generated/liblcf_la-rpg_skill.lo
  CXX      generated/liblcf_la-rpg_sound.lo
  CXX      generated/liblcf_la-rpg_start.lo
  CXX      generated/liblcf_la-rpg_state.lo
  CXX      generated/liblcf_la-rpg_switch.lo
  CXX      generated/liblcf_la-rpg_system.lo
  CXX      generated/liblcf_la-rpg_terms.lo
  CXX      generated/liblcf_la-rpg_terrain.lo
  CXX      generated/liblcf_la-rpg_testbattler.lo
  CXX      generated/liblcf_la-rpg_treemap.lo
  CXX      generated/liblcf_la-rpg_troop.lo
  CXX      generated/liblcf_la-rpg_troopmember.lo
  CXX      generated/liblcf_la-rpg_trooppagecondition.lo
  CXX      generated/liblcf_la-rpg_trooppage.lo
  CXX      generated/liblcf_la-rpg_variable.lo
  CXXLD    liblcf.la
ld: warning: invalid -install_name (/usr/local/opt/expat/lib/libexpat.1.dylib) in dependent dylib (/usr/local/Cellar/expat/2.1.0_1/lib/libexpat.dylib). Dylibs/frameworks which might go in dyld shared cache cannot link with dylibs that won't be in the shared cache
ld: warning: invalid -install_name (/usr/local/opt/icu4c/lib/libicui18n.54.dylib) in dependent dylib (/usr/local/Cellar/icu4c/54.1/lib/libicui18n.dylib). Dylibs/frameworks which might go in dyld shared cache cannot link with dylibs that won't be in the shared cache
ld: warning: invalid -install_name (/usr/local/opt/icu4c/lib/libicuuc.54.dylib) in dependent dylib (/usr/local/Cellar/icu4c/54.1/lib/libicuuc.dylib). Dylibs/frameworks which might go in dyld shared cache cannot link with dylibs that won't be in the shared cache
ld: warning: invalid -install_name (/usr/local/opt/icu4c/lib/libicudata.54.1.dylib) in dependent dylib (/usr/local/Cellar/icu4c/54.1/lib/libicudata.dylib). Dylibs/frameworks which might go in dyld shared cache cannot link with dylibs that won't be in the shared cache
Making all in tests
make[2]: Nothing to be done for `all'.

Result of the sudo make install :

Making install in src
 ../builds/autoconf/install-sh -c -d '/usr/lib'
 /bin/sh ../libtool   --mode=install /usr/bin/install -c   liblcf.la '/usr/lib'
libtool: install: /usr/bin/install -c .libs/liblcf.0.dylib /usr/lib/liblcf.0.dylib
libtool: install: (cd /usr/lib && { ln -s -f liblcf.0.dylib liblcf.dylib || { rm -f liblcf.dylib && ln -s liblcf.0.dylib liblcf.dylib; }; })
libtool: install: /usr/bin/install -c .libs/liblcf.lai /usr/lib/liblcf.la
libtool: install: /usr/bin/install -c .libs/liblcf.a /usr/lib/liblcf.a
libtool: install: chmod 644 /usr/lib/liblcf.a
libtool: install: ranlib /usr/lib/liblcf.a
 ../builds/autoconf/install-sh -c -d '/usr/include/liblcf'
 /usr/bin/install -c -m 644 command_codes.h data.h ini.h inireader.h ldb_reader.h lmt_reader.h lmu_reader.h lsd_reader.h reader_lcf.h reader_options.h reader_struct.h reader_types.h reader_util.h reader_xml.h writer_lcf.h writer_xml.h generated/ldb_chunks.h generated/lmt_chunks.h generated/lmu_chunks.h generated/lsd_chunks.h generated/rpg_actor.h generated/rpg_animationcelldata.h generated/rpg_animationframe.h generated/rpg_animation.h generated/rpg_animationtiming.h generated/rpg_attribute.h generated/rpg_battlecommand.h generated/rpg_battlecommands.h generated/rpg_battleranimationdata.h generated/rpg_battleranimationextension.h generated/rpg_battleranimation.h generated/rpg_chipset.h generated/rpg_class.h generated/rpg_commonevent.h generated/rpg_database.h generated/rpg_encounter.h generated/rpg_enemyaction.h generated/rpg_enemy.h generated/rpg_equipment.h generated/rpg_eventcommand.h '/usr/include/liblcf'
 /usr/bin/install -c -m 644 generated/rpg_event.h generated/rpg_eventpagecondition.h generated/rpg_eventpage.h generated/rpg_itemanimation.h generated/rpg_item.h generated/rpg_learning.h generated/rpg_map.h generated/rpg_mapinfo.h generated/rpg_movecommand.h generated/rpg_moveroute.h generated/rpg_music.h generated/rpg_parameters.h generated/rpg_rect.h generated/rpg_saveactor.h generated/rpg_savecommonevent.h generated/rpg_saveeventcommands.h generated/rpg_saveeventdata.h generated/rpg_saveevents.h generated/rpg_save.h generated/rpg_saveinventory.h generated/rpg_savemapevent.h generated/rpg_savemapinfo.h generated/rpg_savepartylocation.h generated/rpg_savepicture.h generated/rpg_savescreen.h generated/rpg_savesystem.h generated/rpg_savetarget.h generated/rpg_savetitle.h generated/rpg_savevehiclelocation.h generated/rpg_skill.h generated/rpg_sound.h generated/rpg_start.h generated/rpg_state.h generated/rpg_switch.h generated/rpg_system.h generated/rpg_terms.h generated/rpg_terrain.h generated/rpg_testbattler.h generated/rpg_treemap.h generated/rpg_troop.h '/usr/include/liblcf'
 /usr/bin/install -c -m 644 generated/rpg_troopmember.h generated/rpg_trooppagecondition.h generated/rpg_trooppage.h generated/rpg_variable.h '/usr/include/liblcf'
Making install in tests
make[2]: Nothing to be done for `install-exec-am'.
make[2]: Nothing to be done for `install-data-am'.
make[2]: Nothing to be done for `install-exec-am'.
 builds/autoconf/install-sh -c -d '/usr/lib/pkgconfig'
 /usr/bin/install -c -m 644 builds/liblcf.pc '/usr/lib/pkgconfig'
fdelapena commented 9 years ago

I've been reading about OS X dyld source code and seems like the warning is being thrown because it is being installed into the /usr/lib path.

Before retrying I suggest to remove existing liblcf files from /usr/include and /usr/lib paths.

Try a different prefix (the installation destination) of the library or just do a ./configure without arguments. The --prefix simply says to make install the base path to install includes, libs and such.

According with this answer you can set ./configure without parameters safely and I guess sudo make install will install the library into /usr/local, which probably will be a working library search.

BlisterB commented 9 years ago

It woooooorked \o/ !!!! Thanks a lot guys ! I'll update the documentation and I will start to work on the android build :).

fdelapena commented 9 years ago

Thanks for your patience for fixing remaining issues :smile:.

Just a question before closing this: Is the easyrpg-player command working in your Mac on some game project folder from the terminal? I don't remember if still needs some "security" measure or needing a .app bundle to be run.

P.S.: The autotools method still lacks automatic OSX .app bundle generation, will be added to a Makefile.am target some day (example) or making it by hand via a Jenkins Continuous Integration job with plain shell commands in the meanwhile is nice to have. The cmake method should generate the .app already but maintaining both methods will be nice for the developer experience and platform testing.

BlisterB commented 9 years ago

easyrpg-player command works fine :) http://img11.hostingpics.net/pics/157607Capturedcran20150131173421.png

To be honest I'm quite a nooby with OSX and your programming level seems to be far far far away of mine xp. But the next year I will have lessons focused on this OS, maybe I'll be usefull for that at this moment. But the easyrpg-player command is fine for me at this moment :).