mirror of
git://nv-tegra.nvidia.com/linux-nvgpu.git
synced 2025-12-24 10:34:43 +03:00
channel and tsg units used to build object files from upper fifo directory. But this was causing build dependencies issues and stale .o files could be used. Fixed this by building a shared library for nvgpu-fifo for tmake makefiles. Jira NVGPU-3480 Change-Id: I52c9e32b110c560fd445b8c854801f270364953d Signed-off-by: Thomas Fleury <tfleury@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/2151815 GVS: Gerrit_Virtual_Submit Reviewed-by: Ajesh K V <akv@nvidia.com> Reviewed-by: Vinod Gopalakrishnakurup <vinodg@nvidia.com> Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
27 lines
929 B
Makefile
27 lines
929 B
Makefile
################################### tell Emacs this is a -*- makefile-gmake -*-
|
|
#
|
|
# Copyright (c) 2019 NVIDIA CORPORATION. All Rights Reserved.
|
|
#
|
|
# NVIDIA CORPORATION and its licensors retain all intellectual property
|
|
# and proprietary rights in and to this software, related documentation
|
|
# and any modifications thereto. Any use, reproduction, disclosure or
|
|
# distribution of this software and related documentation without an express
|
|
# license agreement from NVIDIA CORPORATION is strictly prohibited.
|
|
#
|
|
# tmake for SW Mobile component makefile
|
|
#
|
|
# Component makefile for compiling nvgpu-fifo common tests.
|
|
#
|
|
###############################################################################
|
|
|
|
NVGPU_UNIT_NAME = nvgpu-fifo
|
|
NVGPU_UNIT_SRCS = nvgpu-fifo.c nvgpu-fifo-gv11b.c
|
|
|
|
include $(NV_COMPONENT_DIR)/../Makefile.units.common.tmk
|
|
|
|
# Local Variables:
|
|
# indent-tabs-mode: t
|
|
# tab-width: 8
|
|
# End:
|
|
# vi: set tabstop=8 noexpandtab:
|