diff options
author | Yohann Ferreira <yohann_dot_ferreira_at_orange_dot_efer> | 2010-12-06 20:37:13 +0100 |
---|---|---|
committer | Yohann Ferreira <yohann_dot_ferreira_at_orange_dot_efer> | 2010-12-06 20:37:13 +0100 |
commit | 48241af5432ee8248151c41bdc5321ba508f1d11 (patch) | |
tree | 5e06ec943114e4c2d512b8e91792ce74d0a194bf | |
parent | 3f55464f83203e8ddafa77af9290a7c0d4fb1d2a (diff) | |
download | mana-48241af5432ee8248151c41bdc5321ba508f1d11.tar.gz mana-48241af5432ee8248151c41bdc5321ba508f1d11.tar.bz2 mana-48241af5432ee8248151c41bdc5321ba508f1d11.tar.xz mana-48241af5432ee8248151c41bdc5321ba508f1d11.zip |
Removed deprecated autotools support.
-rw-r--r-- | Makefile.am | 20 | ||||
-rwxr-xr-x | configure.ac | 154 | ||||
-rw-r--r-- | po/Makevars | 41 | ||||
-rw-r--r-- | src/Makefile.am | 513 |
4 files changed, 0 insertions, 728 deletions
diff --git a/Makefile.am b/Makefile.am deleted file mode 100644 index 462ff439..00000000 --- a/Makefile.am +++ /dev/null @@ -1,20 +0,0 @@ -# Subdirectories to build -SUBDIRS = data docs po src - -desktopdir = $(datarootdir)/applications - -desktop_DATA = mana.desktop - -# Extra files to include -EXTRA_DIST = $(desktop_DATA) \ - CMakeLists.txt \ - po/CMakeLists.txt \ - CMake/Modules/FindENet.cmake \ - CMake/Modules/FindGuichan.cmake \ - CMake/Modules/FindLibIntl.cmake \ - CMake/Modules/FindSDL_gfx.cmake \ - mana.cbp \ - mana.menu - -# Autopoint m4 stuff -ACLOCAL_AMFLAGS = -I m4 diff --git a/configure.ac b/configure.ac deleted file mode 100755 index 64097586..00000000 --- a/configure.ac +++ /dev/null @@ -1,154 +0,0 @@ -AC_PREREQ(2.59) -AC_INIT([Mana], [1.0.0-beta2], [dev@manasource.org], [mana]) -AM_INIT_AUTOMAKE([1.9]) -AC_CONFIG_HEADERS([config.h:config.h.in]) -AC_LANG_CPLUSPLUS - -# Checks for programs. -AC_PROG_CXX -AC_PROG_INSTALL - -# Checks for typedefs, structures, and compiler characteristics. -AC_HEADER_TIME - -# Checks for library functions. -AC_FUNC_ERROR_AT_LINE -AC_FUNC_MALLOC -AC_FUNC_REALLOC -AC_FUNC_SELECT_ARGTYPES -AC_FUNC_VPRINTF -AC_CHECK_FUNCS([atexit floor getcwd gethostbyname memset mkdir select socket]) - -# Checks for internationalization support -AM_GNU_GETTEXT([external]) -AM_GNU_GETTEXT_VERSION([0.16.1]) - -# Search for *-config -AC_PATH_PROG(SDL_CONFIG, sdl-config) -AC_PATH_PROG(PKG_CONFIG, pkg-config) -AC_PATH_PROG(CURL_CONFIG, curl-config) - -# Checks for libraries -AC_CHECK_LIB([pthread], [pthread_create], , -AC_MSG_ERROR([ *** Unable to find pthread library])) - -AC_CHECK_LIB([guichan], [gcnGuichanVersion], , -AC_MSG_ERROR([ *** Unable to find Guichan library (http://guichan.sf.net/)])) -AC_CHECK_HEADERS([guichan.hpp], , -AC_MSG_ERROR([ *** Guichan library found but cannot find headers (http://guichan.sf.net/)])) - -if test -n "$SDL_CONFIG"; then - LIBS="$LIBS `$SDL_CONFIG --libs`" - CPPFLAGS="$CPPFLAGS `$SDL_CONFIG --cflags`" -fi -AC_CHECK_LIB([SDL], [SDL_Init], , -AC_MSG_ERROR([ *** Unable to find SDL library (http://www.libsdl.org/)])) -AC_CHECK_HEADERS([SDL.h], , -AC_MSG_ERROR([ *** SDL library found but cannot find headers (http://www.libsdl.org/)])) - -AC_CHECK_LIB([z], [inflate], , -AC_MSG_ERROR([ *** Unable to find zlib (http://www.gzip.org/zlib/)])) - -AC_CHECK_LIB([physfs], [PHYSFS_init], , -AC_MSG_ERROR([ *** Unable to find PhysFS library (http://icculus.org/physfs/)])) -AC_CHECK_HEADERS([physfs.h], , -AC_MSG_ERROR([ *** PhysFS library found but cannot find headers (http://icculus.org/physfs/)])) - -if test -n "$CURL_CONFIG"; then - LIBS="$LIBS `$CURL_CONFIG --libs`" - CPPFLAGS="$CPPFLAGS `$CURL_CONFIG --cflags`" -fi -AC_CHECK_LIB([curl], [curl_global_init], , -AC_MSG_ERROR([ *** Unable to find CURL library (http://curl.haxx.se/)])) -AC_CHECK_HEADERS([curl/curl.h], , -AC_MSG_ERROR([ *** CURL library found but cannot find headers (http://curl.haxx.se/)])) - -if test -n "$PKG_CONFIG"; then - LIBS="$LIBS `$PKG_CONFIG --libs libxml-2.0`" - CPPFLAGS="$CPPFLAGS `$PKG_CONFIG --cflags libxml-2.0`" -fi -AC_CHECK_LIB([xml2], [xmlInitParser], , -AC_MSG_ERROR([ *** Unable to find libxml2 library (http://xmlsoft.org/)])) -AC_CHECK_HEADERS([libxml/xmlreader.h], , -AC_MSG_ERROR([ *** libxml2 library found but cannot find headers (http://xmlsoft.org/)])) - -AC_CHECK_LIB(png, png_write_info, , -AC_MSG_ERROR([ *** Unable to find png library])) - -AC_CHECK_LIB(SDL_image, IMG_LoadPNG_RW, , -AC_MSG_ERROR([ *** Unable to find SDL_image library with PNG support -(http://www.libsdl.org/projects/SDL_image/)])) - -AC_CHECK_LIB(SDL_ttf, TTF_Quit, , -AC_MSG_ERROR([ *** Unable to find SDL_ttf library (http://www.libsdl.org/projects/SDL_ttf/)])) - -AC_CHECK_LIB([SDL_mixer], [Mix_OpenAudio], , -AC_MSG_ERROR([ *** Unable to find SDL_mixer library (http://www.libsdl.org/projects/SDL_mixer/)])) - -AC_CHECK_LIB([guichan_sdl], [gcnSDL], , -AC_MSG_ERROR([ *** Unable to find Guichan SDL library (http://guichan.sf.net/)])) - -AC_CHECK_LIB(SDL_gfx, rotozoomSurfaceXY, , -AC_MSG_ERROR([ *** Unable to find SDL_gfx library (http://www.ferzkopp.net/joomla/software-mainmenu-14/4-ferzkopps-linux-software/19-sdlgfx)])) -AC_CHECK_HEADERS(SDL_rotozoom.h, ,) - -# === Check for X11 (check borrowed from Wormux) ======================== -# Deactivated on purpose under OSX (in case X11 SDK is installed) -if test "x$OSX" != "xyes" ; then - AC_CHECK_HEADER(X11/Xlib.h, check_x11="yes",check_x11="no") - if test x${check_x11} = xno ; then - AC_CHECK_HEADER(X11R6/Xlib.h, - [ check_x11="yes" - LDFLAGS="-L/usr/X11R6/include $CFLAGS"], - check_x11="no") - fi - if test x${check_x11} = xyes ; then - AC_CHECK_LIB(X11, XOpenDisplay, - [ LIBS="$LIBS -lX11" - AC_DEFINE(USE_X11, 1, [Define to use X11 copy'n'paste]) ], - []) - fi -fi - -# Checks for header files. -AC_HEADER_STDC -AC_CHECK_HEADERS([arpa/inet.h fcntl.h malloc.h netdb.h netinet/in.h stdlib.h string.h sys/socket.h unistd.h]) - -# Option to enable OpenGL -AC_ARG_WITH(opengl,[ --without-opengl don't use OpenGL ] ) -if test "x$with_opengl" == "xno"; then - with_opengl=no -else - with_opengl=yes - AC_CHECK_LIB([GL], [glBegin], , - AC_MSG_ERROR([ *** Unable to find OpenGL library])) - AC_DEFINE(USE_OPENGL, 1, [Defines if Mana should have OpenGL support]) -fi - -AC_CHECK_LIB([enet], [enet_initialize], , -AC_MSG_ERROR([ *** Unable to find enet library (http://enet.bespin.org/)])) -AC_CHECK_LIB(SDL_net, SDLNet_Init, , -AC_MSG_ERROR([ *** Unable to find SDL_net library])) - -AC_CONFIG_FILES([ -Makefile -src/Makefile -data/Makefile -data/fonts/Makefile -data/graphics/Makefile -data/graphics/gui/Makefile -data/graphics/images/Makefile -data/graphics/sprites/Makefile -data/help/Makefile -data/icons/Makefile -docs/Makefile -po/Makefile.in -]) - -AC_OUTPUT - -echo -echo "Build with OpenGL: $with_opengl" -echo -echo "configure complete, now type \"make\"" -echo diff --git a/po/Makevars b/po/Makevars deleted file mode 100644 index 9cb69886..00000000 --- a/po/Makevars +++ /dev/null @@ -1,41 +0,0 @@ -# Makefile variables for PO directory in any package using GNU gettext. - -# Usually the message domain is the same as the package name. -DOMAIN = mana - -# These two variables depend on the location of this directory. -subdir = po -top_builddir = .. - -# These options get passed to xgettext. -XGETTEXT_OPTIONS = --keyword=_ --keyword=N_ - -# This is the copyright holder that gets inserted into the header of the -# $(DOMAIN).pot file. Set this to the copyright holder of the surrounding -# package. (Note that the msgstr strings, extracted from the package's -# sources, belong to the copyright holder of the package.) Translators are -# expected to transfer the copyright for their translations to this person -# or entity, or to disclaim their copyright. The empty string stands for -# the public domain; in this case the translators are expected to disclaim -# their copyright. -COPYRIGHT_HOLDER = The Mana Developers - -# This is the email address or URL to which the translators shall report -# bugs in the untranslated strings: -# - Strings which are not entire sentences, see the maintainer guidelines -# in the GNU gettext documentation, section 'Preparing Strings'. -# - Strings which use unclear terms or require additional context to be -# understood. -# - Strings which make invalid assumptions about notation of date, time or -# money. -# - Pluralisation problems. -# - Incorrect English spelling. -# - Incorrect formatting. -# It can be your email address, or a mailing list address where translators -# can write to without being subscribed, or the URL of a web page through -# which the translators can contact you. -MSGID_BUGS_ADDRESS = - -# This is the list of locale categories, beyond LC_MESSAGES, for which the -# message catalogs shall be used. It is usually empty. -EXTRA_LOCALE_CATEGORIES = diff --git a/src/Makefile.am b/src/Makefile.am deleted file mode 100644 index 1f2391a8..00000000 --- a/src/Makefile.am +++ /dev/null @@ -1,513 +0,0 @@ -AUTOMAKE_OPTIONS = subdir-objects - -bin_PROGRAMS = mana - -mana_CXXFLAGS = -DPKG_DATADIR=\""$(pkgdatadir)/"\" \ - -DLOCALEDIR=\""$(localedir)"\" \ - -Wall - -mana_SOURCES = gui/widgets/avatarlistbox.cpp \ - gui/widgets/avatarlistbox.h \ - gui/widgets/browserbox.cpp \ - gui/widgets/browserbox.h \ - gui/widgets/button.cpp \ - gui/widgets/button.h \ - gui/widgets/channeltab.cpp \ - gui/widgets/channeltab.h \ - gui/widgets/chattab.cpp \ - gui/widgets/chattab.h \ - gui/widgets/checkbox.cpp \ - gui/widgets/checkbox.h \ - gui/widgets/container.cpp \ - gui/widgets/container.h \ - gui/widgets/desktop.cpp \ - gui/widgets/desktop.h \ - gui/widgets/dropdown.cpp \ - gui/widgets/dropdown.h \ - gui/widgets/emoteshortcutcontainer.cpp \ - gui/widgets/emoteshortcutcontainer.h \ - gui/widgets/flowcontainer.cpp \ - gui/widgets/flowcontainer.h \ - gui/widgets/icon.cpp \ - gui/widgets/icon.h \ - gui/widgets/inttextfield.cpp \ - gui/widgets/inttextfield.h \ - gui/widgets/itemcontainer.cpp \ - gui/widgets/itemcontainer.h \ - gui/widgets/itemlinkhandler.cpp \ - gui/widgets/itemlinkhandler.h \ - gui/widgets/itemshortcutcontainer.cpp \ - gui/widgets/itemshortcutcontainer.h \ - gui/widgets/label.cpp \ - gui/widgets/label.h \ - gui/widgets/layout.cpp \ - gui/widgets/layout.h \ - gui/widgets/layouthelper.cpp \ - gui/widgets/layouthelper.h \ - gui/widgets/linkhandler.h \ - gui/widgets/listbox.cpp \ - gui/widgets/listbox.h \ - gui/widgets/passwordfield.cpp \ - gui/widgets/passwordfield.h \ - gui/widgets/playerbox.cpp \ - gui/widgets/playerbox.h \ - gui/widgets/popup.cpp \ - gui/widgets/popup.h \ - gui/widgets/progressbar.cpp \ - gui/widgets/progressbar.h \ - gui/widgets/progressindicator.cpp \ - gui/widgets/progressindicator.h \ - gui/widgets/radiobutton.cpp \ - gui/widgets/radiobutton.h \ - gui/widgets/resizegrip.cpp \ - gui/widgets/resizegrip.h \ - gui/widgets/scrollarea.cpp \ - gui/widgets/scrollarea.h \ - gui/widgets/setuptab.cpp \ - gui/widgets/setuptab.h \ - gui/widgets/shopitems.cpp \ - gui/widgets/shopitems.h \ - gui/widgets/shoplistbox.cpp \ - gui/widgets/shoplistbox.h \ - gui/widgets/shortcutcontainer.cpp \ - gui/widgets/shortcutcontainer.h \ - gui/widgets/slider.cpp \ - gui/widgets/slider.h \ - gui/widgets/tab.cpp \ - gui/widgets/tab.h \ - gui/widgets/tabbedarea.cpp \ - gui/widgets/tabbedarea.h \ - gui/widgets/table.cpp \ - gui/widgets/table.h \ - gui/widgets/tablemodel.cpp \ - gui/widgets/tablemodel.h \ - gui/widgets/textbox.cpp \ - gui/widgets/textbox.h \ - gui/widgets/textfield.cpp \ - gui/widgets/textfield.h \ - gui/widgets/textpreview.cpp \ - gui/widgets/textpreview.h \ - gui/widgets/vertcontainer.cpp \ - gui/widgets/vertcontainer.h \ - gui/widgets/whispertab.cpp \ - gui/widgets/whispertab.h \ - gui/widgets/window.cpp \ - gui/widgets/window.h \ - gui/widgets/windowcontainer.cpp \ - gui/widgets/windowcontainer.h \ - gui/beingpopup.cpp \ - gui/beingpopup.h \ - gui/buy.cpp \ - gui/buy.h \ - gui/buysell.cpp \ - gui/buysell.h \ - gui/changeemaildialog.cpp \ - gui/changeemaildialog.h \ - gui/changepassworddialog.cpp \ - gui/changepassworddialog.h \ - gui/charselectdialog.cpp \ - gui/charselectdialog.h \ - gui/charcreatedialog.cpp \ - gui/charcreatedialog.h \ - gui/chat.cpp \ - gui/chat.h \ - gui/confirmdialog.cpp \ - gui/confirmdialog.h \ - gui/connectiondialog.cpp \ - gui/connectiondialog.h \ - gui/debugwindow.cpp \ - gui/debugwindow.h \ - gui/emotepopup.cpp \ - gui/emotepopup.h \ - gui/equipmentwindow.cpp \ - gui/equipmentwindow.h \ - gui/focushandler.cpp \ - gui/focushandler.h \ - gui/gui.cpp \ - gui/gui.h \ - gui/help.cpp \ - gui/help.h \ - gui/inventorywindow.cpp \ - gui/inventorywindow.h \ - gui/itemamount.cpp \ - gui/itemamount.h \ - gui/itempopup.cpp \ - gui/itempopup.h \ - gui/login.cpp \ - gui/login.h \ - gui/minimap.cpp \ - gui/minimap.h \ - gui/ministatus.cpp \ - gui/ministatus.h \ - gui/npcdialog.cpp \ - gui/npcdialog.h \ - gui/npcpostdialog.cpp \ - gui/npcpostdialog.h \ - gui/okdialog.cpp \ - gui/okdialog.h \ - gui/outfitwindow.cpp \ - gui/outfitwindow.h \ - gui/palette.cpp \ - gui/palette.h \ - gui/popupmenu.cpp \ - gui/popupmenu.h \ - gui/quitdialog.cpp \ - gui/quitdialog.h \ - gui/recorder.cpp \ - gui/recorder.h \ - gui/register.cpp \ - gui/register.h \ - gui/sdlinput.cpp \ - gui/sdlinput.h \ - gui/sell.cpp \ - gui/sell.h \ - gui/serverdialog.cpp \ - gui/serverdialog.h \ - gui/setup.cpp \ - gui/setup.h \ - gui/setup_audio.cpp \ - gui/setup_audio.h \ - gui/setup_colors.cpp \ - gui/setup_colors.h \ - gui/setup_joystick.cpp \ - gui/setup_joystick.h \ - gui/setup_keyboard.cpp \ - gui/setup_keyboard.h \ - gui/setup_players.cpp \ - gui/setup_players.h \ - gui/setup_video.cpp \ - gui/setup_video.h \ - gui/shortcutwindow.cpp \ - gui/shortcutwindow.h \ - gui/skilldialog.cpp \ - gui/skilldialog.h \ - gui/socialwindow.cpp \ - gui/socialwindow.h \ - gui/speechbubble.cpp \ - gui/speechbubble.h \ - gui/specialswindow.cpp \ - gui/specialswindow.h \ - gui/statuswindow.cpp \ - gui/statuswindow.h \ - gui/textdialog.cpp \ - gui/textdialog.h \ - gui/textpopup.cpp \ - gui/textpopup.h \ - gui/theme.cpp \ - gui/theme.h \ - gui/trade.cpp \ - gui/trade.h \ - gui/truetypefont.cpp \ - gui/truetypefont.h \ - gui/unregisterdialog.cpp \ - gui/unregisterdialog.h \ - gui/updatewindow.cpp \ - gui/updatewindow.h \ - gui/userpalette.cpp \ - gui/userpalette.h \ - gui/viewport.cpp \ - gui/viewport.h \ - gui/windowmenu.cpp \ - gui/windowmenu.h \ - gui/worldselectdialog.cpp \ - gui/worldselectdialog.h \ - net/adminhandler.h \ - net/charhandler.cpp \ - net/charhandler.h \ - net/chathandler.h \ - net/download.cpp \ - net/download.h \ - net/gamehandler.h \ - net/generalhandler.h \ - net/guildhandler.h \ - net/inventoryhandler.h \ - net/logindata.h \ - net/loginhandler.h \ - net/messagehandler.h \ - net/messagein.cpp \ - net/messagein.h \ - net/messageout.cpp \ - net/messageout.h \ - net/npchandler.h \ - net/net.cpp \ - net/net.h \ - net/partyhandler.h \ - net/playerhandler.h \ - net/serverinfo.h \ - net/specialhandler.h \ - net/tradehandler.h \ - net/worldinfo.h \ - resources/action.cpp \ - resources/action.h \ - resources/ambientlayer.cpp \ - resources/ambientlayer.h \ - resources/ambientoverlay.cpp \ - resources/ambientoverlay.h \ - resources/animation.cpp \ - resources/animation.h \ - resources/colordb.cpp \ - resources/colordb.h \ - resources/dye.cpp \ - resources/dye.h \ - resources/emotedb.cpp \ - resources/emotedb.h \ - resources/image.cpp \ - resources/image.h \ - resources/imageloader.cpp \ - resources/imageloader.h \ - resources/imageset.h \ - resources/imageset.cpp \ - resources/imagewriter.cpp \ - resources/imagewriter.h \ - resources/itemdb.cpp \ - resources/itemdb.h \ - resources/iteminfo.h \ - resources/iteminfo.cpp \ - resources/mapreader.cpp \ - resources/mapreader.h \ - resources/monsterdb.cpp \ - resources/monsterdb.h \ - resources/monsterinfo.cpp \ - resources/monsterinfo.h \ - resources/music.cpp \ - resources/music.h \ - resources/npcdb.cpp \ - resources/npcdb.h \ - resources/resource.cpp \ - resources/resource.h \ - resources/resourcemanager.cpp \ - resources/resourcemanager.h \ - resources/soundeffect.h \ - resources/soundeffect.cpp \ - resources/spritedef.h \ - resources/spritedef.cpp \ - resources/wallpaper.cpp \ - resources/wallpaper.h \ - utils/base64.cpp \ - utils/base64.h \ - utils/copynpaste.cpp \ - utils/copynpaste.h \ - utils/dtor.h \ - utils/gettext.h \ - utils/mathutils.h \ - utils/mkdir.cpp \ - utils/mkdir.h \ - utils/sha256.cpp \ - utils/sha256.h \ - utils/specialfolder.cpp \ - utils/specialfolder.h \ - utils/stringutils.cpp \ - utils/stringutils.h \ - utils/mutex.h \ - utils/xml.cpp \ - utils/xml.h \ - utils/zlib.cpp \ - utils/zlib.h \ - animatedsprite.cpp \ - animatedsprite.h \ - animationparticle.cpp \ - animationparticle.h \ - avatar.cpp \ - avatar.h \ - being.cpp \ - being.h \ - beingmanager.cpp \ - beingmanager.h \ - client.cpp \ - client.h \ - channel.cpp \ - channel.h \ - channelmanager.cpp \ - channelmanager.h \ - commandhandler.cpp \ - commandhandler.h \ - configlistener.h \ - configuration.cpp \ - configuration.h \ - effectmanager.cpp \ - effectmanager.h \ - emoteshortcut.cpp \ - emoteshortcut.h \ - equipment.h \ - flooritem.cpp \ - flooritem.h \ - flooritemmanager.cpp \ - flooritemmanager.h \ - game.cpp \ - game.h \ - graphics.cpp \ - graphics.h \ - guichanfwd.h \ - guild.cpp \ - guild.h \ - imageparticle.cpp \ - imageparticle.h \ - inventory.cpp \ - inventory.h \ - item.cpp \ - item.h \ - itemshortcut.cpp \ - itemshortcut.h \ - joystick.cpp \ - joystick.h \ - keyboardconfig.cpp \ - keyboardconfig.h \ - localplayer.cpp \ - localplayer.h \ - log.cpp \ - log.h \ - main.cpp \ - main.h \ - map.cpp\ - map.h \ - monster.cpp\ - monster.h \ - npc.cpp \ - npc.h \ - openglgraphics.cpp\ - openglgraphics.h \ - particle.cpp \ - particle.h \ - particlecontainer.cpp \ - particlecontainer.h \ - particleemitter.cpp \ - particleemitter.h \ - particleemitterprop.h \ - party.cpp \ - party.h \ - player.cpp \ - player.h \ - playerrelations.cpp \ - playerrelations.h \ - position.cpp \ - position.h \ - properties.h \ - rotationalparticle.cpp \ - rotationalparticle.h \ - shopitem.cpp \ - shopitem.h \ - simpleanimation.cpp \ - simpleanimation.h \ - sound.cpp \ - sound.h \ - sprite.h \ - statuseffect.cpp \ - statuseffect.h \ - text.cpp \ - text.h \ - textmanager.cpp \ - textmanager.h \ - textparticle.cpp \ - textparticle.h \ - textrenderer.h \ - tileset.h \ - units.cpp \ - units.h \ - vector.cpp \ - vector.h \ - winver.h - -mana_SOURCES += \ - net/manaserv/adminhandler.cpp \ - net/manaserv/adminhandler.h \ - net/manaserv/beinghandler.cpp \ - net/manaserv/beinghandler.h \ - net/manaserv/buysellhandler.cpp \ - net/manaserv/buysellhandler.h \ - net/manaserv/charhandler.cpp \ - net/manaserv/charhandler.h \ - net/manaserv/chathandler.cpp \ - net/manaserv/chathandler.h \ - net/manaserv/connection.cpp \ - net/manaserv/connection.h \ - net/manaserv/effecthandler.cpp \ - net/manaserv/effecthandler.h \ - net/manaserv/gamehandler.cpp \ - net/manaserv/gamehandler.h \ - net/manaserv/generalhandler.cpp \ - net/manaserv/generalhandler.h \ - net/manaserv/guildhandler.cpp \ - net/manaserv/guildhandler.h \ - net/manaserv/internal.cpp \ - net/manaserv/internal.h \ - net/manaserv/inventoryhandler.cpp \ - net/manaserv/inventoryhandler.h \ - net/manaserv/itemhandler.h \ - net/manaserv/itemhandler.cpp \ - net/manaserv/loginhandler.cpp \ - net/manaserv/loginhandler.h \ - net/manaserv/messagehandler.cpp \ - net/manaserv/messagehandler.h \ - net/manaserv/messagein.cpp \ - net/manaserv/messagein.h \ - net/manaserv/messageout.cpp \ - net/manaserv/messageout.h \ - net/manaserv/network.cpp \ - net/manaserv/network.h \ - net/manaserv/npchandler.cpp \ - net/manaserv/npchandler.h \ - net/manaserv/partyhandler.cpp \ - net/manaserv/partyhandler.h \ - net/manaserv/playerhandler.cpp \ - net/manaserv/playerhandler.h \ - net/manaserv/protocol.h \ - net/manaserv/specialhandler.cpp \ - net/manaserv/specialhandler.h \ - net/manaserv/stats.cpp \ - net/manaserv/stats.h \ - net/manaserv/tradehandler.cpp \ - net/manaserv/tradehandler.h - -mana_SOURCES += \ - net/tmwa/gui/guildtab.cpp \ - net/tmwa/gui/guildtab.h \ - net/tmwa/gui/partytab.cpp \ - net/tmwa/gui/partytab.h \ - net/tmwa/adminhandler.cpp \ - net/tmwa/adminhandler.h \ - net/tmwa/beinghandler.cpp \ - net/tmwa/beinghandler.h \ - net/tmwa/buysellhandler.cpp \ - net/tmwa/buysellhandler.h \ - net/tmwa/charserverhandler.cpp \ - net/tmwa/charserverhandler.h \ - net/tmwa/chathandler.cpp \ - net/tmwa/chathandler.h \ - net/tmwa/gamehandler.cpp \ - net/tmwa/gamehandler.h \ - net/tmwa/generalhandler.cpp \ - net/tmwa/generalhandler.h \ - net/tmwa/guildhandler.cpp \ - net/tmwa/guildhandler.h \ - net/tmwa/inventoryhandler.cpp \ - net/tmwa/inventoryhandler.h \ - net/tmwa/itemhandler.cpp \ - net/tmwa/itemhandler.h \ - net/tmwa/loginhandler.cpp \ - net/tmwa/loginhandler.h \ - net/tmwa/messagehandler.cpp \ - net/tmwa/messagehandler.h \ - net/tmwa/messagein.cpp \ - net/tmwa/messagein.h \ - net/tmwa/messageout.cpp \ - net/tmwa/messageout.h \ - net/tmwa/network.cpp \ - net/tmwa/network.h \ - net/tmwa/npchandler.cpp \ - net/tmwa/npchandler.h \ - net/tmwa/partyhandler.cpp \ - net/tmwa/partyhandler.h \ - net/tmwa/playerhandler.cpp \ - net/tmwa/playerhandler.h \ - net/tmwa/protocol.h \ - net/tmwa/specialhandler.cpp \ - net/tmwa/specialhandler.h \ - net/tmwa/token.h \ - net/tmwa/tradehandler.cpp \ - net/tmwa/tradehandler.h - -EXTRA_DIST = CMakeLists.txt \ - winver.h.in - -# set the include path found by configure -INCLUDES = $(all_includes) |