RK3368 GPU version Rogue M 1.28
[firefly-linux-kernel-4.4.55.git] / drivers / gpu / rogue_m / build / linux / modules / kernel_module.mk
1 ########################################################################### ###
2 #@Copyright     Copyright (c) Imagination Technologies Ltd. All Rights Reserved
3 #@License       Dual MIT/GPLv2
4
5 # The contents of this file are subject to the MIT license as set out below.
6
7 # Permission is hereby granted, free of charge, to any person obtaining a copy
8 # of this software and associated documentation files (the "Software"), to deal
9 # in the Software without restriction, including without limitation the rights
10 # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 # copies of the Software, and to permit persons to whom the Software is
12 # furnished to do so, subject to the following conditions:
13
14 # The above copyright notice and this permission notice shall be included in
15 # all copies or substantial portions of the Software.
16
17 # Alternatively, the contents of this file may be used under the terms of
18 # the GNU General Public License Version 2 ("GPL") in which case the provisions
19 # of GPL are applicable instead of those above.
20
21 # If you wish to allow use of your version of this file only under the terms of
22 # GPL, and not to allow others to use your version of this file under the terms
23 # of the MIT license, indicate your decision by deleting the provisions above
24 # and replace them with the notice and other provisions required by GPL as set
25 # out in the file called "GPL-COPYING" included in this distribution. If you do
26 # not delete the provisions above, a recipient may use your version of this file
27 # under the terms of either the MIT license or GPL.
28
29 # This License is also included in this distribution in the file called
30 # "MIT-COPYING".
31
32 # EXCEPT AS OTHERWISE STATED IN A NEGOTIATED AGREEMENT: (A) THE SOFTWARE IS
33 # PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
34 # BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
35 # PURPOSE AND NONINFRINGEMENT; AND (B) IN NO EVENT SHALL THE AUTHORS OR
36 # COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
37 # IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
38 # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
39 ### ###########################################################################
40
41 # Rules for making kernel modules with kbuild. This makefile doesn't define
42 # any rules that build the modules, it only copies the kbuild Makefile into
43 # the right place and then invokes kbuild to do the actual build
44
45 $(call target-build-only,kernel module)
46
47 MODULE_KBUILD_DIR := $(MODULE_OUT)/kbuild
48
49 # $(THIS_MODULE)_makefile names the kbuild makefile fragment used to build
50 # this module's objects
51 $(call must-be-nonempty,$(THIS_MODULE)_makefile)
52 MODULE_KBUILD_MAKEFILE := $($(THIS_MODULE)_makefile)
53
54 # $(THIS_MODULE)_target specifies the name of the kernel module
55 $(call must-be-nonempty,$(THIS_MODULE)_target)
56 MODULE_TARGETS := $($(THIS_MODULE)_target)
57 MODULE_KBUILD_OBJECTS := $($(THIS_MODULE)_target:.ko=.o)
58
59 $(call module-info-line,kernel module: $(MODULE_TARGETS))
60
61 # Unusually, we define $(THIS_MODULE)_install_path if the user didn't, as we
62 # can't use MODULE_INSTALL_PATH in the scripts.mk logic.
63 ifeq ($($(THIS_MODULE)_install_path),)
64 $(THIS_MODULE)_install_path := \
65  $${MOD_DESTDIR}/$(patsubst $(MODULE_OUT)/%,%,$(MODULE_TARGETS))
66 endif
67
68 MODULE_INSTALL_PATH := $($(THIS_MODULE)_install_path)
69
70 # Here we could maybe include $(MODULE_KBUILD_MAKEFILE) and look at
71 # $(MODULE_KBUILD_OBJECTS)-y to see which source files might be built
72
73 .PHONY: $(THIS_MODULE)
74 $(THIS_MODULE): MODULE_KBUILD_MAKEFILE := $(MODULE_KBUILD_MAKEFILE)
75 $(THIS_MODULE): MODULE_KBUILD_OBJECTS := $(MODULE_KBUILD_OBJECTS)
76 $(THIS_MODULE):
77         @echo "kbuild module '$@'"
78         @echo " MODULE_KBUILD_MAKEFILE := $(MODULE_KBUILD_MAKEFILE)"
79         @echo " MODULE_KBUILD_OBJECTS := $(MODULE_KBUILD_OBJECTS)"
80         @echo ' Being built:' $(if $(filter $@,$(KERNEL_COMPONENTS)),"yes (separate module)",$(if $(filter $@,$(EXTRA_PVRSRVKM_COMPONENTS)),"yes (into pvrsrvkm)","no"))
81         @echo "Module $@ is a kbuild module. Run 'make kbuild' to make it"
82         @false
83
84 $(MODULE_INTERMEDIATES_DIR)/.install: MODULE_TYPE := $($(THIS_MODULE)_type)
85 $(MODULE_INTERMEDIATES_DIR)/.install: MODULE_INSTALL_PATH := $(MODULE_INSTALL_PATH)
86 $(MODULE_INTERMEDIATES_DIR)/.install: MODULE_TARGETS := $(patsubst $(MODULE_OUT)/%,%,$(MODULE_TARGETS))
87 $(MODULE_INTERMEDIATES_DIR)/.install: $(THIS_MAKEFILE) | $(MODULE_INTERMEDIATES_DIR)
88         @echo 'install_file $(MODULE_TARGETS) $(MODULE_INSTALL_PATH) "$(MODULE_TYPE)" 0644 0:0' >$@
89
90 ALL_KBUILD_MODULES += $(THIS_MODULE)
91 INTERNAL_KBUILD_MAKEFILE_FOR_$(THIS_MODULE) := $(MODULE_KBUILD_MAKEFILE)
92 INTERNAL_KBUILD_OBJECTS_FOR_$(THIS_MODULE) := $(MODULE_KBUILD_OBJECTS)