create qt/ dir instead of qt.py

This commit is contained in:
Romain Bignon 2010-06-08 23:50:07 +02:00
commit 1f7e590864
3 changed files with 28 additions and 17 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)