From 2f22fd8630252e5bc8d970e454fefa90e811fa68 Mon Sep 17 00:00:00 2001 From: Kriss Date: Sat, 23 Jan 2021 20:46:14 +0100 Subject: [PATCH] [make help] mention `INITCPIO` switch (#137) This commit is an expansion to : https://github.com/Antynea/grub-btrfs/commit/87b816345bd790b283336c693dcc02862149b6b7 Since a new `make` parameter has been introduced, it should be mentioned in the output of the `help` target. Also, the table is being expanded by a new column describing the type of data that each parameter may be assigned, like paths or boolean values. --- Makefile | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Makefile b/Makefile index 93c76f7..74bae3e 100644 --- a/Makefile +++ b/Makefile @@ -52,11 +52,12 @@ help: @echo " uninstall" @echo " help" @echo - @echo " parameters | description | defaults" - @echo " -----------+--------------------------------+----------------------------" - @echo " DESTDIR | install destination | " - @echo " PREFIX | system tree prefix | '/usr'" - @echo " SHARE_DIR | shared data location | '\$$(DESTDIR)\$$(PREFIX)/share'" - @echo " LIB_DIR | system libraries location | '\$$(DESTDIR)\$$(PREFIX)/lib'" - @echo " PKGNAME | name of the ditributed package | 'grub-btrfs'" + @echo " parameter | type | description | defaults" + @echo " ----------+------+--------------------------------+----------------------------" + @echo " DESTDIR | path | install destination | " + @echo " PREFIX | path | system tree prefix | '/usr'" + @echo " SHARE_DIR | path | shared data location | '\$$(DESTDIR)\$$(PREFIX)/share'" + @echo " LIB_DIR | path | system libraries location | '\$$(DESTDIR)\$$(PREFIX)/lib'" + @echo " PKGNAME | name | name of the ditributed package | 'grub-btrfs'" + @echo " INITCPIO | bool | include mkinitcpio hook | false" @echo