When mixer is not available, recommend SDL2_mixer instead of SDL1.2 mixer
[freeciv.git] / ai / Makefile.am
blob88f0929ab6674a89a8accd7b4d7a6080f9845c65
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_STUB
18 module_dirs += stub
19 endif
21 AM_CPPFLAGS = -I$(top_srcdir)/utility -I$(top_srcdir)/common
23 if AI_MODULES
24 if !AI_MOD_STATIC_CLASSIC
25 module_dirs += classic
26 endif
27 if EXP_AI_MODULES
28 if !AI_MOD_STATIC_THREADED
29 module_dirs += threaded
30 endif
31 if !AI_MOD_STATIC_STUB
32 module_dirs += stub
33 endif
34 else
35 # AI module loading supported, but experimental modules not built
36 endif
37 endif
39 SUBDIRS = $(module_dirs)
41 noinst_LTLIBRARIES = libaicommon.la
43 libaicommon_la_SOURCES = \
44         aitraits.c      \
45         aitraits.h      \
46         difficulty.c    \
47         difficulty.h    \
48         handicaps.c     \
49         handicaps.h