diff --git a/Makefile b/Makefile index 29dba4f0..0a14f8f6 100644 --- a/Makefile +++ b/Makefile @@ -238,6 +238,7 @@ TARGETS = \ help \ info \ clean \ + distclean \ electron-develop ifeq ($(TARGET_PLATFORM),darwin) @@ -305,4 +306,8 @@ info: clean: rm -rf $(BUILD_DIRECTORY) +distclean: clean + rm -rf node_modules + rm -rf bower_components + .DEFAULT_GOAL = help