macho/macho-go/Makefile

15 lines
366 B
Makefile
Raw Permalink Normal View History

2023-05-31 16:17:03 +07:00
build:
protoc -I=proto --go_out=. proto/*.proto
go build -o bin/ios-wrapper ./cmd/ios-wrapper
go build -o bin/extract-section ./cmd/extract-section
build-linux:
protoc -I=proto --go_out=. proto/*.proto
GOOS=linux GOARCH=amd64 go build -o bin/ios-wrapper ./cmd/ios-wrapper
module:
go get -u google.golang.org/protobuf/cmd/protoc-gen-go
2024-01-10 15:56:55 +07:00
format:
go fmt ./...