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