Fix python install
[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 XSEG_CLEAN_TARGETS=$(patsubst %,clean-%,$(XSEG_DOMAIN_TARGETS))
40 XSEG_INSTALL_TARGETS=$(patsubst %,install-%,$(XSEG_DOMAIN_TARGETS))
41
42 default: targets
43
44 target-list:
45         @echo $(XSEG_DOMAIN_TARGETS)
46
47 targets: $(XSEG_DOMAIN_TARGETS)
48
49 clean: $(XSEG_CLEAN_TARGETS)
50
51 install: install-src $(XSEG_INSTALL_TARGETS)
52
53 install-src:
54         mkdir -p $(DESTDIR)$(srcdir)
55         cp -r * $(DESTDIR)$(srcdir)
56
57 .PHONY: $(XSEG_DOMAIN_TARGETS)
58 $(XSEG_DOMAIN_TARGETS):
59         @for f in $(XSEG_DOMAIN_DIRS); do \
60                 echo " "; \
61                 echo "=== $@ in $$f ==="; \
62                 echo " "; \
63                 make -C $$f/$@ TARGET=$@ default || exit 1; \
64                 echo " "; \
65         done
66         @echo " "
67
68 .PHONY: $(XSEG_INSTALL_TARGETS)
69 $(XSEG_INSTALL_TARGETS):
70         @for f in $(XSEG_DOMAIN_DIRS); do \
71                 echo " "; \
72                 echo "=== $@ in $$f ==="; \
73                 echo " "; \
74                 make -C $$f/$(@:install-%=%) TARGET=$@ install || true; \
75                 echo " "; \
76         done
77         @echo " "
78
79 .PHONY: $(XSEG_CLEAN_TARGETS)
80 $(XSEG_CLEAN_TARGETS):
81         @for f in $(XSEG_DOMAIN_DIRS); do \
82                 echo " "; \
83                 echo "=== $@ in $$f ==="; \
84                 echo " "; \
85                 make -C $$f/$(@:clean-%=%) TARGET=$@ clean || true; \
86                 echo " "; \
87         done
88         @echo " "
89
90 distclean: $(XSEG_CLEAN_TARGETS)
91         rm -f lib/user/*.so* lib/user/*.a
92         rm -f lib/kernel/*.ko
93         rm -f $(XSEG_HOME)/config.mk