Check out the latest version of Routino: svn co http://routino.org/svn/trunk routino
Contents of /trunk/xml/Makefile
Parent Directory
|
Revision Log
Revision 878 -
(show annotations)
(download)
Sat Oct 22 17:55:14 2011 UTC (13 years, 5 months ago) by amb
File size: 2844 byte(s)
Sat Oct 22 17:55:14 2011 UTC (13 years, 5 months ago) by amb
File size: 2844 byte(s)
Fix the installation of the XML files.
1 | # XML directory Makefile |
2 | # |
3 | # Part of the Routino routing software. |
4 | # |
5 | # This file Copyright 2010-2011 Andrew M. Bishop |
6 | # |
7 | # This program is free software: you can redistribute it and/or modify |
8 | # it under the terms of the GNU Affero General Public License as published by |
9 | # the Free Software Foundation, either version 3 of the License, or |
10 | # (at your option) any later version. |
11 | # |
12 | # This program is distributed in the hope that it will be useful, |
13 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
15 | # GNU Affero General Public License for more details. |
16 | # |
17 | # You should have received a copy of the GNU Affero General Public License |
18 | # along with this program. If not, see <http://www.gnu.org/licenses/>. |
19 | # |
20 | |
21 | # Web file paths |
22 | |
23 | WEBDATADIR=../web/data |
24 | WEBWWWDIR=../web/www/routino |
25 | |
26 | # Files to install |
27 | |
28 | STANDARD_FILES=profiles.xml \ |
29 | translations.xml \ |
30 | tagging.xml |
31 | |
32 | SPECIAL_FILES=tagging-drive.xml \ |
33 | tagging-ride.xml \ |
34 | tagging-walk.xml |
35 | |
36 | ######## |
37 | |
38 | all: $(SPECIAL_FILES) |
39 | -@for file in $(STANDARD_FILES); do \ |
40 | if [ ! -f $(WEBDATADIR)/$$file ] || [ routino-$$file -nt $(WEBDATADIR)/$$file ]; then \ |
41 | echo cp routino-$$file $(WEBDATADIR)/$$file ;\ |
42 | cp -f routino-$$file $(WEBDATADIR)/$$file ;\ |
43 | fi ;\ |
44 | done |
45 | -@for file in $(SPECIAL_FILES); do \ |
46 | if [ ! -f $(WEBDATADIR)/$$file ] || [ $$file -nt $(WEBDATADIR)/$$file ]; then \ |
47 | echo cp $$file $(WEBDATADIR)/$$file ;\ |
48 | cp -f $$file $(WEBDATADIR)/$$file ;\ |
49 | fi ;\ |
50 | done |
51 | -@if [ ! -f $(WEBWWWDIR)/profiles.js ] || [ ! -f $(WEBWWWDIR)/profiles.pl ] || \ |
52 | [ $(WEBDATADIR)/profiles.xml -nt $(WEBWWWDIR)/profiles.pl ] || \ |
53 | [ $(WEBDATADIR)/profiles.xml -nt $(WEBWWWDIR)/profiles.js ]; then \ |
54 | echo perl update-profiles.pl ;\ |
55 | ( cd $(WEBWWWDIR) ; perl update-profiles.pl ) ;\ |
56 | fi |
57 | |
58 | #### |
59 | |
60 | tagging-drive.xml : routino-tagging.xml scripts/drive.pl |
61 | perl scripts/drive.pl < routino-tagging.xml > tagging-drive.xml |
62 | |
63 | tagging-ride.xml : routino-tagging.xml scripts/ride.pl |
64 | perl scripts/ride.pl < routino-tagging.xml > tagging-ride.xml |
65 | |
66 | tagging-walk.xml : routino-tagging.xml scripts/walk.pl |
67 | perl scripts/walk.pl < routino-tagging.xml > tagging-walk.xml |
68 | |
69 | ######## |
70 | |
71 | test: |
72 | |
73 | ######## |
74 | |
75 | install: all |
76 | -[ -d $(DESTDIR)$(datadir) ] || mkdir -p $(DESTDIR)$(datadir) |
77 | -@for file in $(STANDARD_FILES) ; do \ |
78 | echo cp routino-$$file $(DESTDIR)$(datadir)/$$file ;\ |
79 | cp -f routino-$$file $(DESTDIR)$(datadir)/$$file ;\ |
80 | done |
81 | -@for file in $(SPECIAL_FILES); do \ |
82 | echo cp $$file $(DESTDIR)$(datadir)/$$file ;\ |
83 | cp -f $$file $(DESTDIR)$(datadir)/$$file ;\ |
84 | done |
85 | |
86 | ######## |
87 | |
88 | clean: |
89 | rm -f *~ |
90 | |
91 | ######## |
92 | |
93 | distclean: clean |
94 | rm -f $(WEBDATADIR)/*.xml |
95 | rm -f $(SPECIAL_FILES) |
96 | |
97 | ######## |
98 | |
99 | top=-top |
100 | include ../Makefile |
Properties
Name | Value |
---|---|
cvs:description | A Makefile for the xml directory. |