Built framework to allow ANSI mode to coexist with ASCII 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 \
3ebb0002 26 play_ansi.c \
7eeb782e
AT
27 play_gmp.c \
28 play_gtp.c \
29 play_solo.c \
30 play_test.c \
31 gmp.c \
32 gtp.c
33
34gnugo-xpms.el : $(shell ls xpms/*.xpm)
35 emacs -batch --no-site-file -l make-xpms-file.el -f make-xpms-file $@ $(shell ls xpms/*.xpm)
36
37gnugo-big-xpms.el : $(shell ls xpms/*.xpm)
38 emacs -batch --no-site-file -l make-xpms-file.el -f make-xpms-file $@ $(shell ls big-xpms/*.xpm)
39
40AIXOPTS=-O -qmaxmem=16384 -qro -qroconst -qinfo
41
42# OPTIONS=$(AIXOPTS)