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