ajout application qhandjoob

Signed-off-by: sebastien <sebastien@perso>
Signed-off-by: Romain Bignon <romain@symlink.me>
This commit is contained in:
sebastien 2013-07-08 20:55:26 +02:00 committed by Romain Bignon
commit a7f4b83587
8 changed files with 642 additions and 0 deletions

View file

@ -0,0 +1,13 @@
UI_FILES = $(wildcard *.ui)
UI_PY_FILES = $(UI_FILES:%.ui=%_ui.py)
PYUIC = pyuic4
all: $(UI_PY_FILES)
%_ui.py: %.ui
$(PYUIC) -o $@ $^
clean:
rm -f *.pyc
rm -f $(UI_PY_FILES)