forked from freeciv/freeciv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.am
101 lines (90 loc) · 1.95 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
## Process this file with automake to produce Makefile.in
AM_DIST_FORMATS = gzip xz zip
if SRV_LIB
SSUBDIRS = ai server
else
SSUBDIRS =
endif
if MAKE_DATA
DSUBDIRS = data
else
DSUBDIRS =
endif
SUBDIRS = gen_headers $(DSUBDIRS) dependencies utility common tests windows $(SSUBDIRS) client translations doc tools lua bootstrap
docs = \
ABOUT-NLS \
AUTHORS \
ChangeLog \
ChangeLog-1.0-S3_0 \
COPYING \
INSTALL \
NEWS
# On branch: add NEWS-x.x here and remove this comment
EXTRA_DIST = autogen.sh \
configure.ac \
m4/ax_cxx_compile_stdcxx.m4 \
m4/c99.m4 \
m4/c11.m4 \
m4/c++11.m4 \
m4/codeset.m4 \
m4/compiler.m4 \
m4/debug.m4 \
m4/emscripten.m4 \
m4/expanddir.m4 \
m4/fc-sdl2.m4 \
m4/fcdb-mysql.m4 \
m4/fcdb-odbc.m4 \
m4/fcdb-postgres.m4 \
m4/fcdb-sqlite3.m4 \
m4/features.m4 \
m4/gettext.m4 \
m4/gettimeofday.m4 \
m4/gtk3.22-client.m4 \
m4/gtk3x-client.m4 \
m4/host-cpu-c-abi.m4 \
m4/iconv.m4 \
m4/intlmacosx.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/multiarch.m4 \
m4/nls.m4 \
m4/no-client.m4 \
m4/pkg.m4 \
m4/po.m4 \
m4/postgres.m4 \
m4/progtest.m4 \
m4/qt.m4 \
m4/qt5.m4 \
m4/qt6.m4 \
m4/qt5-darwin.m4 \
m4/qt6-darwin.m4 \
m4/qt-client.m4 \
m4/readline.m4 \
m4/sdl2-client.m4 \
m4/sqlite3.m4 \
m4/sound.m4 \
m4/tcc.m4 \
m4/vsnprintf.m4 \
m4/web-client.m4 \
m4/winsock2.m4 \
m4/testmatic.m4 \
meson.build \
meson_options.txt \
scripts/mapimg2anim \
scripts/setup_auth_server.sh \
scripts/replace \
scripts/diff_ignore \
scripts/freeciv.supp \
$(docs)
noinst_HEADERS = fc_version
doc_DATA = $(docs)
src-check:
cd tests && $(MAKE) $(AM_MAKEFLAGS) src-check
doc:
doxy_srcdir="$(top_srcdir)/" doxygen $(top_srcdir)/doc/freeciv.doxygen
.PHONY: src-check doc