webperimental: killstack decides stack protects.
[freeciv.git] / ai / threaded / Makefile.am
blob245dc641c6bb1a5c8dc0593a9d36d006bccb5d45
1 ## Process this file with automake to produce Makefile.in
3 if AI_MOD_STATIC_THREADED
4 noinst_LTLIBRARIES = libthreadedai.la
5 else
6 aimodule_LTLIBRARIES = fc_ai_threaded.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         taicity.c               \
21         taicity.h               \
22         taimsg.c                \
23         taimsg.h                \
24         taiplayer.c             \
25         taiplayer.h             \
26         threadedai.c
28 if AI_MOD_STATIC_THREADED
29 libthreadedai_la_SOURCES = $(da_sources)
30 else
31 fc_ai_threaded_la_SOURCES = $(da_sources)
32 fc_ai_threaded_la_LDFLAGS = -module
33 endif