Makefile 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. #
  2. # (C) COPYRIGHT 2010-2016 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. KDIR ?= /lib/modules/$(shell uname -r)/build
  15. BUSLOG_PATH_RELATIVE = $(CURDIR)/../../../..
  16. UMP_PATH_RELATIVE = $(CURDIR)/../../../base/ump
  17. KBASE_PATH_RELATIVE = $(CURDIR)
  18. KDS_PATH_RELATIVE = $(CURDIR)/../../../..
  19. EXTRA_SYMBOLS = $(UMP_PATH_RELATIVE)/src/Module.symvers
  20. ifeq ($(MALI_UNIT_TEST), 1)
  21. EXTRA_SYMBOLS += $(KBASE_PATH_RELATIVE)/tests/internal/src/kernel_assert_module/linux/Module.symvers
  22. endif
  23. ifeq ($(MALI_BUS_LOG), 1)
  24. #Add bus logger symbols
  25. EXTRA_SYMBOLS += $(BUSLOG_PATH_RELATIVE)/drivers/base/bus_logger/Module.symvers
  26. endif
  27. # GPL driver supports KDS
  28. EXTRA_SYMBOLS += $(KDS_PATH_RELATIVE)/drivers/base/kds/Module.symvers
  29. # we get the symbols from modules using KBUILD_EXTRA_SYMBOLS to prevent warnings about unknown functions
  30. all:
  31. $(MAKE) -C $(KDIR) M=$(CURDIR) EXTRA_CFLAGS="-I$(CURDIR)/../../../../include -I$(CURDIR)/../../../../tests/include $(SCONS_CFLAGS)" $(SCONS_CONFIGS) KBUILD_EXTRA_SYMBOLS="$(EXTRA_SYMBOLS)" modules
  32. clean:
  33. $(MAKE) -C $(KDIR) M=$(CURDIR) clean