Updated README: Equal sign not required with `--mode` flag.
[sgk-go] / engine / Makefile.am
CommitLineData
7eeb782e
AT
1EXTRA_DIST = engine.dsp board.dsp CMakeLists.txt
2
3# Remove these files here... they are created locally
4DISTCLEANFILES = *~
5
6AM_CPPFLAGS = \
7 $(GNU_GO_WARNINGS) \
8 -I../patterns \
9 -I$(top_srcdir)/patterns \
10 -I$(top_srcdir)/sgf \
11 -I$(top_srcdir)/utils
12
13noinst_HEADERS = cache.h gnugo.h hash.h clock.h readconnect.h \
14 influence.h liberty.h move_reasons.h board.h
15
16# preconfigured settings for various configurations
17noinst_LIBRARIES = libengine.a libboard.a
18
19libengine_a_SOURCES = \
20 aftermath.c \
21 board.c \
22 boardlib.c \
23 breakin.c \
24 cache.c \
25 clock.c \
26 combination.c \
27 dragon.c \
28 endgame.c \
29 filllib.c \
30 fuseki.c \
31 genmove.c \
32 globals.c \
33 handicap.c \
34 hash.c \
35 influence.c \
36 interface.c \
37 matchpat.c \
38 montecarlo.c \
39 move_reasons.c \
40 movelist.c \
41 optics.c \
42 oracle.c \
43 owl.c \
44 persistent.c \
45 printutils.c \
46 readconnect.c \
47 reading.c \
48 semeai.c \
49 sgfdecide.c \
50 sgffile.c \
51 shapes.c \
52 showbord.c \
53 surround.c \
54 unconditional.c \
55 utils.c \
56 value_moves.c \
57 worm.c
58
59libboard_a_SOURCES = \
60 board.c \
61 boardlib.c \
62 hash.c \
63 printutils.c