Skip to content

Commit

Permalink
chore: make windows exe
Browse files Browse the repository at this point in the history
  • Loading branch information
linsyking committed Sep 3, 2023
1 parent f0a096e commit ae3263f
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
COMPILE_SRC=start.py
START_SRC=start.py

all:
pyinstaller -F $(COMPILE_SRC)
pyinstaller -F $(START_SRC)

windows:
wine pyinstaller -F $(START_SRC)

clean:
rm -r build dist *.spec *.log
Expand Down

0 comments on commit ae3263f

Please sign in to comment.