File: Makefile.am

package info (click to toggle)
freeciv 2.0.1-1sarge2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 46,652 kB
  • ctags: 20,861
  • sloc: ansic: 240,732; sh: 4,429; makefile: 1,941; python: 1,249; yacc: 318
file content (60 lines) | stat: -rw-r--r-- 1,051 bytes parent folder | download | duplicates (2)
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
## Process this file with automake to produce Makefile.in

if CLIENT
COMMON_CLIENT_FILES =			\
	isophex.tilespec		\
	isotrident.tilespec		\
	trident.tilespec		\
	trident_shields.tilespec	\
	helpdata.txt
if CLIENT_GUI_XAW
CLIENT_EXTRA_FILES = Freeciv
endif
if CLIENT_GUI_GTK
CLIENT_EXTRA_FILES = freeciv.rc
endif
if CLIENT_GUI_GTK_2_0
CLIENT_EXTRA_FILES = freeciv.rc-2.0
endif
CLIENT_FILES = $(COMMON_CLIENT_FILES) $(CLIENT_EXTRA_FILES)
else
CLIENT_FILES =
endif

if SERVER
SERVER_FILES = \
	civ1.serv \
	civ2.serv \
	history.serv
else
SERVER_FILES =
endif

pkgdata_DATA = $(SERVER_FILES) $(CLIENT_FILES)

EXTRA_DIST = \
	Freeciv	\
	freeciv.rc	\
	freeciv.rc-2.0	\
	isophex.tilespec	\
	isotrident.tilespec \
	trident.tilespec	\
	trident_shields.tilespec	\
	helpdata.txt	\
	civ1.serv	\
	civ2.serv	\
	history.serv

if CLIENT
CLIENTDATADIRS = misc flags isotrident trident isophex
else
CLIENTDATADIRS = 
endif

if SERVER
SERVERDATADIRS = default civ1 civ2 scenario nation history
else
SERVERDATADIRS = 
endif

SUBDIRS = $(CLIENTDATADIRS) $(SERVERDATADIRS)