add new application qflatboob

This commit is contained in:
Romain Bignon 2012-02-16 16:29:40 +01:00
commit 07f105910e
11 changed files with 1068 additions and 1 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)