diff --git a/Makefile b/Makefile index 5399f3f..3e60641 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,8 @@ -# Autogenerated at 04.07.2022 22:11 using ./gen-makefile.sh +# Autogenerated at 04.07.2022 22:16 using ./gen-makefile.sh ##lamp: Apache + php + mariadb lamp: apache php mariadb + ##apache: Install apache2 (latest) apache: ./install/apache @@ -111,4 +112,4 @@ help: Makefile ##_: Same as 'cat ./install/.sh' %_: - @cat ./install/$*.sh + @cat ./install/$* diff --git a/gen-makefile.sh b/gen-makefile.sh index 9b78cce..1c8d5cb 100755 --- a/gen-makefile.sh +++ b/gen-makefile.sh @@ -4,6 +4,7 @@ echo -e "# Autogenerated at $(date +'%d.%m.%Y %H:%M') using ${BASH_SOURCE[0]}\n" for file in ./packs/*; do cat ${file} >> Makefile + echo >> Makefile done; for file in ./install/*; do @@ -22,12 +23,11 @@ help: Makefile @echo "Available goals:" @sed -n 's/^##//p' $< | column -t -s ':' | sed -e "s/^/\t/" -##_: Same as 'cat ./install/.sh' +##_: Same as 'cat ./install/' %_: - @cat ./install/\$*.sh + @cat ./install/\$* EOF - echo "New ./Makefile has been generated!" echo "Old one has been saved as ./Makefile.bak" echo