From 3a5c30b2f70fa883bed86ebef937b0314a155e5c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Raimund=20Schl=C3=BC=C3=9Fler?= Date: Wed, 5 May 2021 09:04:08 +0200 Subject: Correctly delete build js on make clean MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Raimund Schlüßler --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 24a0d087..f37134d0 100644 --- a/Makefile +++ b/Makefile @@ -88,8 +88,9 @@ update-composer: composer.phar # Removes the build directory and the compiled files .PHONY: clean clean: - rm -f ./js/tasks.js - rm -f ./js/tasks.js.map + rm -f ./js/tasks-main.js + rm -f ./js/tasks-main.js.map + rm -f ./js/tasks-main.js.LICENSE.txt rm -rf $(build_directory) # Same as clean but also removes dependencies installed by npm -- cgit v1.2.3