ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/lib/Makefile.am
Revision: 1.23
Committed: Mon Mar 5 19:54:49 2007 UTC (17 years, 2 months ago) by root
Branch: MAIN
CVS Tags: rel-2_0
Changes since 1.22: +4 -9 lines
Log Message:
partially support vpath builds

File Contents

# User Rev Content
1 root 1.23 # Copyright (C) 2007 Marc Alexander Lehmann
2 root 1.1 # Copyright (C) 2001 Mark Wedel & Crossfire Development Team
3     # Copyright (C) 1992 Frank Tore Johansen
4     #
5     # This program is free software; you can redistribute it and/or modify
6     # it under the terms of the GNU General Public License as published by
7     # the Free Software Foundation; either version 2 of the License, or
8     # (at your option) any later version.
9     #
10     # This program is distributed in the hope that it will be useful,
11     # but WITHOUT ANY WARRANTY; without even the implied warranty of
12     # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13     # GNU General Public License for more details.
14     #
15     # You should have received a copy of the GNU General Public License
16     # along with this program; if not, write to the Free Software
17     # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18     #
19 root 1.17 # The authors can be reached via e-mail to crossfire@schmorp.de
20 root 1.1
21     pkgstatedir = @pkgstatedir@
22     pkgconfdir = @pkgconfdir@
23    
24     dist_noinst_SCRIPTS = collect.pl util.pl checkarch.pl
25 root 1.23 dist_pkgdata_DATA = artifacts def_help formulae messages races \
26     animations archetypes bmaps bmaps.paths crossfire.0 \
27 root 1.21 faces attackmess image_info smooth materials cf.pm jeweler.yaml
28 root 1.1
29 pippijn 1.19 CONF_FILES = settings motd dm_file forbid ban_file exp_table news rules config
30 root 1.1 VAR_FILES = highscore banish_file bookarch temp.maps clockdata
31 root 1.23 EXTRA_DIST = README .collect-stamp $(CONF_FILES) treasures.bld
32 root 1.1
33     admdir=$(pkgdatadir)/adm
34     dist_adm_SCRIPTS = \
35     adm/map_info adm/map_expand.pl adm/mapslitter.pl adm/archsearch.pl \
36     adm/collect_images.pl
37    
38 pippijn 1.10 MAINTAINERCLEANFILES = animations archetypes bmaps bmaps.paths crossfire.0 faces treasures.bld smooth .collect-stamp Makefile.in
39 root 1.1
40     PERL = @PERL@
41    
42     crossfire.0: bmaps.paths
43     $(PERL) $(srcdir)/adm/collect_images.pl -png
44    
45     .collect-stamp:
46     touch .collect-stamp
47    
48     collect:
49     $(PERL) -I$(srcdir) collect.pl $(srcdir)/arch
50     $(PERL) $(srcdir)/adm/collect_images.pl -png
51    
52     archonly:
53     $(PERL) -I$(srcdir) collect.pl $(srcdir)/arch ARCHONLY
54    
55     archetypes: .collect-stamp
56     make collect
57    
58     faces: .collect-stamp
59     make collect
60    
61     animations: .collect-stamp
62     make collect
63    
64     bmaps.paths bmaps: .collect-stamp
65     make collect
66    
67 pippijn 1.5 smooth: .collect-stamp
68     make collect
69    
70 elmex 1.14 install-data-local: archetypes crossfire.0 faces animations collect.pl util.pl jeweler.yaml
71 root 1.1 @$(NORMAL_INSTALL)
72     $(mkinstalldirs) $(DESTDIR)$(pkgconfdir)
73     for i in $(CONF_FILES); do \
74     if [ ! -f $(DESTDIR)$(pkgconfdir)/$$i ]; then \
75     echo "Installing $$i"; \
76     $(INSTALL_DATA) $(srcdir)/$$i $(DESTDIR)$(pkgconfdir); \
77     fi \
78     done
79    
80     $(mkinstalldirs) $(DESTDIR)$(pkgstatedir)
81     for i in $(VAR_FILES) ; do \
82     touch $(DESTDIR)$(pkgstatedir)/$$i ; \
83     done
84    
85     @for i in datafiles players unique-items template-maps maps; do \
86     if [ ! -d $(DESTDIR)$(pkgstatedir)/$$i ]; then \
87     echo "Creating directory $(pkgstatedir)/$$i"; \
88     $(mkinstalldirs) $(DESTDIR)$(pkgstatedir)/$$i; \
89     fi; \
90     done
91     # Special case above because the name we install to is different
92     # than the name of the file
93     if [ ! -d $(DESTDIR)$(pkgdatadir)/$$i ]; then \
94     echo "Creating directory $(pkgdatadir)/$$i"; \
95     $(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/$$i; \
96     fi; \
97     $(INSTALL_DATA) $(srcdir)/treasures.bld $(DESTDIR)$(pkgdatadir)/treasures
98    
99    
100     # Uninstall unchanged config/var files so make distcheck is happy
101     # but leave changed file, so no configuration/game state is lost
102     uninstall-local:
103     -for i in $(CONF_FILES); do \
104     if test ! -f $(DESTDIR)$(pkgconfdir)/$$i ; then \
105     continue ; \
106     fi ; \
107     if diff -q $(srcdir)/$$i $(DESTDIR)$(pkgconfdir)/$$i ; then \
108     rm -f $(DESTDIR)$(pkgconfdir)/$$i ; \
109     fi ; \
110     done
111     -for i in $(VAR_FILES) ; do \
112     if test ! -f $(DESTDIR)$(pkgstatedir)/$$i ; then \
113     continue ;\
114     fi ; \
115 root 1.18 if ! [ -s "$(DESTDIR)$(pkgstatedir)/$$i" ] ; then \
116 root 1.1 rm -f $(DESTDIR)$(pkgstatedir)/$$i ; \
117     fi ; \
118     done
119    
120    
121     # This block makes the archive of the arch directory.
122     archive::
123     $(AMTAR) -cvh --exclude=dev --exclude=CVS -f $(PACKAGE)-$(VERSION)-arch.tar arch
124     $(GZIP) -cv9 $(PACKAGE)-$(VERSION)-arch.tar > ../$(PACKAGE)-$(VERSION)-arch.tar.gz
125     $(BZIP) -cv --repetitive-best $(PACKAGE)-$(VERSION)-arch.tar > ../$(PACKAGE)-$(VERSION)-arch.tar.bz2
126     $(RM) $(PACKAGE)-$(VERSION)-arch.tar
127    
128     libArch:
129     tar cvf A`perl puredate.pl`.tar arch treasures
130     gzip A`perl puredate.pl`.tar