mirror of
https://github.com/samuelncui/yatm.git
synced 2025-12-23 06:15:22 +00:00
10 lines
237 B
Bash
Executable File
10 lines
237 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -ex;
|
|
|
|
CURDIR=$(cd $(dirname $0); pwd);
|
|
cd ${CURDIR};
|
|
|
|
go build -o ./output/yatm-httpd ./cmd/httpd;
|
|
go build -o ./output/yatm-export-library ./cmd/export-library;
|
|
go build -o ./output/yatm-lto-info ./cmd/lto-info;
|