Check out the latest version of Routino: svn co http://routino.org/svn/trunk routino
Contents of /branches/destination-access/Makefile
Parent Directory
|
Revision Log
Revision 1807 -
(show annotations)
(download)
Wed Sep 23 18:20:13 2015 UTC (9 years, 6 months ago) by amb
File size: 1411 byte(s)
Wed Sep 23 18:20:13 2015 UTC (9 years, 6 months ago) by amb
File size: 1411 byte(s)
Merge the trunk changes back into the destination-access branch.
1 | # Top level Makefile |
2 | # |
3 | # Part of the Routino routing software. |
4 | # |
5 | # This file Copyright 2009-2015 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 | # All configuration is in the top-level Makefile.conf |
22 | |
23 | include Makefile.conf |
24 | |
25 | # Sub-directories and sub-makefiles |
26 | |
27 | SUBDIRS=src xml doc web extras |
28 | |
29 | ######## |
30 | |
31 | all: |
32 | for dir in $(SUBDIRS); do \ |
33 | ( cd $$dir && $(MAKE) $@ ); \ |
34 | done |
35 | |
36 | ######## |
37 | |
38 | test: |
39 | for dir in $(SUBDIRS); do \ |
40 | ( cd $$dir && $(MAKE) $@ ); \ |
41 | done |
42 | |
43 | ######## |
44 | |
45 | install: |
46 | for dir in $(SUBDIRS); do \ |
47 | ( cd $$dir && $(MAKE) $@ ); \ |
48 | done |
49 | |
50 | ######## |
51 | |
52 | clean: |
53 | for dir in $(SUBDIRS); do \ |
54 | ( cd $$dir && $(MAKE) $@ ); \ |
55 | done |
56 | |
57 | ######## |
58 | |
59 | distclean: |
60 | for dir in $(SUBDIRS); do \ |
61 | ( cd $$dir && $(MAKE) $@ ); \ |
62 | done |
63 | |
64 | ######## |
65 | |
66 | .PHONY:: all test install clean distclean |
Properties
Name | Value |
---|---|
cvs:description | Top level Makefile. |