Toplevel clean target

This commit is contained in:
Tony Garnock-Jones 2018-11-03 15:54:24 +00:00
parent dd37dd9d4c
commit 53ba755cb1
1 changed files with 3 additions and 0 deletions

View File

@ -3,6 +3,9 @@ MAKEABLE_PACKAGES=syntax driver-timer syntax-playground
all:
for p in $(MAKEABLE_PACKAGES); do $(MAKE) -C packages/$$p; done
clean:
for p in $(MAKEABLE_PACKAGES); do $(MAKE) -C packages/$$p clean; done
bootstrap:
npx lerna bootstrap