-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile.am
30 lines (22 loc) · 833 Bytes
/
Makefile.am
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
bin_PROGRAMS = rftg
noinst_PROGRAMS = learner dumpnet
if BUILD_SERVER
noinst_PROGRAMS += server ai_client
endif
dist_bin_SCRIPTS = do_train
rftg_SOURCES = engine.c init.c ai.c loadsave.c gui.c net.c net.h rftg.h \
client.c client.h comm.c comm.h
learner_SOURCES = engine.c init.c ai.c learner.c net.c net.h rftg.h
dumpnet_SOURCES = net.c dumpnet.c net.h
server_SOURCES = server.c engine.c init.c ai.c loadsave.c net.c net.h rftg.h \
comm.c comm.h
ai_client_SOURCES = ai_client.c engine.c init.c ai.c net.c net.h rftg.h comm.c \
comm.h
dist_pkgdata_DATA = cards.txt images.data
AM_CFLAGS = -Wall
rftg_CFLAGS = -Wall @GTK_CFLAGS@ -DRFTGDIR=\"$(pkgdatadir)\"
rftg_LDADD = @GTK_LIBS@
server_LDADD = -lmysqlclient -lpthread
SUBDIRS = network
ACLOCAL_AMFLAGS = -I m4
EXTRA_DIST = config.rpath m4/ChangeLog osx