summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorrsiddharth <s@ricketyspace.net>2019-04-06 23:50:45 -0400
committerrsiddharth <s@ricketyspace.net>2019-04-06 23:50:45 -0400
commitba0b04a2523c499782d51c006338a16b26ebbf5f (patch)
tree563d01f7adbe9c6efa347de66d861fe922fe5f49 /Makefile
parent03a47808403d19e508272d59615100f2b6d039ff (diff)
Makefile: Add clean-js.
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