webperimental: enable restrictinfra by default...
[freeciv.git] / ai / threxpr / Makefile.am
blobc78186308aebc56ecff703c36ea1b9ffbcd0cc07
1 ## Process this file with automake to produce Makefile.in
3 if AI_MOD_STATIC_THREXPR
4 noinst_LTLIBRARIES = libthrexprai.la
5 else
6 aimodule_LTLIBRARIES = fc_ai_threxpr.la
7 endif
9 AM_CPPFLAGS = \
10         -I$(top_srcdir)/utility \
11         -I$(top_srcdir)/common \
12         -I$(top_srcdir)/common/aicore \
13         -I$(top_srcdir)/common/networking \
14         -I$(top_srcdir)/server/ \
15         -I$(top_srcdir)/server/advisors \
16         -I$(top_srcdir)/ai/default \
17         -I$(top_srcdir)/dependencies/tinycthread
19 da_sources = \
20         texaicity.c             \
21         texaicity.h             \
22         texaimsg.c              \
23         texaimsg.h              \
24         texaiplayer.c           \
25         texaiplayer.h           \
26         texaiworld.c            \
27         texaiworld.h            \
28         threxprai.c
30 if AI_MOD_STATIC_THREXPR
31 libthrexprai_la_SOURCES = $(da_sources)
32 else
33 fc_ai_threxpr_la_SOURCES = $(da_sources)
34 fc_ai_threxpr_la_LDFLAGS = -module
35 endif