summaryrefslogtreecommitdiffstats
path: root/userspace/units/posix-mockio/Makefile.tmk
diff options
context:
space:
mode:
Diffstat (limited to 'userspace/units/posix-mockio/Makefile.tmk')
-rw-r--r--userspace/units/posix-mockio/Makefile.tmk40
1 files changed, 40 insertions, 0 deletions
diff --git a/userspace/units/posix-mockio/Makefile.tmk b/userspace/units/posix-mockio/Makefile.tmk
new file mode 100644
index 00000000..fbc31351
--- /dev/null
+++ b/userspace/units/posix-mockio/Makefile.tmk
@@ -0,0 +1,40 @@
1################################### tell Emacs this is a -*- makefile-gmake -*-
2#
3# Copyright (c) 2018 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###############################################################################
14
15ifdef NV_COMPONENT_FLAG_SHARED_LIBRARY_SECTION
16include $(NV_BUILD_START_COMPONENT)
17
18NV_COMPONENT_NAME := posix-mockio
19NV_COMPONENT_SOURCES := posix-mockio.c
20NV_COMPONENT_OWN_INTERFACE_DIR := .
21NV_COMPONENT_CFLAGS += -D__NVGPU_POSIX__
22
23NV_COMPONENT_NEEDED_INTERFACE_DIRS := \
24 $(NV_SOURCE)/kernel/nvgpu/drivers/gpu/nvgpu \
25 $(NV_SOURCE)/kernel/nvgpu/userspace
26
27NV_COMPONENT_SYSTEMIMAGE_DIR := $(NV_SYSTEMIMAGE_TEST_EXECUTABLE_DIR)/nvgpu_unit/units
28systemimage:: $(NV_COMPONENT_SYSTEMIMAGE_DIR)
29$(NV_COMPONENT_SYSTEMIMAGE_DIR) : $(NV_SYSTEMIMAGE_TEST_EXECUTABLE_DIR)
30 $(MKDIR_P) $@
31
32include $(NV_BUILD_SHARED_LIBRARY)
33
34endif
35
36# Local Variables:
37# indent-tabs-mode: t
38# tab-width: 8
39# End:
40# vi: set tabstop=8 noexpandtab: