add license headers
[archipelago] / xseg / drivers / user / 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 xseg lib
35
36 include $(XSEG_HOME)/base.mk
37
38 DRIVERS=xseg_posix xseg_segdev xseg_pthread
39 DRVOBJS=$(DRIVERS:=.o)
40 DRVSOS=$(DRIVERS:=.so)
41
42 default: all
43
44 all: xseg $(DRIVERS:=.so) lib
45
46 $(BASE)/sys/user/xseg_user.o:
47         make -C $(BASE)/sys/user xseg_user.o
48
49 xseg_posix.o: xseg_posix.c $(BASE)/xseg/xseg.h $(BASE)/drivers/xseg_posix.h
50         $(CC) $(CFLAGS) $(INC) -fPIC -c -o $@ $<
51
52 xseg_posix.so: xseg_posix.o $(BASE)/sys/user/xseg_user.o
53         $(CC) -shared -o $@ $< $(BASE)/sys/user/xseg_user.o 
54
55 xseg_segdev.o: xseg_segdev.c $(BASE)/xseg/xseg.h $(BASE)/drivers/xseg_segdev.h
56         $(CC) $(CFLAGS) $(INC) -fPIC -c -o $@ $<
57
58 xseg_segdev.so: xseg_segdev.o $(BASE)/sys/user/xseg_user.o
59         $(CC) -shared -o $@ $< $(BASE)/sys/user/xseg_user.o 
60
61 xseg_pthread.o: xseg_pthread.c $(BASE)/xseg/xseg.h $(BASE)/drivers/xseg_pthread.h
62         $(CC) $(CFLAGS) $(INC) -fPIC -c -o $@ $<
63
64 xseg_pthread.so: xseg_pthread.o $(BASE)/sys/user/xseg_user.o
65         $(CC) -shared -lpthread -o $@ $< $(BASE)/sys/user/xseg_user.o 
66
67 .PHONY: lib
68 lib:
69         cp -vaf $(DRVSOS) $(LIB)
70 clean:
71         rm -f $(DRVOBJS) $(DRVSOS)