add Makefile to build app

This commit is contained in:
2026-05-12 00:12:28 +03:00
parent d631b0ef68
commit 159a45140b
4 changed files with 34 additions and 11 deletions
+12
View File
@@ -0,0 +1,12 @@
.PHONY: all client server clean
all: client server
client:
pyinstaller --onefile src/nexus_sync/client/__main__.py --name nexus-sync-client
server:
pyinstaller --onefile src/nexus_sync/server/__main__.py --name nexus-sync-server
clean:
rm -rf build dist *.spec