diff --git a/Makefile b/Makefile index 3a5578e4..9de0df5d 100644 --- a/Makefile +++ b/Makefile @@ -5,6 +5,7 @@ clean: find . -name '*.pyc' -delete find . -name '__pycache__' -delete find . -name '*~' -delete + make --directory=frontend clean; test: tox diff --git a/frontend/Makefile b/frontend/Makefile new file mode 100644 index 00000000..0fdaf861 --- /dev/null +++ b/frontend/Makefile @@ -0,0 +1,6 @@ +all: clean + +clean: + rm -rf build node_modules + +.PHONY: all clean