syndicate-js/Makefile

10 lines
179 B
Makefile
Raw Normal View History

2018-11-02 17:09:55 +00:00
MAKEABLE_PACKAGES=syntax driver-timer syntax-playground
2018-11-02 12:25:34 +00:00
all:
for p in $(MAKEABLE_PACKAGES); do $(MAKE) -C packages/$$p; done
2018-11-02 10:59:09 +00:00
bootstrap:
npx lerna bootstrap
.PHONY: bootstrap