Files
T
Joas A Santos fcea9b6bc0 Update Makefile
2025-04-04 23:04:17 -03:00

20 lines
478 B
Makefile

install:
sudo apt update
sudo apt install -y python3 python3-pip python3-venv \
python3-pyqt5 \
libcapstone-dev \
libunicorn-dev \
nasm \
x11-utils x11-xserver-utils xterm gnome-terminal konsole \
build-essential libx11-dev libxcb1-dev libxext-dev libxrender-dev
pip3 install -r requirements.txt
run:
export XDG_RUNTIME_DIR="/run/user/$(id -u)"
python3 main_gui.py
clean:
find . -name '*.pyc' -delete
find . -name '__pycache__' -type d -exec rm -r {} +