Increase max number of regular players to 250
[freeciv.git] / ai / Makefile.am
blobdec2b0660db533113ea2e3e60e614a6ecbaf8d37
1 ## Process this file with automake to produce Makefile.in
3 module_dirs = 
5 if AI_MOD_DEFAULT_NEEDED
6 module_dirs += default
7 endif
9 if AI_MOD_STATIC_CLASSIC
10 module_dirs += classic
11 endif
13 if AI_MOD_STATIC_THREADED
14 module_dirs += threaded
15 endif
17 if AI_MOD_STATIC_TEX
18 module_dirs += tex
19 endif
21 if AI_MOD_STATIC_STUB
22 module_dirs += stub
23 endif
25 AM_CPPFLAGS = -I$(top_srcdir)/utility -I$(top_srcdir)/common \
26  -I$(top_srcdir)/common/networking \
27  -I$(top_srcdir)/dependencies/tinycthread
29 if AI_MODULES
30 if !AI_MOD_STATIC_CLASSIC
31 module_dirs += classic
32 endif
33 if EXP_AI_MODULES
34 if !AI_MOD_STATIC_THREADED
35 module_dirs += threaded
36 endif
37 if !AI_MOD_STATIC_TEX
38 module_dirs += tex
39 endif
40 if !AI_MOD_STATIC_STUB
41 module_dirs += stub
42 endif
43 else
44 # AI module loading supported, but experimental modules not built
45 endif
46 endif
48 SUBDIRS = $(module_dirs)
50 noinst_LTLIBRARIES = libaicommon.la
52 libaicommon_la_SOURCES = \
53         aitraits.c      \
54         aitraits.h      \
55         difficulty.c    \
56         difficulty.h    \
57         handicaps.c     \
58         handicaps.h