global s/frontends/applications/

This commit is contained in:
Christophe Benz 2010-07-06 12:59:06 +02:00
commit 3bf9c2518b
88 changed files with 4387 additions and 28 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)