ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/lib/Makefile.am
Revision: 1.33
Committed: Tue Sep 11 13:35:32 2007 UTC (16 years, 8 months ago) by root
Branch: MAIN
CVS Tags: rel-2_2, rel-2_3
Changes since 1.32: +1 -1 lines
Log Message:
2.2 release

File Contents

# Content
1 #
2 # This file is part of Crossfire TRT, the Roguelike Realtime MORPG.
3 #
4 # Copyright (©) 2007 Marc Alexander Lehmann / Robin Redeker / the Crossfire TRT team
5 # Copyright (©) 2001,2007 Mark Wedel & Crossfire Development Team
6 # Copyright (©) 1992,2007 Frank Tore Johansen
7 #
8 # Crossfire TRT is free software: you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation, either version 3 of the License, or
11 # (at your option) any later version.
12 #
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with this program. If not, see <http://www.gnu.org/licenses/>.
20 #
21 # The authors can be reached via e-mail to <crossfire@schmorp.de>
22 #
23
24 pkgstatedir = @pkgstatedir@
25 pkgconfdir = @pkgconfdir@
26
27 nobase_dist_pkgdata_DATA = artifacts formulae races \
28 attackmess materials cf.pm jeweler.yaml
29
30 pmdir = $(pkgdatadir)/cf
31 dist_pm_DATA = cf/pod.pm
32
33 admdir = $(pkgdatadir)/adm
34 dist_adm_DATA = adm/map_info adm/map_expand.pl adm/mapslitter.pl adm/archsearch.pl adm/collect_images.pl
35
36 CONF_FILES = settings motd dm_file exp_table news rules config
37 VAR_FILES = highscore bookarch temp.maps
38 EXTRA_DIST = README $(CONF_FILES)
39
40 MAINTAINERCLEANFILES = Makefile.in
41
42 PERL = @PERL@
43
44 install-data-local: jeweler.yaml
45 @$(NORMAL_INSTALL)
46 $(mkinstalldirs) -m 755 $(DESTDIR)$(pkgdatadir)/maps
47 $(mkinstalldirs) -m 755 $(DESTDIR)$(pkgconfdir)
48 for i in $(CONF_FILES); do \
49 if [ ! -f $(DESTDIR)$(pkgconfdir)/$$i ]; then \
50 echo "Installing $$i"; \
51 $(INSTALL_DATA) $(srcdir)/$$i $(DESTDIR)$(pkgconfdir); \
52 fi \
53 done
54 $(mkinstalldirs) -m 755 $(DESTDIR)$(pkgstatedir)
55 for i in $(VAR_FILES) ; do \
56 touch $(DESTDIR)$(pkgstatedir)/$$i ; \
57 done
58 @for i in datafiles players unique-items template-maps maps random db tmp; do \
59 if [ ! -d $(DESTDIR)$(pkgstatedir)/$$i ]; then \
60 echo "Creating directory $(pkgstatedir)/$$i"; \
61 $(mkinstalldirs) -m 755 $(DESTDIR)$(pkgstatedir)/$$i; \
62 fi; \
63 done
64
65 # Uninstall unchanged config/var files so make distcheck is happy
66 # but leave changed file, so no configuration/game state is lost
67 uninstall-local:
68 -for i in $(CONF_FILES); do \
69 if test ! -f $(DESTDIR)$(pkgconfdir)/$$i ; then \
70 continue ; \
71 fi ; \
72 if diff -q $(srcdir)/$$i $(DESTDIR)$(pkgconfdir)/$$i ; then \
73 rm -f $(DESTDIR)$(pkgconfdir)/$$i ; \
74 fi ; \
75 done
76 -for i in $(VAR_FILES) ; do \
77 if test ! -f $(DESTDIR)$(pkgstatedir)/$$i ; then \
78 continue ;\
79 fi ; \
80 if ! [ -s "$(DESTDIR)$(pkgstatedir)/$$i" ] ; then \
81 rm -f $(DESTDIR)$(pkgstatedir)/$$i ; \
82 fi ; \
83 done
84
85