17 lines
361 B
Makefile
Executable file
17 lines
361 B
Makefile
Executable file
all_linux:
|
|
|
|
sudo apt install python3 python3-requests python3-pip -y
|
|
pip3 install pyinstaller --break-system-packages
|
|
python3 -m PyInstaller -F -n"CloakCatcher" main.py
|
|
mkdir -p bin/
|
|
mv -f dist/CloakCatcher bin/
|
|
cp -f cloakcatcher.conf bin/
|
|
|
|
clean:
|
|
|
|
rm -rf dist/ build/ __pycache__/ CloakCatcher.spec
|
|
|
|
reset:
|
|
|
|
rm -rf bin/
|
|
echo "" > cloakcatcher.conf
|