Updated GUI Makefile

git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@3805 e7d03fd6-7b0d-0410-9947-9c21f3af8025
This commit is contained in:
calvin 2008-06-11 07:34:32 +00:00
parent a9a603c9b1
commit 21c4643588

View file

@ -1,8 +1,14 @@
PYVER := 2.5
PYTHON := python$(PYVER)
OPTS := --copyright="Copyright (C) 2005-2008 Bastian Kleineidam" \
--license=py_gpl_head.txt --threads
# generate Python files from UI description
glade:
$(PYTHON) simple-glade-codegen.py $(OPTS) glinkchecker.glade
UI_FILES = linkchecker_ui.py
all: $(UI_FILES)
linkchecker_ui.py: ui/mainwindow.ui
pyuic4 -tr _ -o $@ $<
#linkchecker_rc.py: linkchecker.qrc
# pyrcc4 -o $@ $<
run:
env PYTHONPATH=.:.. python linkchecker-gui