Archived
1

first commit

This commit is contained in:
2024-12-23 01:55:48 +03:00
commit b514cc36fb
33 changed files with 1969 additions and 0 deletions

12
Makefile Normal file
View File

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