diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-08-29 15:32:45 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-08-29 15:32:45 +0300 |
commit | d8e7f47c19fbfd598ba5da6c31369e6ff1aefc8e (patch) | |
tree | 04a921a8f7fac65bf331c8a434394bce96fb0bcd /src | |
parent | 7dff88ae9de70454e792bf90679948eb174b1aee (diff) | |
download | plus-d8e7f47c19fbfd598ba5da6c31369e6ff1aefc8e.tar.gz plus-d8e7f47c19fbfd598ba5da6c31369e6ff1aefc8e.tar.bz2 plus-d8e7f47c19fbfd598ba5da6c31369e6ff1aefc8e.tar.xz plus-d8e7f47c19fbfd598ba5da6c31369e6ff1aefc8e.zip |
fix includes dirs if build was run not from top directory.
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index a886be801..8606995be 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -30,13 +30,13 @@ manaplus_CXXFLAGS += -DUSE_MUMBLE endif if USE_SDL2 -manaplus_CXXFLAGS += -DUSE_SDL2 +manaplus_CXXFLAGS += -I$(srcdir)/sdl2gfx -DUSE_SDL2 manaplus_SOURCES += sdl2gfx/SDL_framerate.c \ sdl2gfx/SDL_framerate.h endif if USE_INTERNALGUICHAN -manaplus_CXXFLAGS += -DUSE_INTERNALGUICHAN +manaplus_CXXFLAGS += -I$(srcdir)/guichan/include -DUSE_INTERNALGUICHAN manaplus_SOURCES += guichan/include/guichan/actionevent.hpp \ guichan/include/guichan/actionlistener.hpp \ guichan/include/guichan/basiccontainer.hpp \ @@ -902,4 +902,4 @@ EXTRA_DIST = CMakeLists.txt \ SDLMain.m # set the include path found by configure -INCLUDES = $(all_includes) +AM_CPPFLAGS = $(all_includes) |