add license headers
[archipelago] / xseg / peers / kernel / 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
35
36 include $(XSEG_HOME)/base.mk
37
38 ifeq (,$(KVER))
39 KVER := $(shell uname -r)
40 endif
41
42
43 KDIR := /lib/modules/$(KVER)/build
44 PWD := $(shell pwd)
45 EXTRA_CFLAGS += -g -I$(BASE) -I$(BASE)/sys/kernel
46 LIBDIR=$(BASE)/lib/kernel
47
48 obj-m += xsegbd.o
49
50 default: all
51
52 $(BASE)/drivers/kernel/Module.symvers:
53         $(MAKE) -C $(BASE)/drivers/kernel TARGET=kernel default
54
55 all: $(BASE)/drivers/kernel/Module.symvers
56         cp -vaf $< .
57         $(MAKE) -C $(KDIR) SUBDIRS=$(PWD) V=$(V) modules
58         cp -vaf xsegbd.ko $(LIBDIR)
59
60 clean:
61         rm -f Module.symvers
62         make -C /lib/modules/$(KVER)/build M=$(PWD) V=$(V) clean