2005-02-05 12:14:56 +01: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
|
2005-02-05 12:14:56 +01:00
|
|
|
|
2008-01-08 14:52:32 +01:00
|
|
|
localedir = $(datadir)/locale
|
|
|
|
|
2005-02-05 12:14:56 +01:00
|
|
|
if BUILD_WXWIDGETS
|
2004-04-08 11:43:06 +02:00
|
|
|
|
|
|
|
bin_PROGRAMS = eliot
|
|
|
|
|
2008-01-08 14:52:32 +01:00
|
|
|
AM_CPPFLAGS = -DLOCALEDIR=\"$(localedir)\" @WX_CPPFLAGS@ ## -Wno-strict-aliasing
|
2004-04-08 12:21:56 +02:00
|
|
|
|
2008-01-08 14:52:32 +01:00
|
|
|
INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/dic -I$(top_srcdir)/game
|
2004-04-08 11:43:06 +02:00
|
|
|
|
2005-02-05 12:14:56 +01:00
|
|
|
eliot_SOURCES = \
|
|
|
|
configdb.cc configdb.h \
|
|
|
|
gfxboard.cc gfxboard.h \
|
2005-12-26 19:14:46 +01:00
|
|
|
gfxresult.cc gfxresult.h \
|
2005-02-05 12:14:56 +01:00
|
|
|
printout.cc printout.h \
|
|
|
|
confdimdlg.cc confdimdlg.h \
|
|
|
|
confsearch.cc confsearch.h \
|
|
|
|
searchpanel.cc searchpanel.h \
|
|
|
|
auxframes.cc auxframes.h \
|
|
|
|
mainframe.cc mainframe.h \
|
|
|
|
main.cc ewx.h
|
2004-04-08 11:43:06 +02:00
|
|
|
|
2008-01-08 14:52:32 +01:00
|
|
|
eliot_LDADD = @WX_LIBS@ ../game/libgame.a ../dic/libdic.a @LIBINTL@
|
2004-04-08 11:43:06 +02:00
|
|
|
|
2005-04-03 23:12:03 +02:00
|
|
|
EXTRA_DIST = \
|
2006-08-12 00:16:01 +02:00
|
|
|
eliot.xpm \
|
|
|
|
eliot.ico
|
2004-04-08 11:43:06 +02:00
|
|
|
|
2005-02-05 12:14:56 +01:00
|
|
|
endif
|
2004-04-08 11:43:06 +02:00
|
|
|
|