Print more useful results
[archipelago] / xseg / Makefile
1 # Copyright 2012 GRNET S.A. All rights reserved.
2 #
3 # Redistribution and use in source and binary forms, with or
4 # without modification, are permitted provided that the following
5 # conditions are met:
6 #
7 #   1. Redistributions of source code must retain the above
8 #      copyright notice, this list of conditions and the following
9 #      disclaimer.
10 #   2. Redistributions in binary form must reproduce the above
11 #      copyright notice, this list of conditions and the following
12 #      disclaimer in the documentation and/or other materials
13 #      provided with the distribution.
14 #
15 # THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS
16 # OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17 # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
18 # PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR
19 # CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
20 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
21 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
22 # USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
23 # AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
25 # ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
26 # POSSIBILITY OF SUCH DAMAGE.
27 #
28 # The views and conclusions contained in the software and
29 # documentation are those of the authors and should not be
30 # interpreted as representing official policies, either expressed
31 # or implied, of GRNET S.A.
32 #
33
34 .PHONY: default clean target-list distclean
35
36 TARGET=default
37 include ./base.mk
38
39 FILES="base.mk"
40 FILES+="config.env"
41 FILES+="envsetup"
42 FILES+="Makefile"
43 FILES+="launch"
44
45
46 XSEG_BUILD_TARGETS=$(patsubst %,build-%,$(XSEG_DIRS))
47 XSEG_CLEAN_TARGETS=$(patsubst %,clean-%,$(XSEG_DIRS))
48 XSEG_INSTALL_TARGETS=$(patsubst %,install-%,$(XSEG_DIRS))
49 XSEG_INSTALLSRC_TARGETS=$(patsubst %,install-src-%,$(XSEG_DIRS))
50
51 default: targets
52
53 target-list:
54         @echo $(XSEG_DOMAIN_TARGETS)
55
56 targets: $(XSEG_BUILD_TARGETS)
57
58 clean: $(XSEG_CLEAN_TARGETS)
59         rm $(CONFIG)
60
61 install: $(XSEG_INSTALL_TARGETS)
62
63 install-src: $(XSEG_INSTALLSRC_TARGETS) $(XSEG_INSTALLSRC_DIRS)
64         install -d $(DESTDIR)$(srcdir)/lib
65         install -d $(DESTDIR)$(srcdir)/lib/user
66         install -d $(DESTDIR)$(srcdir)/lib/kernel
67         install -d $(DESTDIR)$(srcdir)/
68         install -o 0 -g 0 -m 755 -t $(DESTDIR)$(srcdir) envsetup
69         install -o 0 -g 0 -m 755 -t $(DESTDIR)$(srcdir) launch
70         install -o 0 -g 0 -m 644 -t $(DESTDIR)$(srcdir) config.env
71         install -o 0 -g 0 -m 644 -t $(DESTDIR)$(srcdir) Makefile
72         install -o 0 -g 0 -m 644 -t $(DESTDIR)$(srcdir) base.mk
73
74 #       @for f in $(FILES); do \
75 #               install -o 0 -g 0 -m 644 -t $(DESTDIR)$(srcdir) $$f ; \
76 #       done
77
78
79 .PHONY: $(XSEG_BUILD_TARGETS)
80 $(XSEG_BUILD_TARGETS):
81         @echo "" ;
82         @echo "=== $@ ===";
83         @make -C $(@:build-%=%) default || exit 1;
84         @echo "" ;
85
86 .PHONY: $(XSEG_INSTALL_TARGETS)
87 $(XSEG_INSTALL_TARGETS):
88         @echo "" ;
89         @echo "=== $@ ===";
90         @make -C $(@:install-%=%) install || true;
91         @echo "" ;
92
93 .PHONY: $(XSEG_INSTALLSRC_TARGETS)
94 $(XSEG_INSTALLSRC_TARGETS):
95         @echo "" ;
96         @echo "=== $@ ===";
97         @make -C $(@:install-src-%=%) install-src || true;
98         @echo "" ;
99
100 .PHONY: $(XSEG_CLEAN_TARGETS)
101 $(XSEG_CLEAN_TARGETS):
102         @echo "" ;
103         @echo "=== $@ ===";
104         @make -C $(@:clean-%=%) clean || true;
105         @echo "" ;
106
107 distclean: $(XSEG_CLEAN_TARGETS)
108         rm -f lib/user/*.so* lib/user/*.a
109         rm -f lib/kernel/*.ko
110         rm -f $(XSEG_HOME)/config.mk