ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/lib/Makefile.am
Revision: 1.47
Committed: Wed Nov 16 23:42:01 2016 UTC (7 years, 6 months ago) by root
Branch: MAIN
Changes since 1.46: +1 -1 lines
Log Message:
copyright update 2016

File Contents

# User Rev Content
1 root 1.1 #
2 root 1.34 # This file is part of Deliantra, the Roguelike Realtime MMORPG.
3 root 1.46 #
4 root 1.47 # Copyright (©) 2007,2008,2009,2010,2011,2012,2013,2014,2015,2016 Marc Alexander Lehmann / Robin Redeker / the Deliantra team
5 root 1.40 # Copyright (©) 2001 Mark Wedel & Crossfire Development Team
6     # Copyright (©) 1992 Frank Tore Johansen
7 root 1.46 #
8 root 1.38 # Deliantra is free software: you can redistribute it and/or modify it under
9     # the terms of the Affero GNU General Public License as published by the
10     # Free Software Foundation, either version 3 of the License, or (at your
11     # option) any later version.
12 root 1.46 #
13 root 1.31 # 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 root 1.46 #
18 root 1.38 # You should have received a copy of the Affero GNU General Public License
19     # and the GNU General Public License along with this program. If not, see
20     # <http://www.gnu.org/licenses/>.
21 root 1.46 #
22 root 1.34 # The authors can be reached via e-mail to <support@deliantra.net>
23 root 1.1 #
24    
25     pkgstatedir = @pkgstatedir@
26     pkgconfdir = @pkgconfdir@
27    
28 root 1.42 nobase_dist_pkgdata_DATA = cf.pm
29 root 1.1
30 root 1.24 pmdir = $(pkgdatadir)/cf
31 root 1.43 dist_pm_DATA = cf/pod.pm cf/match.pm cf/mapscript.pm cf/incloader.pm
32 root 1.24
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 root 1.42 CONF_FILES = settings dm_file config
37 root 1.26 VAR_FILES = highscore bookarch temp.maps
38 root 1.28 EXTRA_DIST = README $(CONF_FILES)
39 root 1.1
40 root 1.28 MAINTAINERCLEANFILES = Makefile.in
41 root 1.1
42     PERL = @PERL@
43    
44 root 1.35 install-data-local:
45 root 1.1 @$(NORMAL_INSTALL)
46 root 1.29 $(mkinstalldirs) -m 755 $(DESTDIR)$(pkgdatadir)/maps
47 root 1.28 $(mkinstalldirs) -m 755 $(DESTDIR)$(pkgconfdir)
48 root 1.1 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 root 1.24 $(mkinstalldirs) -m 755 $(DESTDIR)$(pkgstatedir)
55 root 1.1 for i in $(VAR_FILES) ; do \
56     touch $(DESTDIR)$(pkgstatedir)/$$i ; \
57     done
58 root 1.24 @for i in datafiles players unique-items template-maps maps random db tmp; do \
59 root 1.1 if [ ! -d $(DESTDIR)$(pkgstatedir)/$$i ]; then \
60     echo "Creating directory $(pkgstatedir)/$$i"; \
61 root 1.24 $(mkinstalldirs) -m 755 $(DESTDIR)$(pkgstatedir)/$$i; \
62 root 1.1 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 root 1.18 if ! [ -s "$(DESTDIR)$(pkgstatedir)/$$i" ] ; then \
81 root 1.1 rm -f $(DESTDIR)$(pkgstatedir)/$$i ; \
82     fi ; \
83     done
84    
85