rename havesex and QHaveSex to havedate and QHaveDate

This commit is contained in:
Romain Bignon 2012-03-03 22:56:51 +01:00
commit 33a9bf71a8
26 changed files with 41 additions and 41 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)