improve doc

This commit is contained in:
2022-08-17 00:14:42 -04:00
parent f8f05d1f10
commit 09617733cb
2 changed files with 54 additions and 9 deletions

View File

@ -2,16 +2,15 @@
help: ## Show this help
@echo 'makepac'
@echo '--------'
@echo 'Run the below command in the projects main directory for initial setup'
@echo 'Simple configuration manager'
@echo ''
@echo ' git submodule add https://gitlab.com/balki/makepac'
@echo ' echo "include makepac/Makefile" > Makefile'
@echo 'See https://gitlab.com/balki/makepac for usage'
@echo ''
@#https://stackoverflow.com/a/47107132
@sed -ne '/@sed/!s/## //p' $(MAKEFILE_LIST) | column -tl 2
.PHONY: install
install: ## Symlinks files in pac-root
install: ## Symlinks files in root/ to real root
sudo ./makepac/install.sh
.PHONY: sd-reload
@ -27,7 +26,7 @@ save-perms: ## Saves the file permissions to ./acl. Run this after adding new f
getfacl --recursive root > acl
.PHONY: set-perms
set-perms: ## Restores permissions of all the files from ./acl
set-perms: ## Restores permissions of all files from ./acl
sudo setfacl --restore acl
.PHONY: skel