diff options
author | Michael Brown | 2009-04-29 09:51:27 +0200 |
---|---|---|
committer | Michael Brown | 2009-05-18 09:29:24 +0200 |
commit | 41307f2874989048679c83686527a3887ed485b3 (patch) | |
tree | 24464edc273fd4f5dab7d8d4212d3c03fca38997 /src/Makefile | |
parent | [legal] Add mechanism for explicit per-file licence declarations (diff) | |
download | ipxe-41307f2874989048679c83686527a3887ed485b3.tar.gz ipxe-41307f2874989048679c83686527a3887ed485b3.tar.xz ipxe-41307f2874989048679c83686527a3887ed485b3.zip |
[legal] Add licence.pl and %.licence make target
It is now possible to run e.g.
make bin/rtl8139.dsk.licence
in order to see a licensing assessment for any given gPXE build. The
assessment will either produce a single overall licence for the build
(based on combining all the licences used within the source files for
that build), or will exit with an error stating why a licence
assessment is not possible (for example, if there are files involved
that do not yet contain an explicit FILE_LICENCE() declaration).
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile index 4e4fd8b5..add582a2 100644 --- a/src/Makefile +++ b/src/Makefile @@ -36,6 +36,7 @@ MAKEROM := $(PERL) ./util/makerom.pl SYMCHECK := $(PERL) ./util/symcheck.pl SORTOBJDUMP := $(PERL) ./util/sortobjdump.pl PADIMG := $(PERL) ./util/padimg.pl +LICENCE := $(PERL) ./util/licence.pl NRV2B := ./util/nrv2b ZBIN := ./util/zbin ELF2EFI32 := ./util/elf2efi32 |