* Remove Makefiles
This commit is contained in:
parent
3c9e8a817f
commit
0e264d96be
@ -1,4 +0,0 @@
|
|||||||
## Makefile.am - process this file with automake
|
|
||||||
AM_CPPFLAGS = -I$(top_builddir)/src/Client -I$(top_builddir)/src/shared -I$(top_builddir)/src/Client/DefScript -I$(top_builddir)/src/Client/World -I$(top_builddir)/src/Client/Realm -Wall
|
|
||||||
SUBDIRS = src
|
|
||||||
## End Makefile.am
|
|
||||||
106
configure.ac
106
configure.ac
@ -1,106 +0,0 @@
|
|||||||
# -*- Autoconf -*-
|
|
||||||
# Process this file with autoconf to produce a configure script.
|
|
||||||
|
|
||||||
AC_PREREQ(2.61)
|
|
||||||
AC_INIT(FULL-PACKAGE-NAME, VERSION, BUG-REPORT-ADDRESS)
|
|
||||||
AM_INIT_AUTOMAKE(pseuwow, 0.1)
|
|
||||||
#AC_CONFIG_SRCDIR([src/shared/ProgressBar.h])
|
|
||||||
AM_CONFIG_HEADER([src/config.h])
|
|
||||||
|
|
||||||
# Checks for programs.
|
|
||||||
AC_PROG_CXX
|
|
||||||
AC_PROG_CC
|
|
||||||
AC_PROG_INSTALL
|
|
||||||
AC_PROG_LN_S
|
|
||||||
AC_PROG_RANLIB
|
|
||||||
AC_PROG_LIBTOOL
|
|
||||||
|
|
||||||
# Checks for libraries.
|
|
||||||
AC_CHECK_LIB([Xxf86vm], [main], [], [echo "ERROR: Xxf86vm library not found." && exit 1])
|
|
||||||
AC_CHECK_LIB([GL], [main], [], [echo "ERROR: GL library not found." && exit 1])
|
|
||||||
AC_CHECK_LIB([GLU], [main], [], [echo "ERROR: GLU library not found." && exit 1])
|
|
||||||
AC_CHECK_LIB([ssl], [main], [], [echo "ERROR: ssl library not found." && exit 1])
|
|
||||||
AC_CHECK_LIB([crypto], [main], [], [echo "ERROR: ssl crypto library not found." && exit 1])
|
|
||||||
|
|
||||||
# Checks for header files.
|
|
||||||
AC_PATH_X
|
|
||||||
AC_HEADER_DIRENT
|
|
||||||
AC_HEADER_STDC
|
|
||||||
AC_CHECK_HEADERS([arpa/inet.h fcntl.h float.h inttypes.h limits.h malloc.h memory.h netdb.h netinet/in.h stddef.h stdint.h stdlib.h string.h sys/param.h sys/socket.h sys/time.h sys/timeb.h unistd.h utime.h wchar.h])
|
|
||||||
|
|
||||||
# Checks for typedefs, structures, and compiler characteristics.
|
|
||||||
AC_HEADER_STDBOOL
|
|
||||||
AC_C_CONST
|
|
||||||
AC_C_INLINE
|
|
||||||
AC_TYPE_INT32_T
|
|
||||||
AC_TYPE_INT64_T
|
|
||||||
AC_TYPE_SIZE_T
|
|
||||||
AC_TYPE_SSIZE_T
|
|
||||||
AC_HEADER_TIME
|
|
||||||
AC_STRUCT_TM
|
|
||||||
AC_TYPE_UINT16_T
|
|
||||||
AC_TYPE_UINT32_T
|
|
||||||
AC_TYPE_UINT64_T
|
|
||||||
AC_C_VOLATILE
|
|
||||||
AC_CHECK_TYPES([ptrdiff_t])
|
|
||||||
|
|
||||||
# Checks for library functions.
|
|
||||||
AC_FUNC_CHOWN
|
|
||||||
AC_FUNC_CLOSEDIR_VOID
|
|
||||||
AC_FUNC_ERROR_AT_LINE
|
|
||||||
AC_FUNC_MALLOC
|
|
||||||
AC_FUNC_MEMCMP
|
|
||||||
AC_FUNC_SELECT_ARGTYPES
|
|
||||||
AC_TYPE_SIGNAL
|
|
||||||
AC_FUNC_STAT
|
|
||||||
AC_FUNC_UTIME_NULL
|
|
||||||
AC_FUNC_VPRINTF
|
|
||||||
AC_CHECK_FUNCS([floor ftime ftruncate getcwd gethostbyaddr gethostbyname gethostname gettimeofday memmove memset mkdir pow realpath select socket sqrt strerror strrchr strstr strtol strtoul uname utime])
|
|
||||||
|
|
||||||
|
|
||||||
# Check if IrrKlang stub needs to be built
|
|
||||||
|
|
||||||
AC_ARG_WITH(irrklang,
|
|
||||||
[ --with-irrklang Use IrrKlang stub (needed for x64 (default: no)],
|
|
||||||
[case "${withval}" in
|
|
||||||
yes) DO_IRRKLANG=yes ;;
|
|
||||||
no) DO_IRRKLANG=no ;;
|
|
||||||
maybe) DO_IRRKLANG=maybe ;;
|
|
||||||
*) AC_MSG_ERROR(Bad value ${withval} for --with-irrklang) ;;
|
|
||||||
esac],
|
|
||||||
[DO_IRRKLANG=no])
|
|
||||||
AC_MSG_CHECKING(whether to build/link IrrKlang)
|
|
||||||
if test "x$DO_IRRKLANG" = "xyes"; then
|
|
||||||
AC_MSG_RESULT($DO_IRRKLANG)
|
|
||||||
IRRKLANG_DIR=irrKlang
|
|
||||||
IRRKLANG_LIB=../dep/src/irrKlang/libIrrKlang.la
|
|
||||||
else
|
|
||||||
AC_MSG_RESULT($DO_IRRKLANG)
|
|
||||||
IRRKLANG_DIR=
|
|
||||||
IRRKLANG_LIB=${prefix}/bin/libIrrKlang.so
|
|
||||||
fi
|
|
||||||
AC_SUBST([IRRKLANG_DIR])
|
|
||||||
AC_SUBST([IRRKLANG_LIB])
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
AC_CONFIG_FILES([Makefile
|
|
||||||
src/Makefile
|
|
||||||
src/dep/Makefile
|
|
||||||
src/dep/src/Makefile
|
|
||||||
src/dep/src/zlib/Makefile
|
|
||||||
src/dep/src/zthread/Makefile
|
|
||||||
src/dep/src/irrKlang/Makefile
|
|
||||||
src/dep/src/StormLib/Makefile
|
|
||||||
src/tools/Makefile
|
|
||||||
src/tools/viewer/Makefile
|
|
||||||
src/tools/stuffextract/Makefile
|
|
||||||
src/shared/Makefile
|
|
||||||
src/shared/Auth/Makefile
|
|
||||||
src/shared/Network/Makefile
|
|
||||||
src/Client/Makefile
|
|
||||||
src/Client/GUI/Makefile
|
|
||||||
src/Client/Realm/Makefile
|
|
||||||
src/Client/World/Makefile
|
|
||||||
src/Client/DefScript/Makefile])
|
|
||||||
AC_OUTPUT
|
|
||||||
@ -1,17 +0,0 @@
|
|||||||
## Process this file with automake to produce Makefile.in
|
|
||||||
AM_CPPFLAGS = -I$(top_builddir)/src/Client -I$(top_builddir)/src/shared -I$(top_builddir)/src/Client/DefScript -I$(top_builddir)/src/Client/World -I$(top_builddir)/src/Client/Realm -Wall
|
|
||||||
## Build pseuwow
|
|
||||||
noinst_LIBRARIES = libdefscript.a
|
|
||||||
libdefscript_a_SOURCES =DefScriptBBFunctions.cpp\
|
|
||||||
DefScriptFileFunctions.cpp\
|
|
||||||
DefScriptListFunctions.cpp\
|
|
||||||
DynamicEvent.cpp\
|
|
||||||
DefScript.cpp\
|
|
||||||
DefScriptFunctions.cpp\
|
|
||||||
DefScriptTools.cpp\
|
|
||||||
VarSet.cpp
|
|
||||||
|
|
||||||
libdefscript_a_LIBADD = $(top_builddir)/src/shared/libshared.a $(top_builddir)/src/shared/Auth/libauth.a $(top_builddir)/src/shared/Network/libnetwork.a
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -1,22 +0,0 @@
|
|||||||
## Process this file with automake to produce Makefile.in
|
|
||||||
AM_CPPFLAGS = -I$(top_builddir)/src/Client -I$(top_builddir)/src/shared -I$(top_builddir)/src/Client/DefScript -I$(top_builddir)/src/Client/World -I$(top_builddir)/src/Client/Realm -I$(top_builddir)/src/dep/include -Wall
|
|
||||||
## Build pseuwow
|
|
||||||
noinst_LIBRARIES = libgui.a
|
|
||||||
libgui_a_SOURCES =CCursorController.cpp DrawObject.cpp MInput.h Scene.h SImage.h\
|
|
||||||
CCursorController.h DrawObject.h PseuGUI.cpp SceneLogin.cpp TlTMesh.h\
|
|
||||||
CImageLoaderBLP.cpp DrawObjMgr.cpp PseuGUI.h SceneWorld.cpp TlTSector.h\
|
|
||||||
CImageLoaderBLP.h DrawObjMgr.h Scene.cpp ShTlTerrainSceneNode.cpp\
|
|
||||||
CM2MeshFileLoader.cpp SceneData.h ShTlTerrainSceneNode.h\
|
|
||||||
CM2MeshFileLoader.h MCamera.h SceneGuiStart.cpp SImage.cpp SceneCharselection.cpp\
|
|
||||||
CIrrKlangAudioStreamLoaderMP3.cpp CIrrKlangAudioStreamLoaderMP3.h CIrrKlangAudioStreamMP3.cpp CIrrKlangAudioStreamMP3.h\
|
|
||||||
ikpMP3.cpp decoder/bits.c decoder/internal.h decoder/mpaudec.c decoder/mpaudec.h decoder/mpaudectab.h decoder/mpegaudio.h\
|
|
||||||
irrKlangSceneNode.cpp irrKlangSceneNode.h CBoneSceneNode.cpp CBoneSceneNode.h SSkinnedMesh.cpp SSkinnedMesh.h\
|
|
||||||
CMDHMemoryReadFile.cpp CMDHMemoryReadFile.h MemoryInterface.cpp MemoryInterface.h\
|
|
||||||
CWMOMeshFileLoader.cpp CWMOMeshFileLoader.h
|
|
||||||
|
|
||||||
|
|
||||||
libgui_a_LIBADD = $(top_builddir)/src/shared/libshared.a $(top_builddir)/src/shared/Auth/libauth.a $(top_builddir)/src/shared/Network/libnetwork.a
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -1,33 +0,0 @@
|
|||||||
## Process this file with automake to produce Makefile.in
|
|
||||||
SUBDIRS = DefScript Realm World GUI
|
|
||||||
AM_CPPFLAGS = -I$(top_builddir)/src/Client -I$(top_builddir)/src/shared -I$(top_builddir)/src/Client/DefScript -I$(top_builddir)/src/Client/World -I$(top_builddir)/src/Client/Realm -I$(top_builddir)/src/dep/include -Wall
|
|
||||||
## Build pseuwow
|
|
||||||
bin_PROGRAMS = pseuwow
|
|
||||||
pseuwow_SOURCES = Cli.cpp\
|
|
||||||
DefScriptInterface.cpp\
|
|
||||||
MemoryDataHolder.cpp\
|
|
||||||
RemoteController.cpp\
|
|
||||||
ControlSocket.cpp\
|
|
||||||
main.cpp\
|
|
||||||
PseuWoW.cpp\
|
|
||||||
SCPDatabase.cpp\
|
|
||||||
Realm/RealmSession.cpp\
|
|
||||||
Realm/RealmSocket.cpp\
|
|
||||||
World/WorldSocket.cpp\
|
|
||||||
World/UpdateData.cpp\
|
|
||||||
World/MapMgr.cpp
|
|
||||||
|
|
||||||
|
|
||||||
pseuwow_LDADD = ../shared/libshared.a\
|
|
||||||
../shared/Auth/libauth.a\
|
|
||||||
../shared/Network/libnetwork.a\
|
|
||||||
DefScript/libdefscript.a\
|
|
||||||
World/libworld.a \
|
|
||||||
GUI/libgui.a\
|
|
||||||
$(IRRKLANG_LIB)\
|
|
||||||
../dep/lib/linux-gcc/libIrrlicht.a\
|
|
||||||
../dep/src/zlib/libzlib.a\
|
|
||||||
../dep/src/zthread/libZThread.a\
|
|
||||||
../dep/src/StormLib/libstormlib.a \
|
|
||||||
-lbz2
|
|
||||||
pseuwow_LDFLAGS =-pthread
|
|
||||||
@ -1,8 +0,0 @@
|
|||||||
## Process this file with automake to produce Makefile.in
|
|
||||||
AM_CPPFLAGS = -I$(top_builddir)/src/Client -I$(top_builddir)/src/shared -I$(top_builddir)/src/Client/DefScript -I$(top_builddir)/src/Client/World -I$(top_builddir)/src/Client/Realm -I$(top_builddir)/src/dep/include -Wall
|
|
||||||
## Build pseuwow
|
|
||||||
noinst_LIBRARIES = librealm.a
|
|
||||||
librealm_a_SOURCES =RealmSession.cpp RealmSession.h RealmSocket.cpp RealmSocket.h
|
|
||||||
librealm_a_LIBADD = $(top_builddir)/src/shared/libshared.a $(top_builddir)/src/shared/Auth/libauth.a $(top_builddir)/src/shared/Network/libnetwork.a
|
|
||||||
|
|
||||||
|
|
||||||
@ -1,18 +0,0 @@
|
|||||||
## Process this file with automake to produce Makefile.in
|
|
||||||
AM_CPPFLAGS = -I$(top_builddir)/src/Client -I$(top_builddir)/src/shared -I$(top_builddir)/src/Client/DefScript -I$(top_builddir)/src/Client/World -I$(top_builddir)/src/Client/Realm -I$(top_builddir)/src/dep/include -Wall
|
|
||||||
## Build pseuwow
|
|
||||||
noinst_LIBRARIES = libworld.a
|
|
||||||
libworld_a_SOURCES =Bag.cpp DynamicObject.cpp MovementMgr.cpp Player.cpp World.cpp\
|
|
||||||
Bag.h DynamicObject.h MovementMgr.h Player.h World.h\
|
|
||||||
CacheHandler.cpp GameObject.cpp Object.cpp SharedDefines.h WorldPacket.cpp\
|
|
||||||
CacheHandler.h GameObject.h ObjectDefines.h Unit.cpp WorldPacket.h\
|
|
||||||
Channel.cpp Item.cpp Object.h Unit.h WorldSession.cpp\
|
|
||||||
Channel.h Item.h ObjMgr.cpp UpdateData.cpp WorldSession.h\
|
|
||||||
CMSGConstructor.cpp ObjMgr.h UpdateData.h WorldSocket.cpp\
|
|
||||||
Corpse.cpp MapMgr.cpp Opcodes.cpp UpdateFields.cpp WorldSocket.h\
|
|
||||||
Corpse.h MapMgr.h Opcodes.h UpdateMask.h
|
|
||||||
|
|
||||||
libworld_a_LIBADD = ../../shared/libshared.a ../../shared/Auth/libauth.a ../../shared/Network/libnetwork.a
|
|
||||||
libworld_a_LIBFLAGS = -pthread
|
|
||||||
|
|
||||||
|
|
||||||
@ -1,4 +0,0 @@
|
|||||||
## Makefile.am - process this file with automake
|
|
||||||
AM_CPPFLAGS = -I$(top_builddir)/src/Client -I$(top_builddir)/src/shared -I$(top_builddir)/src/Client/DefScript -I$(top_builddir)/src/Client/World -I$(top_builddir)/src/Client/Realm -Wall
|
|
||||||
SUBDIRS = dep shared Client tools
|
|
||||||
## End Makefile.am
|
|
||||||
@ -1,4 +0,0 @@
|
|||||||
## Makefile.am - process this file with automake
|
|
||||||
AM_CPPFLAGS = -I$(top_builddir)/src/Client -I$(top_builddir)/src/shared -I$(top_builddir)/src/Client/DefScript -I$(top_builddir)/src/Client/World -I$(top_builddir)/src/Client/Realm -Wall
|
|
||||||
SUBDIRS = src
|
|
||||||
## End Makefile.am
|
|
||||||
@ -1,4 +0,0 @@
|
|||||||
## Makefile.am - process this file with automake
|
|
||||||
AM_CPPFLAGS = -I$(top_builddir)/src/Client -I$(top_builddir)/src/shared -I$(top_builddir)/src/Client/DefScript -I$(top_builddir)/src/Client/World -I$(top_builddir)/src/Client/Realm -Wall
|
|
||||||
SUBDIRS = irrlicht zlib zthread StormLib $(IRRKLANG_DIR)
|
|
||||||
## End Makefile.am
|
|
||||||
@ -1,24 +0,0 @@
|
|||||||
## Process this file with automake to produce Makefile.in
|
|
||||||
AM_CPPFLAGS = -I$(top_builddir)/src/Client -I$(top_builddir)/src/shared -I$(top_builddir)/src/Client/DefScript -I$(top_builddir)/src/Client/World -I$(top_builddir)/src/Client/Realm -Wall -D__SYS_ZLIB
|
|
||||||
AM_CFLAGS = -fPIC
|
|
||||||
## Build pseuwow
|
|
||||||
noinst_LIBRARIES = libstormlib.a
|
|
||||||
libstormlib_a_SOURCES =huffman/huff.cpp\
|
|
||||||
wave/wave.cpp\
|
|
||||||
SAttrFile.cpp\
|
|
||||||
SCommon.cpp\
|
|
||||||
SCompression.cpp\
|
|
||||||
SFileCompactArchive.cpp\
|
|
||||||
SFileCreateArchiveEx.cpp\
|
|
||||||
SFileExtractFile.cpp\
|
|
||||||
SFileFindFile.cpp\
|
|
||||||
SFileOpenArchive.cpp\
|
|
||||||
SFileOpenFileEx.cpp\
|
|
||||||
SFileReadFile.cpp\
|
|
||||||
SListFile.cpp\
|
|
||||||
StormPortLinux.cpp\
|
|
||||||
pklib/crc32_pk.c\
|
|
||||||
pklib/explode.c\
|
|
||||||
pklib/implode.c\
|
|
||||||
misc/crc32.cpp\
|
|
||||||
misc/md5.cpp
|
|
||||||
@ -1,5 +0,0 @@
|
|||||||
INCLUDES = -I../../include/irrklang -I../../include
|
|
||||||
lib_LTLIBRARIES = libIrrKlang.la
|
|
||||||
|
|
||||||
libIrrKlang_la_SOURCES = irrKlang.cpp
|
|
||||||
libIrrKlang_la_LDFLAGS = -shared -static
|
|
||||||
@ -1,19 +0,0 @@
|
|||||||
INCLUDES = -I../../include/zlib -I../../include
|
|
||||||
|
|
||||||
noinst_LIBRARIES = libzlib.a
|
|
||||||
|
|
||||||
libzlib_a_SOURCES = \
|
|
||||||
adler32.c \
|
|
||||||
compress.c \
|
|
||||||
crc32.c \
|
|
||||||
deflate.c \
|
|
||||||
example.c \
|
|
||||||
gzio.c \
|
|
||||||
infback.c \
|
|
||||||
inffast.c \
|
|
||||||
inflate.c \
|
|
||||||
inftrees.c \
|
|
||||||
trees.c \
|
|
||||||
uncompr.c \
|
|
||||||
zutil.c
|
|
||||||
|
|
||||||
@ -1,62 +0,0 @@
|
|||||||
## Copyright (c) 2005, Eric Crahen
|
|
||||||
##
|
|
||||||
## Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
||||||
## of this software and associated documentation files (the "Software"), to deal
|
|
||||||
## in the Software without restriction, including without limitation the rights
|
|
||||||
## to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
||||||
## copies of the Software, and to permit persons to whom the Software is furnished
|
|
||||||
## to do so, subject to the following conditions:
|
|
||||||
##
|
|
||||||
## The above copyright notice and this permission notice shall be included in all
|
|
||||||
## copies or substantial portions of the Software.
|
|
||||||
##
|
|
||||||
## THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
## IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
## FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
## AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
||||||
## WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
||||||
## CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
||||||
|
|
||||||
#AM_CXXFLAGS = @COMPILER_OPTIONS@ @EXTRA_COMPILER_OPTIONS@
|
|
||||||
INCLUDES = -I../../include/zthread -I../../include
|
|
||||||
SUBDIRS=.
|
|
||||||
|
|
||||||
#libdir=$(top_builddir)/src/dep/lib/linux-gcc
|
|
||||||
noinst_LIBRARIES = libZThread.a
|
|
||||||
# lib_LTLIBRARIES = libZThread.la
|
|
||||||
|
|
||||||
#libZThread_la_LIBADD=@LINKER_OPTIONS@ @EXTRA_LINKER_OPTIONS@
|
|
||||||
#libZThread_a_LDFLAGS= \
|
|
||||||
# -release $(LT_RELEASE) \
|
|
||||||
# -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)
|
|
||||||
|
|
||||||
|
|
||||||
#LIBADD=@LINKER_OPTIONS@ @EXTRA_LINKER_OPTIONS@
|
|
||||||
|
|
||||||
|
|
||||||
libZThread_a_SOURCES = \
|
|
||||||
AtomicCount.cxx \
|
|
||||||
Condition.cxx \
|
|
||||||
ConcurrentExecutor.cxx \
|
|
||||||
CountingSemaphore.cxx \
|
|
||||||
FastMutex.cxx \
|
|
||||||
FastRecursiveMutex.cxx \
|
|
||||||
Mutex.cxx \
|
|
||||||
RecursiveMutexImpl.cxx \
|
|
||||||
RecursiveMutex.cxx \
|
|
||||||
Monitor.cxx \
|
|
||||||
PoolExecutor.cxx \
|
|
||||||
PriorityCondition.cxx \
|
|
||||||
PriorityInheritanceMutex.cxx \
|
|
||||||
PriorityMutex.cxx \
|
|
||||||
PrioritySemaphore.cxx \
|
|
||||||
Semaphore.cxx \
|
|
||||||
SynchronousExecutor.cxx \
|
|
||||||
Thread.cxx \
|
|
||||||
ThreadedExecutor.cxx \
|
|
||||||
ThreadImpl.cxx \
|
|
||||||
ThreadLocalImpl.cxx \
|
|
||||||
ThreadQueue.cxx \
|
|
||||||
Time.cxx \
|
|
||||||
ThreadOps.cxx
|
|
||||||
|
|
||||||
@ -1,5 +0,0 @@
|
|||||||
## Process this file with automake to produce Makefile.in
|
|
||||||
AM_CPPFLAGS = -I$(top_builddir)/src/Client -I$(top_builddir)/src/shared -I$(top_builddir)/src/Client/DefScript -I$(top_builddir)/src/Client/World -I$(top_builddir)/src/Client/Realm -I$(top_builddir)/src/dep/include -Wall
|
|
||||||
## Build pseuwow
|
|
||||||
noinst_LIBRARIES = libauth.a
|
|
||||||
libauth_a_SOURCES = AuthCrypt.cpp BigNumber.cpp md5.c Sha1.cpp Hmac.cpp SARC4.cpp
|
|
||||||
@ -1,12 +0,0 @@
|
|||||||
## Process this file with automake to produce Makefile.in
|
|
||||||
SUBDIRS = Auth Network
|
|
||||||
AM_CPPFLAGS = -I$(top_builddir)/src/Client -I$(top_builddir)/src/shared -I$(top_builddir)/src/Client/DefScript -I$(top_builddir)/src/Client/World -I$(top_builddir)/src/Client/Realm -I$(top_builddir)/src/dep/include -I$(top_builddir)/src/dep/src -Wall
|
|
||||||
## Build pseuwow
|
|
||||||
noinst_LIBRARIES = libshared.a
|
|
||||||
libshared_a_SOURCES = ADTFile.cpp common.h log.h MapTile.h tools.cpp Widen.h\
|
|
||||||
ADTFile.h DebugStuff.h ProgressBar.cpp tools.h ZCompressor.cpp\
|
|
||||||
ADTFileStructs.h libshared.a ProgressBar.h WDTFile.cpp ZCompressor.h\
|
|
||||||
ByteBuffer.h log.cpp MapTile.cpp SysDefs.h WDTFile.h\
|
|
||||||
dbcfile.cpp Locale.cpp MPQFile.cpp MPQHelper.cpp
|
|
||||||
|
|
||||||
|
|
||||||
@ -1,5 +0,0 @@
|
|||||||
## Process this file with automake to produce Makefile.in
|
|
||||||
AM_CPPFLAGS = -I$(top_builddir)/src/Client -I$(top_builddir)/src/shared -I$(top_builddir)/src/Client/DefScript -I$(top_builddir)/src/Client/World -I$(top_builddir)/src/Client/Realm -Wall
|
|
||||||
## Build pseuwow
|
|
||||||
noinst_LIBRARIES = libnetwork.a
|
|
||||||
libnetwork_a_SOURCES =Base64.cpp PoolSocket.cpp Socket.cpp SocketThread.cpp Thread.cpp CircularBuffer.cpp ResolvServer.cpp SocketHandler.cpp StdoutLog.cpp UdpSocket.cpp Parse.cpp ResolvSocket.cpp socket_include.cpp TcpSocket.cpp Utility.cpp
|
|
||||||
@ -1,4 +0,0 @@
|
|||||||
## Makefile.am - process this file with automake
|
|
||||||
AM_CPPFLAGS = -I$(top_builddir)/src/Client -I$(top_builddir)/src/shared -I$(top_builddir)/src/Client/DefScript -I$(top_builddir)/src/Client/World -I$(top_builddir)/src/Client/Realm -Wall
|
|
||||||
SUBDIRS = stuffextract viewer
|
|
||||||
## End Makefile.am
|
|
||||||
@ -1,7 +0,0 @@
|
|||||||
## Process this file with automake to produce Makefile.in
|
|
||||||
AM_CPPFLAGS = -I$(top_builddir)/src/Client -I$(top_builddir)/src/shared -I$(top_builddir)/src/Client/DefScript -I$(top_builddir)/src/Client/World -I$(top_builddir)/src/Client/Realm -I$(top_builddir)/src/dep/include -I$(top_builddir)/src/dep/src -Wall
|
|
||||||
## Build pseuwow
|
|
||||||
bin_PROGRAMS = stuffextract
|
|
||||||
stuffextract_SOURCES = StuffExtract.cpp
|
|
||||||
|
|
||||||
stuffextract_LDADD = ../../shared/Auth/libauth.a ../../shared/libshared.a ../../dep/src/StormLib/libstormlib.a -lbz2
|
|
||||||
@ -1,12 +0,0 @@
|
|||||||
## Process this file with automake to produce Makefile.in
|
|
||||||
AM_CPPFLAGS = -I$(top_builddir)/src/Client -I$(top_builddir)/src/shared -I$(top_builddir)/src/Client/GUI -I$(top_builddir)/src/dep/include -Wall
|
|
||||||
## Build pseuwow
|
|
||||||
bin_PROGRAMS = viewer
|
|
||||||
viewer_SOURCES = main.cpp\
|
|
||||||
$(top_builddir)/src/Client/MemoryDataHolder.cpp
|
|
||||||
viewer_LDADD = ../../dep/lib/linux-gcc/libIrrlicht.a\
|
|
||||||
../../Client/GUI/libgui.a\
|
|
||||||
$(top_builddir)/src/shared/libshared.a\
|
|
||||||
../../dep/src/zthread/libZThread.a\
|
|
||||||
../../dep/src/StormLib/libstormlib.a
|
|
||||||
viewer_LDFLAGS =-pthread -lbz2
|
|
||||||
Loading…
x
Reference in New Issue
Block a user