makefile.linux 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. ##############################################################################
  2. #
  3. # Copyright 2012 - 2020 Vivante Corporation, Santa Clara, California.
  4. # All Rights Reserved.
  5. #
  6. # Permission is hereby granted, free of charge, to any person obtaining
  7. # a copy of this software and associated documentation files (the
  8. # 'Software'), to deal in the Software without restriction, including
  9. # without limitation the rights to use, copy, modify, merge, publish,
  10. # distribute, sub license, and/or sell copies of the Software, and to
  11. # permit persons to whom the Software is furnished to do so, subject
  12. # to the following conditions:
  13. #
  14. # The above copyright notice and this permission notice (including the
  15. # next paragraph) shall be included in all copies or substantial
  16. # portions of the Software.
  17. #
  18. # THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
  19. # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  20. # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
  21. # IN NO EVENT SHALL VIVANTE AND/OR ITS SUPPLIERS BE LIABLE FOR ANY
  22. # CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
  23. # TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
  24. # SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  25. #
  26. ##############################################################################
  27. #
  28. # This file is a part of Vivante software stack build environment for Linux.
  29. # It defines the rules necessary to build Vivante SDK and its samples.
  30. #
  31. ######################################################
  32. # Include global difinitions.
  33. include ../makefile.linux.def
  34. ######################################################
  35. # Components of the project.
  36. SOURCE := source
  37. SAMPLES := samples
  38. SDK_SUITE := $(SOURCE) $(SAMPLES)
  39. ######################################################
  40. # Define the macros used in the common file.
  41. MODULES := $(SDK_SUITE)
  42. MAIN_MODULE := $(SAMPLES)
  43. ######################################################
  44. # Include the common makefile.
  45. include $(AQROOT)/common.node
  46. ######################################################
  47. # Define the denpendencies.
  48. $(SAMPLES): $(SOURCE)