summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index b821034..ea0ffe3 100644
--- a/Makefile
+++ b/Makefile
@@ -39,7 +39,7 @@ $(JS_DIR):
$(BUILD_DIR):
mkdir -p $(BUILD_DIR)
-clean: clean-css clean-build
+clean: clean-css clean-js clean-build
.PHONY: clean
clean-build:
@@ -49,3 +49,7 @@ clean-build:
clean-css:
rm -rf $(CSS)
.PHONY: clean-css
+
+clean-js:
+ rm -rf $(JS_DIR)
+.PHONY: clean-js