Toplevel veryclean target

This commit is contained in:
Tony Garnock-Jones 2021-01-20 01:09:22 +01:00
parent 0842c93994
commit ea0ef03329
1 changed files with 4 additions and 1 deletions

View File

@ -8,10 +8,13 @@ node_modules/lerna:
PACKAGE_JSONS=$(wildcard packages/*/package.json)
PACKAGE_DIRS=$(PACKAGE_JSONS:/package.json=)
clean veryclean:
clean:
rm -f deps.mk
for d in $(PACKAGE_DIRS); do make -C $$d $@; done
veryclean: clean
rm -rf node_modules
all: $(PACKAGE_DIRS:=/.phony_all)
include deps.mk