Add CLI option for two player game, and associated framework to hook it all together.
[sgk-go] / interface / Makefile.am
CommitLineData
7eeb782e
AT
1bin_PROGRAMS = gnugo
2
3EXTRA_DIST = gtp_examples gnugo.dsp gnugo.el make-xpms-file.el GoImage xpms \
4 big-xpms gnugo-xpms.el gnugo-big-xpms.el CMakeLists.txt
5
6noinst_HEADERS = interface.h gmp.h gtp.h
7
8# Remove these files here... they are created locally
9DISTCLEANFILES = *~
10
11AM_CPPFLAGS = \
12 $(GNU_GO_WARNINGS) \
13 -I$(top_srcdir)/sgf \
14 -I$(top_srcdir)/engine \
15 -I$(top_srcdir)/utils
16
17LDADD = \
18 ../engine/libengine.a \
19 ../patterns/libpatterns.a \
20 ../sgf/libsgf.a \
21 ../utils/libutils.a
22
23gnugo_SOURCES = \
24 main.c \
25 play_ascii.c \
3ebb0002 26 play_ansi.c \
de03db18 27 play_twoplayer.c \
7eeb782e
AT
28 play_gmp.c \
29 play_gtp.c \
30 play_solo.c \
31 play_test.c \
32 gmp.c \
33 gtp.c
34
35gnugo-xpms.el : $(shell ls xpms/*.xpm)
36 emacs -batch --no-site-file -l make-xpms-file.el -f make-xpms-file $@ $(shell ls xpms/*.xpm)
37
38gnugo-big-xpms.el : $(shell ls xpms/*.xpm)
39 emacs -batch --no-site-file -l make-xpms-file.el -f make-xpms-file $@ $(shell ls big-xpms/*.xpm)
40
41AIXOPTS=-O -qmaxmem=16384 -qro -qroconst -qinfo
42
43# OPTIONS=$(AIXOPTS)