diff options
author | Philippe Mathieu-Daudé | 2019-09-20 19:11:59 +0200 |
---|---|---|
committer | Philippe Mathieu-Daudé | 2019-10-07 14:56:22 +0200 |
commit | 6f8a70f62f8a4089567ea05d475f6f112dec5601 (patch) | |
tree | b6724d13ad6dde6f9e34183724adf8649269de9d /roms | |
parent | roms/Makefile.edk2: don't pull in submodules when building from tarball (diff) | |
download | qemu-6f8a70f62f8a4089567ea05d475f6f112dec5601.tar.gz qemu-6f8a70f62f8a4089567ea05d475f6f112dec5601.tar.xz qemu-6f8a70f62f8a4089567ea05d475f6f112dec5601.zip |
roms: Add a 'make help' target alias
Various C projects provide a 'make help' target. Our root directory
does so. The roms/ directory lacks a such rule, but already displays
a help output when the default target is called.
Add a 'help' target aliased to the default one, to avoid:
$ make -C roms help
make: *** No rule to make target 'help'. Stop.
Reviewed-by: John Snow <jsnow@redhat.com>
Reviewed-by: Laszlo Ersek <lersek@redhat.com>
Message-Id: <20190920171159.18633-1-philmd@redhat.com>
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Diffstat (limited to 'roms')
-rw-r--r-- | roms/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roms/Makefile b/roms/Makefile index 6cf07d3b44..3ffd13cc7e 100644 --- a/roms/Makefile +++ b/roms/Makefile @@ -51,7 +51,7 @@ SEABIOS_EXTRAVERSION="-prebuilt.qemu.org" # EDK2_EFIROM = edk2/BaseTools/Source/C/bin/EfiRom -default: +default help: @echo "nothing is build by default" @echo "available build targets:" @echo " bios -- update bios.bin (seabios)" |