Default make target

This commit is contained in:
2022-08-19 21:26:09 +08:00
parent 355953dc35
commit aaf88521b3
3 changed files with 10 additions and 8 deletions

View File

@@ -1,6 +1,11 @@
#!/bin/bash
mv Makefile Makefile.bak
echo -e "# Autogenerated at $(date +'%d.%m.%Y %H:%M') using ${BASH_SOURCE[0]}\n" > Makefile
cat << EOF >> Makefile
# Autogenerated at $(date +'%d.%m.%Y %H:%M') using ${BASH_SOURCE[0]}
.DEFAULT_GOAL := help
EOF
for file in ./packs/*; do
cat ${file} >> Makefile