We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45524ed commit 683a58fCopy full SHA for 683a58f
Makefile
@@ -1,5 +1,7 @@
1
all: linux darwin windows
2
3
+release: all upx tar
4
+
5
clean:
6
rm -rf bin/*
7
@@ -16,3 +18,6 @@ darwin:
16
18
windows:
17
19
CGO_ENABLE=0 GOOS=windows GOARCH=amd64 go build -o bin/server-windows-amd64.exe -ldflags "-s -w" main/server/main.go
20
CGO_ENABLE=0 GOOS=windows GOARCH=386 go build -o bin/server-windows-i386.exe -ldflags "-s -w" main/server/main.go
21
22
+tar:
23
+ tar jcvf flutter-webrtc-server-bin.tar.bz2 bin certs html
0 commit comments