Imported Upstream version 1.5.1
[routino] / Makefile
1 # $Header: /home/amb/routino/RCS/Makefile,v 1.5 2010/09/05 18:26:57 amb Exp $
2 #
3 # Makefile
4 #
5 # Part of the Routino routing software.
6 #
7 # This file Copyright 2009-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 # Installation locations
24
25 prefix=/usr/local
26 bindir=$(prefix)/bin
27 docdir=$(prefix)/doc/routino
28 datadir=$(prefix)/share/routino
29
30 # Sub-directories and sub-makefiles
31
32 TOPFILES=$(wildcard */Makefile)
33 TOPDIRS=$(foreach f,$(TOPFILES),$(dir $f))
34
35 ########
36
37 all$(top):
38         for dir in $(TOPDIRS); do \
39            ( cd $$dir && $(MAKE) $@ ); \
40         done
41
42 ########
43
44 install$(top): all$(top)
45         for dir in $(TOPDIRS); do \
46            ( cd $$dir && $(MAKE) $@ ); \
47         done
48         @echo "Note: web directory is not installed automatically"
49
50 ########
51
52 clean$(top):
53         for dir in $(TOPDIRS); do \
54            ( cd $$dir && $(MAKE) $@ ); \
55         done
56
57 ########
58
59 distclean$(top): clean$(top)
60         for dir in $(TOPDIRS); do \
61            ( cd $$dir && $(MAKE) $@ ); \
62         done