Remove useless old Makefile

This commit is contained in:
Tony Garnock-Jones 2019-05-28 16:04:24 +01:00
parent 39468f3557
commit 1913793996
1 changed files with 0 additions and 20 deletions

View File

@ -1,20 +0,0 @@
MAKEABLE_PACKAGES=\
syntax \
driver-timer \
driver-browser-ui \
driver-http-node \
driver-websocket \
driver-udp-node \
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:
[ -d node_modules/lerna ] || npm i .
npx lerna bootstrap
.PHONY: bootstrap