2004-08-07 20:10:42 +02:00
|
|
|
# Eliot
|
2008-01-08 14:52:32 +01:00
|
|
|
# Copyright (C) 1999-2007 Antoine Fraboulet & Olivier Teulière
|
|
|
|
# Authors: Antoine Fraboulet <antoine.fraboulet@free.fr>
|
|
|
|
# Olivier Teulière <ipkiss @@ gmail.com>
|
2004-08-07 20:10:42 +02:00
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
2005-10-23 16:53:42 +02:00
|
|
|
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
2004-04-08 11:43:06 +02:00
|
|
|
|
|
|
|
noinst_LIBRARIES = libgame.a
|
|
|
|
|
2011-01-16 22:30:30 +01:00
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/dic -I../intl -I$(top_srcdir)/intl @LIBCONFIG_CFLAGS@ @ARABICA_CFLAGS@ @EXPAT_CFLAGS@ @LOG4CXX_CFLAGS@
|
2004-04-08 11:43:06 +02:00
|
|
|
|
2008-11-23 09:18:03 +01:00
|
|
|
libgame_a_SOURCES= \
|
2008-11-22 14:09:28 +01:00
|
|
|
game_exception.cpp game_exception.h \
|
2008-11-23 09:18:03 +01:00
|
|
|
command.h command.cpp \
|
2009-02-19 19:25:17 +01:00
|
|
|
coord.cpp coord.h \
|
|
|
|
cross.cpp cross.h \
|
2008-11-23 09:18:03 +01:00
|
|
|
rack.cpp rack.h \
|
|
|
|
pldrack.cpp pldrack.h \
|
|
|
|
round.cpp round.h \
|
|
|
|
move.cpp move.h \
|
|
|
|
results.cpp results.h \
|
|
|
|
bag.cpp bag.h \
|
|
|
|
turn.cpp turn.h \
|
|
|
|
history.cpp history.h \
|
|
|
|
player.cpp player.h \
|
2008-11-30 22:10:25 +01:00
|
|
|
player_points_cmd.cpp player_points_cmd.h \
|
2008-11-23 09:18:03 +01:00
|
|
|
player_move_cmd.cpp player_move_cmd.h \
|
|
|
|
player_rack_cmd.cpp player_rack_cmd.h \
|
|
|
|
ai_player.h \
|
|
|
|
ai_percent.cpp ai_percent.h \
|
|
|
|
board.cpp board.h \
|
|
|
|
board_cross.cpp \
|
2009-01-25 00:02:42 +01:00
|
|
|
matrix.h \
|
|
|
|
board_search.cpp board_search.h \
|
2008-11-23 09:18:03 +01:00
|
|
|
settings.cpp settings.h \
|
2008-11-23 17:55:28 +01:00
|
|
|
navigation.cpp navigation.h \
|
2008-11-23 09:18:03 +01:00
|
|
|
game.cpp game.h \
|
|
|
|
game_move_cmd.h game_move_cmd.cpp \
|
|
|
|
turn_cmd.cpp turn_cmd.h \
|
|
|
|
duplicate.cpp duplicate.h \
|
2009-11-29 17:01:31 +01:00
|
|
|
mark_played_cmd.h mark_played_cmd.cpp \
|
2008-11-23 09:18:03 +01:00
|
|
|
freegame.cpp freegame.h \
|
|
|
|
training.cpp training.h \
|
2008-11-30 21:53:44 +01:00
|
|
|
public_game.cpp public_game.h \
|
2008-11-22 14:09:28 +01:00
|
|
|
game_factory.cpp game_factory.h \
|
2008-11-23 09:18:03 +01:00
|
|
|
game_io.cpp \
|
2009-11-29 17:01:31 +01:00
|
|
|
xml_writer.cpp xml_writer.h \
|
|
|
|
xml_reader.cpp xml_reader.h \
|
2008-09-05 23:31:30 +02:00
|
|
|
debug.h
|
2004-04-08 11:43:06 +02:00
|
|
|
|