rename to makepac

This commit is contained in:
Balakrishnan Balasubramanian 2022-08-15 21:01:09 -04:00
parent 0d165ccc5e
commit f8f05d1f10
2 changed files with 4 additions and 4 deletions

View File

@ -1,11 +1,11 @@
.PHONY: help .PHONY: help
help: ## Show this help help: ## Show this help
@echo 'make-pac' @echo 'makepac'
@echo '--------' @echo '--------'
@echo 'Run the below command in the projects main directory for initial setup' @echo 'Run the below command in the projects main directory for initial setup'
@echo '' @echo ''
@echo ' git submodule add https://gitlab.com/balki/make-pac' @echo ' git submodule add https://gitlab.com/balki/makepac'
@echo ' echo "include make-pac/Makefile" > Makefile' @echo ' echo "include makepac/Makefile" > Makefile'
@echo '' @echo ''
@#https://stackoverflow.com/a/47107132 @#https://stackoverflow.com/a/47107132
@sed -ne '/@sed/!s/## //p' $(MAKEFILE_LIST) | column -tl 2 @sed -ne '/@sed/!s/## //p' $(MAKEFILE_LIST) | column -tl 2

View File

@ -9,7 +9,7 @@ Initial setup
cd myfiles cd myfiles
git init git init
git submodule add https://gitlab.com/balki/makepac' git submodule add https://gitlab.com/balki/makepac'
echo "include make-pac/Makefile" > Makefile' echo "include makepac/Makefile" > Makefile'
make skel make skel
git add . git add .
git commit -m 'initial commit' git commit -m 'initial commit'