summaryrefslogtreecommitdiffstats
path: root/userspace/src
diff options
context:
space:
mode:
Diffstat (limited to 'userspace/src')
-rw-r--r--userspace/src/Makefile.tmk46
1 files changed, 46 insertions, 0 deletions
diff --git a/userspace/src/Makefile.tmk b/userspace/src/Makefile.tmk
new file mode 100644
index 00000000..f2da773d
--- /dev/null
+++ b/userspace/src/Makefile.tmk
@@ -0,0 +1,46 @@
1################################### tell Emacs this is a -*- makefile-gmake -*-
2#
3# Copyright (c) 2014-2016 NVIDIA CORPORATION. All Rights Reserved.
4#
5# NVIDIA CORPORATION and its licensors retain all intellectual property
6# and proprietary rights in and to this software, related documentation
7# and any modifications thereto. Any use, reproduction, disclosure or
8# distribution of this software and related documentation without an express
9# license agreement from NVIDIA CORPORATION is strictly prohibited.
10#
11# tmake for SW Mobile component makefile
12#
13# Component makefile for compiling host submit tests as a part of an umbrella.
14#
15###############################################################################
16
17ifdef NV_COMPONENT_FLAG_NVTEST_EXECUTABLE_SECTION
18include $(NV_BUILD_START_COMPONENT)
19
20NV_COMPONENT_NAME := nvgpu_unit
21
22NV_COMPONENT_SOURCES := unit_main.c \
23 nvgpu.c \
24 args.c \
25 io.c \
26 module.c \
27 results.c \
28 exec.c
29
30# The actual userspace nvgpu library.
31NV_COMPONENT_NEEDED_INTERFACE_DIRS := ../../drivers/gpu/nvgpu
32
33NV_COMPONENT_INCLUDES := ../include \
34 ../../drivers/gpu/nvgpu \
35 ../../drivers/gpu/nvgpu/include
36
37
38
39include $(NV_BUILD_NVTEST_EXECUTABLE)
40endif
41
42# Local Variables:
43# indent-tabs-mode: t
44# tab-width: 8
45# End:
46# vi: set tabstop=8 noexpandtab: