Modified colors for compatibility with Tektronix 4107 terminal in ANSI mode.
[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 \
26 play_gmp.c \
27 play_gtp.c \
28 play_solo.c \
29 play_test.c \
30 gmp.c \
31 gtp.c
32
33gnugo-xpms.el : $(shell ls xpms/*.xpm)
34 emacs -batch --no-site-file -l make-xpms-file.el -f make-xpms-file $@ $(shell ls xpms/*.xpm)
35
36gnugo-big-xpms.el : $(shell ls xpms/*.xpm)
37 emacs -batch --no-site-file -l make-xpms-file.el -f make-xpms-file $@ $(shell ls big-xpms/*.xpm)
38
39AIXOPTS=-O -qmaxmem=16384 -qro -qroconst -qinfo
40
41# OPTIONS=$(AIXOPTS)