Skip to content

Commit 2f22fd8

Browse files
authored
[make help] mention INITCPIO switch (#137)
This commit is an expansion to : 87b8163 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.
1 parent 88a0320 commit 2f22fd8

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

Makefile

+8-7
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,12 @@ help:
5252
@echo " uninstall"
5353
@echo " help"
5454
@echo
55-
@echo " parameters | description | defaults"
56-
@echo " -----------+--------------------------------+----------------------------"
57-
@echo " DESTDIR | install destination | <unset>"
58-
@echo " PREFIX | system tree prefix | '/usr'"
59-
@echo " SHARE_DIR | shared data location | '\$$(DESTDIR)\$$(PREFIX)/share'"
60-
@echo " LIB_DIR | system libraries location | '\$$(DESTDIR)\$$(PREFIX)/lib'"
61-
@echo " PKGNAME | name of the ditributed package | 'grub-btrfs'"
55+
@echo " parameter | type | description | defaults"
56+
@echo " ----------+------+--------------------------------+----------------------------"
57+
@echo " DESTDIR | path | install destination | <unset>"
58+
@echo " PREFIX | path | system tree prefix | '/usr'"
59+
@echo " SHARE_DIR | path | shared data location | '\$$(DESTDIR)\$$(PREFIX)/share'"
60+
@echo " LIB_DIR | path | system libraries location | '\$$(DESTDIR)\$$(PREFIX)/lib'"
61+
@echo " PKGNAME | name | name of the ditributed package | 'grub-btrfs'"
62+
@echo " INITCPIO | bool | include mkinitcpio hook | false"
6263
@echo

0 commit comments

Comments
 (0)