commit 2ea176ebb6db280c0bf63df585f3cb2b2864e02d
parent 9ab0b456bbc15e1e5319ad6247aa8282c8068f48
Author: Vincent Forest <vincent.forest@meso-star.com>
Date: Wed, 23 Feb 2022 14:43:07 +0100
misc: small update of the clean & publish Makefile targets
Diffstat:
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/misc/Makefile b/misc/Makefile
@@ -14,6 +14,8 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
.POSIX:
+include ../config.mk
+
HTML=\
about-en.html\
about-fr.html\
@@ -24,7 +26,8 @@ HTML=\
build: $(HTML)
clean:
- rm -f\
+ @echo "Cleaning generated files"
+ @rm -f .chk\
about-en.html\
about-fr.html\
legal-en.html\
@@ -35,7 +38,7 @@ clean:
distclean: clean
publish: build
- rsync -avzrR --delete-after $(HTML) $(REMOTE)/misc/
+ @rsync -avzrR --delete-after --progress $(HTML) $(REMOTE)/misc/
misc_build.sh: ../meso-menu.sh
@touch misc_build