Make system: Be explicit in license that cover the make/build system
The build system is covered under a 1 Clause BSD license. Make sure users are aware. Signed-off-by: Robin Getz <robin.getz@analog.com>main
parent
12a3f8799e
commit
b38747cefc
5
LICENSE
5
LICENSE
|
@ -11,6 +11,11 @@ you may be subject, under such license terms. This agreement does not limit your
|
|||
rights under, or grant you rights that supersede, the license terms of any
|
||||
particular module.
|
||||
|
||||
This HDL repository also includes a build system / recipe / scripts based on various
|
||||
makefiles and TCL scripts. The build system is released under a seperate license
|
||||
(BSD 1 Clause) from the HDL modules. This allows you to create your own HDL blocks
|
||||
and incorporated them into this build system.
|
||||
|
||||
The mere aggregation of these modules (putting them side by side in the same
|
||||
source code repository or on a hard disk) does not mean that there is one master
|
||||
license for all the files. It is up to you, the user, to ensure that during the
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
|
||||
Copyright 2011(c) Analog Devices, Inc.
|
||||
Copyright 2011 - 2021 (c) Analog Devices, Inc.
|
||||
|
||||
All rights reserved.
|
||||
|
||||
|
|
|
@ -0,0 +1,19 @@
|
|||
Copyright (c) 2011 - 2021
|
||||
Analog Devices Inc.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions are met:
|
||||
|
||||
1. Redistributions of source code must retain the above copyright notice, this
|
||||
list of conditions and the following disclaimer.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY ANALOG DEVICES “AS IS'' AND ANY EXPRESS OR
|
||||
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
|
||||
EVENT SHALL ANALOG DEVICES BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
||||
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
||||
OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
||||
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
@ -1,5 +1,6 @@
|
|||
####################################################################################
|
||||
## Copyright 2018(c) Analog Devices, Inc.
|
||||
## Copyright (c) 2018 - 2021 Analog Devices, Inc.
|
||||
## SPDX short identifier: BSD-1-Clause
|
||||
####################################################################################
|
||||
|
||||
# Assumes this file is in library/scripts/library.mk
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
####################################################################################
|
||||
## Copyright 2018(c) Analog Devices, Inc.
|
||||
## Copyright (c) 2020 - 2021 Analog Devices, Inc.
|
||||
## SPDX short identifier: BSD-1-Clause
|
||||
####################################################################################
|
||||
|
||||
# Assumes this file is in projects/scripts/project-intel.mk
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
####################################################################################
|
||||
## Copyright 2018(c) Analog Devices, Inc.
|
||||
## Copyright (c) 2018 - 2021 Analog Devices, Inc.
|
||||
## SPDX short identifier: BSD-1-Clause
|
||||
####################################################################################
|
||||
|
||||
# Assumes this file is in projects/scripts/project-toplevel.mk
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
####################################################################################
|
||||
## Copyright 2018(c) Analog Devices, Inc.
|
||||
## Copyright (c) 2018 -2021 Analog Devices, Inc.
|
||||
## SPDX short identifier: BSD-1-Clause
|
||||
####################################################################################
|
||||
|
||||
# Assumes this file is in prpojects/scripts/project-xilinx.mk
|
||||
|
|
3
quiet.mk
3
quiet.mk
|
@ -1,5 +1,6 @@
|
|||
####################################################################################
|
||||
## Copyright 2018(c) Analog Devices, Inc.
|
||||
## Copyright (c) 2018 - 2021 Analog Devices, Inc.
|
||||
## SPDX short identifier: BSD-1-Clause
|
||||
####################################################################################
|
||||
|
||||
ifdef MAKE_TERMOUT
|
||||
|
|
Loading…
Reference in New Issue