linkchecker/linkcheck/gui/Makefile
2009-02-18 23:14:03 +00:00

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