put back backendcfg to tools

This commit is contained in:
Christophe Benz 2010-07-06 17:46:38 +02:00
commit 1f6564c500
8 changed files with 6 additions and 8 deletions

View file

@ -0,0 +1,12 @@
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)