diff options
author | Liam Middlebrook <lmiddlebrook@nvidia.com> | 2019-06-10 12:27:35 -0700 |
---|---|---|
committer | Liam Middlebrook <lmiddlebrook@nvidia.com> | 2019-06-10 12:27:35 -0700 |
commit | 9254543e7021d7fb7abe53cb886ba96ee60e1c1b (patch) | |
tree | 90bd80d27fe2fbdc4454e17c6a55ec074d4aa8d8 /src/libXNVCtrl/xnvctrl.mk | |
parent | e240d4eee95796fd68c1f2b05f6d9e301c8c18cf (diff) |
430.26
Diffstat (limited to 'src/libXNVCtrl/xnvctrl.mk')
-rw-r--r-- | src/libXNVCtrl/xnvctrl.mk | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/src/libXNVCtrl/xnvctrl.mk b/src/libXNVCtrl/xnvctrl.mk new file mode 100644 index 0000000..e6be2ef --- /dev/null +++ b/src/libXNVCtrl/xnvctrl.mk @@ -0,0 +1,49 @@ +# Copyright (c) 2008-2019 NVIDIA, Corporation +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice (including the next +# paragraph) shall be included in all copies or substantial portions of the +# Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. + +############################################################################## +# makefile fragment to define how to build LIBXNVCTRL +############################################################################## + +# The calling Makefile may export any of the following variables; we +# assign default values if they are not exported by the caller + +ifndef XNVCTRL_LDFLAGS + ifeq ($(TARGET_OS)-$(TARGET_ARCH),Linux-x86_64) + XNVCTRL_LDFLAGS = -L/usr/X11R6/lib64 + else + XNVCTRL_LDFLAGS = -L/usr/X11R6/lib + endif +endif + +XNVCTRL_CFLAGS ?= + + +LIBXNVCTRL = $(OUTPUTDIR)/libXNVCtrl.a + +LIBXNVCTRL_SRC = $(XNVCTRL_DIR)/NVCtrl.c + +LIBXNVCTRL_OBJ = $(call BUILD_OBJECT_LIST,$(LIBXNVCTRL_SRC)) + +$(eval $(call DEFINE_OBJECT_RULE,TARGET,$(LIBXNVCTRL_SRC))) + +$(LIBXNVCTRL) : $(LIBXNVCTRL_OBJ) + $(call quiet_cmd,AR) ru $@ $(LIBXNVCTRL_OBJ) |