ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/lib/Makefile.am
Revision: 1.48
Committed: Sat Nov 17 23:40:02 2018 UTC (5 years, 5 months ago) by root
Branch: MAIN
CVS Tags: HEAD
Changes since 1.47: +1 -0 lines
Log Message:
copyright update 2018

File Contents

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