mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-03-23 01:10:27 +00:00
git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@3807 e7d03fd6-7b0d-0410-9947-9c21f3af8025
14 lines
251 B
Makefile
14 lines
251 B
Makefile
# generate Python files from UI description
|
|
|
|
UI_FILES = linkchecker_ui.py
|
|
|
|
all: $(UI_FILES)
|
|
|
|
linkchecker_ui.py: ui/mainwindow.ui
|
|
pyuic4 -o $@ $<
|
|
|
|
#linkchecker_rc.py: linkchecker.qrc
|
|
# pyrcc4 -o $@ $<
|
|
|
|
run:
|
|
env PYTHONPATH=.:.. python linkchecker-gui
|