diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2005-05-21 18:52:10 +0000 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2005-05-21 18:52:10 +0000 |
commit | f9dc623ed4984c8ee734185021eb60e4d58a5416 (patch) | |
tree | e950a82aac9b380fdda018aadbe89ee8e90b986f /makefile.static | |
parent | 43cc3edb678ac7aab675395dd853b180d734c8dd (diff) | |
download | mana-f9dc623ed4984c8ee734185021eb60e4d58a5416.tar.gz mana-f9dc623ed4984c8ee734185021eb60e4d58a5416.tar.bz2 mana-f9dc623ed4984c8ee734185021eb60e4d58a5416.tar.xz mana-f9dc623ed4984c8ee734185021eb60e4d58a5416.zip |
Removed old build system.
Diffstat (limited to 'makefile.static')
-rw-r--r-- | makefile.static | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/makefile.static b/makefile.static deleted file mode 100644 index 3bdc109e..00000000 --- a/makefile.static +++ /dev/null @@ -1,32 +0,0 @@ -CXX = g++ -# for debugging -CXXFLAGS += -g -march=i686 -O2 -Wall -D__DEBUG - -# excessive optimizations for pentium pro and later -#CXXFLAGS +=-Wall -march=i686 -O3 -fexpensive-optimizations -pipe -fomit-frame-pointer -funroll-loops -fexceptions -CXXFLAGS += `sdl-config --cflags` -fexceptions `pkg-config --cflags libxml-2.0` - -LIBS := `sdl-config --libs` -lguichan_sdl -lguichan -lSDL_mixer -lSDL_image \ - `pkg-config --libs libxml-2.0` -lphysfs - -include file.list - -OBJS := $(patsubst src%, obj%, $(patsubst %.cpp, %.o, $(MODULES))) - -tmw: $(OBJS) - $(CXX) -o tmw $(OBJS) $(LIBS) - @echo - - @echo - - @echo "TYPE ./tmw TO LAUCH THE GAME" - -clean: - - rm -fv obj/*.o - - rm -fv obj/net/*.o - - rm -fv obj/gui/*.o - - rm -fv obj/sound/*.o - - rm -fv obj/graphic/*.o - - rm -fv obj/resources/*.o - - rm -fv tmw - -obj/%.o: src/%.cpp - $(CXX) $(CXXFLAGS) -c $< -o $@ |