Remove unused / undefined functions related to path searching.
[freeciv.git] / data / Makefile.am
blobf4c6158a252e6a55903d297c2fdef2c9b9b90da6
1 ## Process this file with automake to produce Makefile.in
3 pkgsysconfdir = $(sysconfdir)/$(PACKAGE)
5 if CLIENT
6 CLIENT_FILES =                          \
7         hex2t.tilespec                  \
8         amplio2.tilespec                \
9         cimpletoon.tilespec             \
10         isophex.tilespec                \
11         isotrident.tilespec             \
12         trident.tilespec                \
13         stdsounds.soundspec             \
14         helpdata.txt
15 if CLIENT_GUI_XAW
16 CLIENT_FILES += Freeciv
17 endif
18 if CLIENT_GUI_GTK_2_0
19 CLIENT_FILES += \
20         freeciv.rc-2.0  \
21         gtk_menus.xml
22 else
23 if CLIENT_GUI_GTK_3_0
24 CLIENT_FILES += \
25         gtk_menus.xml
26 endif
27 endif
28 else
29 CLIENT_FILES =
30 endif
32 if SERVER
33 SERVER_FILES = \
34         civ1.serv \
35         civ2.serv \
36         classic.serv \
37         default.serv \
38         experimental.serv \
39         multiplayer.serv \
40         civ2civ3.serv
42 SERVER_CONF = database.lua
44 else
45 SERVER_FILES =
46 SERVER_CONF =
47 endif
49 pkgsysconf_DATA = $(SERVER_CONF)
50 pkgdata_DATA = $(SERVER_FILES) $(CLIENT_FILES)
52 # Freeciv.rc was originally for gui-gtk but is also used by gui-sdl
53 EXTRA_DIST = \
54         Freeciv \
55         freeciv-client.png \
56         freeciv.rc      \
57         freeciv.rc-2.0  \
58         gtk_menus.xml   \
59         civserver.dsc.in        \
60         civclient.dsc.in        \
61         civserver.room.in       \
62         database.lua    \
63         hex2t.tilespec  \
64         amplio2.tilespec \
65         cimpletoon.tilespec \
66         isophex.tilespec        \
67         isotrident.tilespec \
68         trident.tilespec        \
69         stdsounds.soundspec     \
70         helpdata.txt    \
71         civ1.serv       \
72         civ2.serv       \
73         classic.serv    \
74         default.serv    \
75         experimental.serv \
76         multiplayer.serv \
77         civ2civ3.serv
79 if CLIENT
80 CLIENTDATADIRS = amplio2 misc flags buildings cimpletoon isotrident trident\
81  isophex hex2t stdsounds themes wonders
82 else
83 CLIENTDATADIRS = 
84 endif
86 if SERVER
87 SERVERDATADIRS = default classic civ1 civ2 experimental multiplayer civ2civ3 scenarios nation
88 else
89 SERVERDATADIRS = 
90 endif
92 if CLIENT
93 ICONS = freeciv-client.png
94 else
95 ICONS = 
96 endif
98 icondir = $(prefix)/share/pixmaps
99 icon_DATA=$(ICONS)
101 SUBDIRS = icons $(CLIENTDATADIRS) $(SERVERDATADIRS)
103 if GGZ_CLIENT
104 install-data-local:
105         $(GGZ_CONFIG) -D --install --modfile=civclient.dsc --force
107 uninstall-local:
108         $(GGZ_CONFIG) -D --remove --modfile=civclient.dsc
109 endif
111 if GGZ_SERVER
112 ggzroom_DATA = civserver.room
113 ggzroomdir = $(ggzdconfdir)/rooms/
115 ggzgame_DATA = civserver.dsc
116 ggzgamedir = $(ggzdconfdir)/games/
117 endif