Makefile.am
上传用户:jxpjxmjjw
上传日期:2009-12-07
资源大小:5877k
文件大小:2k
源码类别:

模拟服务器

开发平台:

Visual C++

  1. # Copyright (C) 2004 Team Python
  2. #
  3. # This file is free software; as a special exception the author gives
  4. # unlimited permission to copy and/or distribute it, with or without
  5. # modifications, as long as this notice is preserved.
  6. #
  7. # This program is distributed in the hope that it will be useful, but
  8. # WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
  9. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  10. INCLUDES = -I$(srcdir) -I$(srcdir)/lua
  11. ## we don't want to need this here
  12. INCLUDES += -I$(srcdir)/../game -I$(srcdir)/../realmlist
  13. noinst_LIBRARIES = libshared.a
  14. libshared_a_SOURCES = Client.cpp Client.h Common.h Database.cpp Database.h 
  15.                       DatabaseInterface.cpp DatabaseInterface.h Errors.h 
  16.                       Log.cpp Log.h MemoryLeaks.cpp MemoryLeaks.h 
  17.                       Network.cpp Network.h 
  18.                       NetworkInterface.cpp NetworkInterface.h 
  19.                       Script.cpp Script.h Server.cpp Server.h 
  20.                       Singleton.h Sockets.h 
  21.                       Threads.cpp Threads.h Timer.h 
  22.                       UserAccount.cpp UserAccount.h 
  23.                       lua/lapi.c lua/lapi.h lua/lauxlib.h 
  24.                       lua/lcode.c lua/lcode.h lua/ldebug.c lua/ldebug.h 
  25.                       lua/ldo.c lua/ldo.h lua/ldump.c 
  26.                       lua/lfunc.c lua/lfunc.h lua/lgc.c lua/lgc.h 
  27.                       lua/llex.c lua/llex.h lua/llimits.h 
  28.                       lua/lmem.c lua/lmem.h lua/lobject.c lua/lobject.h 
  29.                       lua/lopcodes.c lua/lopcodes.h 
  30.                       lua/lparser.c lua/lparser.h lua/lstate.c lua/lstate.h 
  31.                       lua/lstring.c lua/lstring.h lua/ltable.c lua/ltable.h 
  32.                       lua/ltests.c lua/ltm.c lua/ltm.h lua/lua.h 
  33.                       lua/lualib.h lua/lundump.c lua/lundump.h 
  34.                       lua/lvm.c lua/lvm.h lua/lzio.c lua/lzio.h