Increase max number of regular players to 250
[freeciv.git] / ai / stub / Makefile.am
blobea218d811c4d270753eacde0a442dc3ed8acf9e3
1 ## Process this file with automake to produce Makefile.in
3 if AI_MOD_STATIC_STUB
4 noinst_LTLIBRARIES = libstubai.la
5 else
6 aimodule_LTLIBRARIES = fc_ai_stub.la
7 endif
9 AM_CPPFLAGS = \
10         -I$(top_srcdir)/utility \
11         -I$(top_srcdir)/common \
12         -I$(top_srcdir)/common/networking \
13         -I$(top_srcdir)/dependencies/tinycthread
15 if AI_MOD_STATIC_STUB
16 libstubai_la_SOURCES = stubai.c
17 else
18 fc_ai_stub_la_SOURCES = stubai.c
19 fc_ai_stub_la_LDFLAGS = -module
20 endif