Skip to content

Commit

Permalink
Create Makefile (for *nix systems)
Browse files Browse the repository at this point in the history
Signed-off-by: Sindastra <1236984+sindastra@users.noreply.github.com>
  • Loading branch information
sindastra committed Dec 29, 2021
1 parent bc1f855 commit 4b0970d
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
all: dist/wiipcrt /usr/local/bin/wiipcrt

installdeps:
pip install pyinstaller

installdeps3:
pip3 install pyinstaller

dist/wiipcrt: wiipcrt.py
pyinstaller --onefile wiipcrt.py

/usr/local/bin/wiipcrt: dist/wiipcrt
install -o 0 -g 0 -m 0755 dist/wiipcrt /usr/local/bin/wiipcrt

0 comments on commit 4b0970d

Please sign in to comment.