2004-08-07 20:10:42 +02:00
|
|
|
# Eliot
|
|
|
|
# Copyright (C) 1999 Antoine Fraboulet
|
|
|
|
# antoine.fraboulet@free.fr
|
|
|
|
#
|
|
|
|
# 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
|
|
|
|
|
|
|
|
INCLUDES = -I$(top_srcdir)/dic
|
|
|
|
|
|
|
|
libgame_a_SOURCES = \
|
2005-02-17 21:01:59 +01:00
|
|
|
ai_percent.cpp ai_percent.h \
|
|
|
|
ai_player.h \
|
2005-02-05 12:14:56 +01:00
|
|
|
tile.cpp tile.h \
|
|
|
|
bag.cpp bag.h \
|
2005-11-05 12:01:58 +01:00
|
|
|
coord.cpp coord.h \
|
2005-02-05 12:14:56 +01:00
|
|
|
cross.cpp cross.h \
|
|
|
|
board.cpp board.h \
|
|
|
|
board_cross.cpp \
|
|
|
|
board_search.cpp \
|
|
|
|
duplicate.cpp duplicate.h \
|
2005-02-24 09:06:24 +01:00
|
|
|
freegame.cpp freegame.h \
|
2005-02-05 12:14:56 +01:00
|
|
|
game.cpp game.h \
|
2005-02-24 09:06:24 +01:00
|
|
|
game_factory.cpp game_factory.h \
|
2005-02-05 12:14:56 +01:00
|
|
|
player.cpp player.h \
|
|
|
|
pldrack.cpp pldrack.h \
|
|
|
|
rack.cpp rack.h \
|
|
|
|
results.cpp results.h \
|
|
|
|
round.cpp round.h \
|
2005-11-06 00:22:41 +01:00
|
|
|
training.cpp training.h \
|
|
|
|
turn.cpp turn.h
|
2004-04-08 11:43:06 +02:00
|
|
|
|