a6d98a165dcee1cc5e54cd6a654521d24d12b418
[firefly-linux-kernel-4.4.55.git] / drivers / gpu / arm / t6xx / kbase / src / Makefile
1 #
2 # (C) COPYRIGHT 2010-2012 ARM Limited. All rights reserved.
3 #
4 # This program is free software and is provided to you under the terms of the
5 # GNU General Public License version 2 as published by the Free Software
6 # Foundation, and any use by you of this program is subject to the terms
7 # of such GNU licence.
8 #
9 # A copy of the licence is included with the program, and can also be obtained
10 # from Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
11 # Boston, MA  02110-1301, USA.
12 #
13 #
14
15
16
17 KDIR ?= /lib/modules/$(shell uname -r)/build
18
19 UMP_PATH_RELATIVE = $(CURDIR)/../../../../../base/ump
20 KBASE_PATH_RELATIVE = $(CURDIR)/../../kbase
21 KDS_PATH_RELATIVE = $(CURDIR)/../../../../../..
22 EXTRA_SYMBOLS = $(UMP_PATH_RELATIVE)/src/Module.symvers
23
24 ifeq ($(MALI_UNIT_TEST), 1)
25         EXTRA_SYMBOLS += $(KBASE_PATH_RELATIVE)/tests/internal/src/kernel_assert_module/linux/Module.symvers
26 endif
27
28 # GPL driver supports KDS
29 EXTRA_SYMBOLS += $(KDS_PATH_RELATIVE)/drivers/base/kds/Module.symvers
30
31 # we get the symbols from modules using KBUILD_EXTRA_SYMBOLS to prevent warnings about unknown functions
32 all:
33         $(MAKE) -C $(KDIR) M=$(CURDIR) EXTRA_CFLAGS="-I$(CURDIR)/../../../../../../include $(SCONS_CFLAGS)" $(SCONS_CONFIGS) KBUILD_EXTRA_SYMBOLS="$(EXTRA_SYMBOLS)" modules
34
35 clean:
36         $(MAKE) -C $(KDIR) M=$(CURDIR) clean