Makefiles do not remove version files
[archipelago] / xseg / sys / user / python / 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 all clean install install-src
35
36 include $(XSEG_HOME)/base.mk
37
38 FILES="Makefile"
39 FILES+=$(shell ls *.py)
40
41 SUBDIR:=$(subst $(XSEG_HOME),,$(CURDIR))
42
43
44 H2XML = h2xml
45 XML2PY = xml2py
46
47 default: all
48
49 all: xseg/xseg_api.py xseg/xprotocol.py
50         if [ ! -e xseg/version.py ] ; then \
51                 echo '__version__ = "'`devflow-version python`'"' > xseg/version.py ; \
52         fi
53         python setup.py build
54
55 $(BASE)/sys/user/libxseg.so:
56         make -C $(BASE)/sys/user libxseg.so
57
58 xseg.xml: $(BASE)/xseg/xseg.h $(BASE)/xtypes/xq.h $(BASE)/xtypes/xlock.h \
59         $(BASE)/xtypes/xpool.h $(BASE)/xtypes/xhash.h \
60         $(BASE)/xtypes/xheap.h $(BASE)/xtypes/xobj.h \
61         $(BASE)/sys/domain.h $(BASE)/sys/util.h $(BASE)/sys/user/_sysutil.h $(BASE)/xseg/protocol.h
62         $(H2XML) -c $(INC) -o $@ $(BASE)/xseg/xseg.h
63
64 xprotocol.xml: 
65         $(H2XML) -c $(INC) -o $@ $(BASE)/xseg/protocol.h
66
67 xseg/xseg_api.py: xseg.xml
68         $(XML2PY) -d -k defst -l $(BASE)/lib/user/libxseg.so.$(MAJOR) -c $< -o $@
69         sed -i -e 's/xseg_get_data_nonstatic.restype = STRING/xseg_get_data_nonstatic.restype = POINTER(c_char)/g' xseg/xseg_api.py
70         sed -i -e 's/xseg_get_target_nonstatic.restype = STRING/xseg_get_target_nonstatic.restype = POINTER(c_char)/g' xseg/xseg_api.py
71         sed -i -e 's/STRING = 1//g' xseg/xseg_api.py
72         sed -i -e 's,$(BASE)/lib/user/libxseg.so.$(MAJOR),libxseg.so.$(MAJOR),g' xseg/xseg_api.py
73
74
75 xseg/xprotocol.py: xprotocol.xml
76         $(XML2PY) -d -k defst -c $< -o $@
77
78 install:
79         if [ ! -e xseg/version.py ] ; then \
80                 echo '__version__ = "'`devflow-version python`'"' > xseg/version.py ; \
81         fi
82         python setup.py install --install-layout=deb --root=$(DESTDIR)
83
84 install-src:
85         install -d $(DESTDIR)$(srcdir)$(SUBDIR) ;
86         @for f in $(FILES) ; do \
87                 install -o 0 -g 0 -m 644 -t $(DESTDIR)$(srcdir)$(SUBDIR) $$f ; \
88         done
89         install -d $(DESTDIR)$(srcdir)$(SUBDIR)/xseg ;
90         install -o 0 -g 0 -m 644 -t $(DESTDIR)$(srcdir)$(SUBDIR)/xseg xseg/__init__.py ; \
91
92
93
94 clean:
95         rm -rf build/
96         rm -rf python_xseg.egg-info/
97         rm -f xseg.xml xprotocol.xml xseg/xseg_api.py xseg/xseg_api.pyc \
98                 xseg/xprotocol.py xseg/xprotocol.pyc xseg/__init__.pyc