new frontend. qvideoob
This commit is contained in:
parent
baa2fd937a
commit
eb3b8a7165
15 changed files with 949 additions and 0 deletions
18
weboob/frontends/qvideoob/ui/Makefile
Normal file
18
weboob/frontends/qvideoob/ui/Makefile
Normal 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)
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue