1## Process this file with automake to produce Makefile.in
2
3noinst_LIBRARIES = libmisc.a
4
5if MAKE_WINDOWS
6THREAD_PRIORITY = thread_priority_sdl_win32.cpp
7else
8THREAD_PRIORITY = thread_priority_sdl_posix.cpp
9endif
10
11libmisc_a_SOURCES = ActionQueues.h alephversion.h binders.h CircularByteBuffer.h \
12  CircularQueue.h Console.h DefaultStringSets.h game_errors.h \
13  interface.h interface_menus.h key_definitions.h Logging.h \
14  PlayerImage_sdl.h \
15  PlayerName.h preference_dialogs.h preferences.h \
16  preferences_widgets_sdl.h progress.h Random.h Scenario.h sdl_dialogs.h sdl_network.h \
17  sdl_widgets.h shared_widgets.h thread_priority_sdl.h vbl_definitions.h vbl.h VecOps.h \
18  WindowedNthElementFinder.h AlephSansMono-Bold.h powered_by_alephone.h \
19  Statistics.h \
20  \
21  ActionQueues.cpp CircularByteBuffer.cpp Console.cpp DefaultStringSets.cpp game_errors.cpp \
22  interface.cpp \
23  Logging.cpp PlayerImage_sdl.cpp PlayerName.cpp preferences.cpp \
24  preference_dialogs.cpp preferences_widgets_sdl.cpp Scenario.cpp sdl_dialogs.cpp $(THREAD_PRIORITY) \
25  sdl_widgets.cpp shared_widgets.cpp vbl.cpp \
26  Statistics.cpp \
27  ProFontAO.h CourierPrime.h CourierPrimeBold.h CourierPrimeItalic.h CourierPrimeBoldItalic.h
28
29EXTRA_libmisc_a_SOURCES = alephone.xpm alephone32.xpm thread_priority_sdl_posix.cpp thread_priority_sdl_dummy.cpp thread_priority_sdl_win32.cpp thread_priority_sdl_macosx.cpp
30
31AM_CPPFLAGS = -I$(top_srcdir)/Source_Files/CSeries -I$(top_srcdir)/Source_Files/Files \
32  -I$(top_srcdir)/Source_Files/GameWorld -I$(top_srcdir)/Source_Files/Input \
33  -I$(top_srcdir)/Source_Files/Lua -I$(top_srcdir)/Source_Files/ModelView -I$(top_srcdir)/Source_Files/Network \
34  -I$(top_srcdir)/Source_Files/Network/Metaserver \
35  -I$(top_srcdir)/Source_Files/FFmpeg -I$(top_srcdir)/Source_Files/RenderMain \
36  -I$(top_srcdir)/Source_Files/RenderOther -I$(top_srcdir)/Source_Files/Sound \
37  -I$(top_srcdir)/Source_Files/TCPMess \
38  -I$(top_srcdir)/Source_Files/XML \
39  -I$(top_srcdir)/Source_Files
40