Imported Upstream version 1.5
[routino] / doc / Makefile
1 # $Header: /home/amb/routino/doc/RCS/Makefile,v 1.4 2010/09/05 18:27:07 amb Exp $
2 #
3 # Documentation 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/www/routino/documentation
26
27 # Files to install
28
29 HTML_FILES=html/*
30 TXT_FILES=*.txt
31
32 ########
33
34 all :
35         -@[ -d $(WEBDIR) ] && \
36           for file in $(HTML_FILES); do \
37              if [ ! -f $(WEBDIR)/`basename $$file` ] || [ $$file -nt $(WEBDIR)/`basename $$file` ]; then \
38                 echo cp $$file $(WEBDIR) ;\
39                 cp -f $$file $(WEBDIR) ;\
40              fi ;\
41           done
42
43 ########
44
45 install: all
46         -[ -d $(DESTDIR)$(docdir) ] || mkdir -p $(DESTDIR)$(docdir)
47         @[ -d $(DESTDIR)$(docdir) ] && \
48           for file in $(TXT_FILES); do \
49              echo cp $$file $(DESTDIR)$(docdir) ;\
50              cp -f $$file $(DESTDIR)$(docdir) ;\
51           done
52         -[ -d $(DESTDIR)$(docdir)/html ] || mkdir -p $(DESTDIR)$(docdir)/html
53         @[ -d $(DESTDIR)$(docdir)/html ] && \
54           for file in $(HTML_FILES); do \
55              echo cp $$file $(DESTDIR)$(docdir)/html ;\
56              cp -f $$file $(DESTDIR)$(docdir)/html ;\
57           done
58
59 ########
60
61 clean:
62         rm -f *~
63         rm -f html/*~
64         rm -f $(WEBDIR)/*~
65
66 ########
67
68 distclean: clean
69         rm -f $(WEBDIR)/*
70
71 ########
72
73 top=-top
74 include ../Makefile