Archived
1
This repository has been archived on 2025-08-09. You can view files and clone it, but cannot push or open issues or pull requests.
Files
playbookctl/Makefile

16 lines
435 B
Makefile
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!make
# ldflags:
# -s: Убирает информацию о символах (например, дебаг-символы).
# -w: Убирает информацию о отладке, включая таблицу строк и информацию о файлах.
build:
GOOS=linux go build -ldflags="-s -w" -buildmode=exe -o target/playbookctl main.go \
&& strip target/playbookctl
get:
go get
clean:
rm -rf target/*