diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2005-02-13 16:05:02 +0000 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2005-02-13 16:05:02 +0000 |
commit | a6d78cfefc41d87234b22ef15f4f38a7b96e6544 (patch) | |
tree | 9eceff651b6e5ecd67dd256d5216a9f458034b5e /makefile.macosx | |
parent | b092468063d314d96aee6624cdb1a8fa78599424 (diff) | |
download | mana-client-a6d78cfefc41d87234b22ef15f4f38a7b96e6544.tar.gz mana-client-a6d78cfefc41d87234b22ef15f4f38a7b96e6544.tar.bz2 mana-client-a6d78cfefc41d87234b22ef15f4f38a7b96e6544.tar.xz mana-client-a6d78cfefc41d87234b22ef15f4f38a7b96e6544.zip |
Should now compile on Linux again.
Diffstat (limited to 'makefile.macosx')
-rw-r--r-- | makefile.macosx | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/makefile.macosx b/makefile.macosx index ab1e9864..733ea7a8 100644 --- a/makefile.macosx +++ b/makefile.macosx @@ -3,9 +3,12 @@ CXX = g++ #CXXFLAGS = -g -march=i686 -O2 # excessive optimizations for pentium pro and later -CXXFLAGS =-Wall -O3 -fexpensive-optimizations -pipe -fomit-frame-pointer -funroll-loops -DMACOSX -fexceptions `sdl-config --cflags` +CXXFLAGS = -Wall -O3 -fexpensive-optimizations -pipe -fomit-frame-pointer \ + -funroll-loops -DMACOSX -fexceptions `sdl-config --cflags` \ + `pkg-config --cflags libxml-2.0` -CFLAGS=`allegro-config --libs release` `sdl-config --libs` -lSDL_mixer -lguichan_allegro -lguichan +LIBS := `sdl-config --libs` -lguichan_sdl -lguichan -lSDL_mixer -lSDL_image \ + `pkg-config --libs libxml-2.0` include file.list MODULES += src/net/win2mac.cpp |