Imported Upstream version 1.5.1
[routino] / xml / Makefile
1 # $Header: /home/amb/routino/xml/RCS/Makefile,v 1.8 2010/09/05 18:27:17 amb Exp $
2 #
3 # XML directory Makefile
4 #
5 # Part of the Routino routing software.
6 #
7 # This file Copyright 2010 Andrew M. Bishop
8 #
9 # This program is free software: you can redistribute it and/or modify
10 # it under the terms of the GNU Affero General Public License as published by
11 # the Free Software Foundation, either version 3 of the License, or
12 # (at your 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 Affero General Public License for more details.
18 #
19 # You should have received a copy of the GNU Affero General Public License
20 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
21 #
22
23 # Web file paths
24
25 WEBDIR=../web/data
26
27 # Files to install
28
29 FILES=profiles.xml \
30       translations.xml \
31       tagging.xml
32
33 ########
34
35 all :
36         -@[ -d $(WEBDIR) ] && \
37           for file in $(FILES); do \
38              if [ ! -f $(WEBDIR)/$$file ] || [ routino-$$file -nt $(WEBDIR)/$$file ]; then \
39                 echo cp routino-$$file $(WEBDIR)/$$file ;\
40                 cp -f routino-$$file $(WEBDIR)/$$file ;\
41              fi ;\
42           done
43
44 ########
45
46 install: all
47         -[ -d $(DESTDIR)$(datadir) ] || mkdir -p $(DESTDIR)$(datadir)
48         @[ -d $(DESTDIR)$(datadir) ] && \
49           for file in $(FILES); do \
50              echo cp routino-$$file $(DESTDIR)$(datadir)/$$file ;\
51              cp -f routino-$$file $(DESTDIR)$(datadir)/$$file ;\
52           done
53
54 ########
55
56 clean:
57         rm -f *~
58
59 ########
60
61 distclean: clean
62         rm -f $(WEBDIR)/*.xml
63
64 ########
65
66 top=-top
67 include ../Makefile