forked from longturn/freeciv-S2_5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.am
124 lines (113 loc) · 2.77 KB
/
Makefile.am
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
## Process this file with automake to produce Makefile.in
ACLOCAL_AMFLAGS = -I m4 -I dependencies/m4
if CLIENT
CSUBDIRS = client
else
CSUBDIRS =
endif
if SERVER
SSUBDIRS = ai server
else
SSUBDIRS =
endif
if MAKE_DATA
DSUBDIRS = data
else
DSUBDIRS =
endif
SUBDIRS = $(DSUBDIRS) dependencies utility common tests win32 $(SSUBDIRS) $(CSUBDIRS) \
translations doc tools lua
## Automake should distribute config.rpath automatically - and new
## versions probably do. We still support versions that do not, so
## it's in the list below.
## It should also install it automatically when running autogen.sh.
EXTRA_DIST = autogen.sh \
configure.ac \
diff_ignore \
bootstrap/fcgui.in \
bootstrap/fcser.in \
bootstrap/fc_svnrev_gen.h.tmpl \
bootstrap/generate_svnrev.sh \
bootstrap/fc_gitrev_gen.h.tmpl \
bootstrap/generate_gitrev.sh \
bootstrap/freeciv.desktop.in \
bootstrap/freeciv-gtk2.desktop.in \
bootstrap/freeciv-sdl.desktop.in \
bootstrap/freeciv-qt.desktop.in \
bootstrap/freeciv-server.desktop.in \
bootstrap/freeciv-mp-gtk2.desktop.in \
bootstrap/freeciv-mp-gtk3.desktop.in \
bootstrap/freeciv-mp-qt.desktop.in \
bootstrap/freeciv-gtk2.appdata.xml.in \
bootstrap/freeciv-gtk3.appdata.xml.in \
bootstrap/freeciv-sdl.appdata.xml.in \
bootstrap/freeciv-qt.appdata.xml.in \
bootstrap/freeciv-server.appdata.xml.in \
bootstrap/freeciv-mp-gtk2.appdata.xml.in \
bootstrap/freeciv-mp-gtk3.appdata.xml.in \
bootstrap/freeciv-mp-qt.appdata.xml.in \
bootstrap/freeciv.spec.in \
bootstrap/config.rpath \
bootstrap/Makerules.mk \
bootstrap/langnames.txt \
m4/ac_path_lib.m4 \
m4/c99.m4 \
m4/c++11.m4 \
m4/codeset.m4 \
m4/compiler.m4 \
m4/debug.m4 \
m4/fcdb-mysql.m4 \
m4/fcdb-postgres.m4 \
m4/fcdb-sqlite3.m4 \
m4/features.m4 \
m4/freetype2.m4 \
m4/gettimeofday.m4 \
m4/ggz.m4 \
m4/freeciv-gettext.m4 \
m4/gtk-2.0.m4 \
m4/gtk-3.0.m4 \
m4/gtk2-client.m4 \
m4/gtk3-client.m4 \
m4/iconv.m4 \
m4/imlib.m4 \
m4/lcmessage.m4 \
m4/lib-ld.m4 \
m4/lib-link.m4 \
m4/lib-prefix.m4 \
m4/locale.m4 \
m4/mysql.m4 \
m4/magickwand.m4 \
m4/mapimg-magickwand.m4 \
m4/ngettext.m4 \
m4/no-client.m4 \
m4/pkg.m4 \
m4/postgres.m4 \
m4/progtest.m4 \
m4/qt5.m4 \
m4/qt5-darwin.m4 \
m4/qt-client.m4 \
m4/readline.m4 \
m4/sdl-client.m4 \
m4/sdl.m4 \
m4/sdl2.m4 \
m4/sqlite3.m4 \
m4/sound.m4 \
m4/vsnprintf.m4 \
m4/xaw-client.m4 \
m4/x.m4 \
scripts/mapimg2anim \
scripts/setup_auth_server.sh \
NEWS-2.5
noinst_HEADERS= fc_version
docs = \
ABOUT-NLS \
AUTHORS \
ChangeLog \
COPYING \
INSTALL \
NEWS \
NEWS-2.5
doc_DATA = $(docs)
src-check:
cd tests && $(MAKE) $(AM_MAKEFLAGS) src-check
.PHONY: src-check