18 lines
365 B
Makefile
18 lines
365 B
Makefile
UI_FILES = $(wildcard *.ui)
|
|
UI_PY_FILES = $(UI_FILES:%.ui=%_ui.py)
|
|
PYUIC = pyuic4
|
|
|
|
all: $(UI_PY_FILES)
|
|
|
|
%_ui.py: %.ui
|
|
$(PYUIC) -o $@ $^
|
|
|
|
# TODO: ugly hack, because of a usefull import by
|
|
# Qt in the nulog_ui.py file.. But we *don't*
|
|
# want to use a python resource file!!
|
|
sed -i '/import nulog3_rc/D' $@
|
|
|
|
clean:
|
|
rm -f *.pyc
|
|
rm -f $(UI_PY_FILES)
|
|
|