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 | |
parent | 43cc3edb678ac7aab675395dd853b180d734c8dd (diff) | |
download | mana-client-f9dc623ed4984c8ee734185021eb60e4d58a5416.tar.gz mana-client-f9dc623ed4984c8ee734185021eb60e4d58a5416.tar.bz2 mana-client-f9dc623ed4984c8ee734185021eb60e4d58a5416.tar.xz mana-client-f9dc623ed4984c8ee734185021eb60e4d58a5416.zip |
Removed old build system.
-rw-r--r-- | file.list | 63 | ||||
-rw-r--r-- | makefile.linuxppc | 34 | ||||
-rw-r--r-- | makefile.macosx | 34 | ||||
-rw-r--r-- | makefile.mgw | 31 | ||||
-rw-r--r-- | makefile.opengl | 32 | ||||
-rw-r--r-- | makefile.static | 32 | ||||
-rw-r--r-- | obj/graphic/placeholder.txt | 1 | ||||
-rw-r--r-- | obj/gui/placeholder.txt | 1 | ||||
-rw-r--r-- | obj/net/placeholder.txt | 1 | ||||
-rw-r--r-- | obj/resources/placeholder.txt | 1 | ||||
-rw-r--r-- | obj/sound/placeholder.txt | 1 |
11 files changed, 0 insertions, 231 deletions
diff --git a/file.list b/file.list deleted file mode 100644 index fdb479bf..00000000 --- a/file.list +++ /dev/null @@ -1,63 +0,0 @@ -MODULES = src/sound.cpp \ - src/graphic/spriteset.cpp \ - src/gui/button.cpp \ - src/gui/buy.cpp \ - src/gui/buysell.cpp \ - src/gui/chargedialog.cpp \ - src/gui/char_server.cpp \ - src/gui/char_select.cpp \ - src/gui/chat.cpp \ - src/gui/chatinput.cpp \ - src/gui/checkbox.cpp \ - src/gui/confirm_dialog.cpp \ - src/gui/equipment.cpp \ - src/gui/gui.cpp \ - src/gui/inventory.cpp \ - src/gui/itemcontainer.cpp \ - src/gui/item_amount.cpp \ - src/gui/listbox.cpp \ - src/gui/login.cpp \ - src/gui/minimap.cpp \ - src/gui/newskill.cpp \ - src/gui/npc.cpp \ - src/gui/npc_text.cpp \ - src/gui/ok_dialog.cpp \ - src/gui/passwordfield.cpp \ - src/gui/playerbox.cpp \ - src/gui/progressbar.cpp \ - src/gui/radiobutton.cpp \ - src/gui/requesttrade.cpp \ - src/gui/scrollarea.cpp \ - src/gui/sell.cpp \ - src/gui/setup.cpp \ - src/gui/skill.cpp \ - src/gui/slider.cpp \ - src/gui/stats.cpp \ - src/gui/status.cpp \ - src/gui/textbox.cpp \ - src/gui/textfield.cpp \ - src/gui/trade.cpp \ - src/gui/window.cpp \ - src/gui/windowcontainer.cpp \ - src/net/network.cpp \ - src/net/protocol.cpp \ - src/resources/image.cpp \ - src/resources/iteminfo.cpp \ - src/resources/itemmanager.cpp \ - src/resources/mapreader.cpp \ - src/resources/music.cpp \ - src/resources/resource.cpp \ - src/resources/resourcemanager.cpp \ - src/resources/soundeffect.cpp \ - src/configuration.cpp \ - src/base64.cpp \ - src/being.cpp \ - src/engine.cpp \ - src/floor_item.cpp \ - src/game.cpp \ - src/graphics.cpp \ - src/main.cpp \ - src/map.cpp \ - src/log.cpp \ - src/resources/buddylist.cpp \ - src/gui/buddywindow.cpp diff --git a/makefile.linuxppc b/makefile.linuxppc deleted file mode 100644 index 978313f8..00000000 --- a/makefile.linuxppc +++ /dev/null @@ -1,34 +0,0 @@ -CXX = g++ -# for debugging -#CXXFLAGS = -g -march=i686 -O2 - -# excessive optimizations for pentium pro and later -CXXFLAGS = -Wall -O3 -fexpensive-optimizations -pipe -fomit-frame-pointer \ - -funroll-loops -DLINUXPPC -fexceptions `sdl-config --cflags` \ - `pkg-config --cflags libxml-2.0` - -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 - -OBJS := $(patsubst src%, obj%, $(patsubst %.cpp, %.o, $(MODULES))) - -tmw: $(OBJS) - $(CXX) -o tmw $(OBJS) $(CFLAGS) - @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 $@ diff --git a/makefile.macosx b/makefile.macosx deleted file mode 100644 index 733ea7a8..00000000 --- a/makefile.macosx +++ /dev/null @@ -1,34 +0,0 @@ -CXX = g++ -# for debugging -#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` \ - `pkg-config --cflags libxml-2.0` - -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 - -OBJS := $(patsubst src%, obj%, $(patsubst %.cpp, %.o, $(MODULES))) - -tmw: $(OBJS) - $(CXX) -o tmw $(OBJS) $(CFLAGS) - @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 $@ diff --git a/makefile.mgw b/makefile.mgw deleted file mode 100644 index e3c54fff..00000000 --- a/makefile.mgw +++ /dev/null @@ -1,31 +0,0 @@ -CXX = g++ -# for debugging -#CXXFLAGS += -g -march=i686 -O2 - -# excessive optimizations for pentium pro and later -CXXFLAGS += -Wall -march=i686 -O3 -fexpensive-optimizations -pipe \ - -fomit-frame-pointer -funroll-loops -fexceptions - -LIBS := -lguichan_sdl -lguichan -lSDL_mixer -lSDL_image -lSDL -lws2_32 - -include file.list - -OBJS := $(patsubst src%, obj%, $(patsubst %.cpp, %.o, $(MODULES))) - -tmw.exe: $(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 $@ diff --git a/makefile.opengl b/makefile.opengl deleted file mode 100644 index ce55fbe8..00000000 --- a/makefile.opengl +++ /dev/null @@ -1,32 +0,0 @@ -CXX = g++ -# for debugging -CXXFLAGS += -g -march=i686 -O2 -Wall -D__DEBUG -DUSE_OPENGL - -# 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_opengl -lguichan \ - -lSDL_mixer -lSDL_image `pkg-config --libs libxml-2.0` -lGL -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 $@ 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 $@ diff --git a/obj/graphic/placeholder.txt b/obj/graphic/placeholder.txt deleted file mode 100644 index b951fc55..00000000 --- a/obj/graphic/placeholder.txt +++ /dev/null @@ -1 +0,0 @@ -This file is here to make sure the otherwise empty directory is created. diff --git a/obj/gui/placeholder.txt b/obj/gui/placeholder.txt deleted file mode 100644 index b951fc55..00000000 --- a/obj/gui/placeholder.txt +++ /dev/null @@ -1 +0,0 @@ -This file is here to make sure the otherwise empty directory is created. diff --git a/obj/net/placeholder.txt b/obj/net/placeholder.txt deleted file mode 100644 index b951fc55..00000000 --- a/obj/net/placeholder.txt +++ /dev/null @@ -1 +0,0 @@ -This file is here to make sure the otherwise empty directory is created. diff --git a/obj/resources/placeholder.txt b/obj/resources/placeholder.txt deleted file mode 100644 index b951fc55..00000000 --- a/obj/resources/placeholder.txt +++ /dev/null @@ -1 +0,0 @@ -This file is here to make sure the otherwise empty directory is created. diff --git a/obj/sound/placeholder.txt b/obj/sound/placeholder.txt deleted file mode 100644 index b951fc55..00000000 --- a/obj/sound/placeholder.txt +++ /dev/null @@ -1 +0,0 @@ -This file is here to make sure the otherwise empty directory is created. |