With team_pooled_research, send "tech_researched" signal to player whose
[freeciv.git] / ai / Makefile.am
blobcfff219cb79b7af9603550f8cd30333733c503b2
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 AM_CPPFLAGS = -I$(top_srcdir)/utility -I$(top_srcdir)/common
19 if AI_MODULES
20 if !AI_MOD_STATIC_CLASSIC
21 module_dirs += classic
22 endif
23 if EXP_AI_MODULES
24 if !AI_MOD_STATIC_THREADED
25 module_dirs += threaded
26 endif
27 module_dirs += stub
28 else
29 # AI module loading supported, but experimental modules not built
30 endif
31 endif
33 SUBDIRS = $(module_dirs)
35 noinst_LTLIBRARIES = libaicommon.la
37 libaicommon_la_SOURCES = \
38         aitraits.c      \
39         aitraits.h