github.com/ooni/psiphon/tunnel-core@v0.0.0-20230105123940-fe12a24c96ee/ClientLibrary/Makefile (about) 1 shared: 2 go build -buildmode=c-shared -o libpsiphontunnel.so PsiphonTunnel.go 3 .PHONY: shared 4 5 static: 6 go build -buildmode=c-archive -o libpsiphontunnel.a PsiphonTunnel.go 7 8 clean: 9 rm libpsiphontunnel.so libpsiphontunnel.h 10 11 .PHONY: static