mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-03-20 16:00:26 +00:00
git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@3967 e7d03fd6-7b0d-0410-9947-9c21f3af8025
17 lines
357 B
Makefile
17 lines
357 B
Makefile
# generate Python files from UI description
|
|
|
|
# edit ui/*.ui files with designer
|
|
UI_FILES = linkchecker_ui_main.py linkchecker_ui_options.py linkchecker_ui_progress.py
|
|
RC_FILES = linkchecker_rc.py
|
|
|
|
|
|
all: $(UI_FILES) $(RC_FILES)
|
|
|
|
linkchecker_ui_%.py: ui/%.ui
|
|
pyuic4 -o $@ $<
|
|
|
|
linkchecker_rc.py: rc/linkchecker.qrc
|
|
pyrcc4 -o $@ $<
|
|
|
|
clean:
|
|
rm -f *.pyc *.pyo
|