new frontend. qvideoob

This commit is contained in:
Romain Bignon 2010-04-17 11:21:31 +02:00
commit eb3b8a7165
15 changed files with 949 additions and 0 deletions

View file

@ -0,0 +1,18 @@
UI_FILES = $(wildcard *.ui)
UI_PY_FILES = $(UI_FILES:%.ui=%_ui.py)
PYUIC = pyuic4
all: $(UI_PY_FILES)
%_ui.py: %.ui
$(PYUIC) -o $@ $^
# TODO: ugly hack, because of a usefull import by
# Qt in the nulog_ui.py file.. But we *don't*
# want to use a python resource file!!
sed -i '/import nulog3_rc/D' $@
clean:
rm -f *.pyc
rm -f $(UI_PY_FILES)