New application qwebcontentedit

Status: ugly GUI, editing and saving a page mostly working,
preview support in progress
This commit is contained in:
Clément Schreiner 2011-02-01 13:59:46 +01:00
commit dcb2375fd1
8 changed files with 286 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)