diff --git a/Makefile b/Makefile index 07fead2..63d2c0f 100644 --- a/Makefile +++ b/Makefile @@ -23,6 +23,10 @@ $(TTY_SENDER): $(TTY_SENDER_SRC) $(EXTRA_BUILD_DEPS) tty-server/assets_bundle.go: $(TTY_SERVER_ASSETS) go-bindata --prefix frontend/public/ -o $@ $^ +dist: frontend $(TTY_SENDER_SRC) $(EXTRA_BUILD_DEPS) + GOOS=linux go build -o tty_server.linux $(TTY_SERVER_SRC) + GOOS=darwin go build -o tty_server.darwin $(TTY_SERVER_SRC) + frontend: FORCE cd frontend && npm run build && cd -