Добавил systemd и Makefile

This commit is contained in:
B4D_US3R 2025-05-05 23:31:56 +05:00
parent a4568ba69d
commit 3ed04d626d
3 changed files with 35 additions and 6 deletions

15
Makefile Normal file
View file

@ -0,0 +1,15 @@
miku : users/go.sum supporter/go.sum miku/go.sum miku/main
mkdir output
mv miku/main output/miku
users/go.sum :
cd users && go mod tidy && cd ../
supporter/go.sum :
cd supporter && go mod tidy && cd ../
miku/go.sum :
cd miku && go mod tidy && cd ../
miku/main :
go build -C miku
clean :
rm -rf output users/go.sum supporter/go.sum miku/go.sum miku/main