mirror of
https://github.com/yihong0618/Kindle_download_helper.git
synced 2025-11-22 07:59:04 +08:00
16 lines
288 B
Makefile
16 lines
288 B
Makefile
all: dep ui
|
|
pyinstaller -F -w -i resource/kindle.icns kindle_download_helper.py
|
|
|
|
dep:
|
|
pip install -r requirements.txt
|
|
|
|
gui_dep:
|
|
pip install -r requirements_gui.txt
|
|
|
|
ui: gui_dep
|
|
pyside6-rcc ./icon.qrc -o icon_rc.py
|
|
pyside6-uic ./kindle.ui -o ui_kindle.py
|
|
|
|
|
|
.PHONY: all dep gui_dep ui
|