Is there a way I can make the license I use for an open-source software package be valid for all contents of the package without having to write it into every single file?
I often saw a LICENSE
file, but does this file (with the license in it) makes all contents of the package (i.e. the current directory and all sub-directories) use this license?
*.c
or*.h
) – Shahbaz May 28 '12 at 17:05LICENSE
file to the root of the project and then in theREADME
of the package say all files in the repository fall under this license. In case a file gets separated from the repository, the general (usually quite) restricted copyright laws apply. – Daniel Jan 30 '17 at 11:30