diff options
author | Michael Brown <mcb30@ipxe.org> | 2019-08-02 11:00:43 +0100 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2019-08-02 11:00:43 +0100 |
commit | c742c576d0d0fc7f7d49825f5d3c53fd7b597327 (patch) | |
tree | 76fbc3b7ad1956b1ea54b112c39ea678b701af01 /src/Makefile | |
parent | a4f8c6e31f6c62522cfc633bbbffa81b22f9d6f3 (diff) | |
download | ipxe-c742c576d0d0fc7f7d49825f5d3c53fd7b597327.tar.gz |
[build] Move predefined all-drivers build shortcut to Makefile
The (very approximate) split between Makefile.housekeeping and
Makefile is that the former provides mechanism and the latter provides
policy.
Provide a section within Makefile as a home for predefined build
shortcuts such as the existing all-drivers build.
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile index d74565d13..284a6569f 100644 --- a/src/Makefile +++ b/src/Makefile @@ -222,6 +222,15 @@ version : ############################################################################### # +# Predefined build shortcuts (for e.g. bin/ipxe.iso) + +# All drivers (excluding USB) +# +DRIVERS_ipxe = $(DRIVERS_net) $(DRIVERS_infiniband) \ + $(DRIVERS_xen) $(DRIVERS_hyperv) + +############################################################################### +# # Drag in the bulk of the build system # |