summaryrefslogtreecommitdiffstats
path: root/meta-agl-telemetry/COPYING.MIT
blob: 89de354795ec7a7cdab07c091029653d3618540d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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 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.
specified.") endif # The variable "M" is used to point to the location of this module, and it is # passed to kbuild to build this module. # # Allow to specify variable "M" from outside. It is needed to set it to the # relative path to this module. It must be relative to the kernel source # directory. # # If kernel is built with "O" option then setting "M" to the relative path # empowers the build system to put output/object files (.o, .ko.) into a # directory different from the module source directory. M ?= $$PWD # Some build systems may rsync module sources out of git repository to have # sources directory untouched during build. Then, they should specify Git # repository directory separately for 'git describe' to work properly. MODULE_GIT_REPOSITORY_DIR ?= $(M) default: $(MAKE) -C $(KDIR) M=$(M) MODULE_GIT_REPOSITORY_DIR=$(MODULE_GIT_REPOSITORY_DIR) modules_install: $(MAKE) -C $(KDIR) M=$(M) $@ clean: $(MAKE) -C $(KDIR) M=$(M) $@