Mercurial > hg > Feedworm
view Makefile @ 254:156edbd0733a pyqt5
the pyqt5 branch was merged into the default branch
author | Dirk Olmes <dirk@xanthippe.ping.de> |
---|---|
date | Fri, 10 Nov 2017 01:45:55 +0100 |
parents | 39080a271bf3 |
children |
line wrap: on
line source
UI_FILES = $(wildcard *.ui) UI_PY_FILES = $(UI_FILES:%.ui=Ui_%.py) RC_FILES = $(patsubst %.qrc, %_rc.py, $(wildcard *.qrc)) all: $(UI_PY_FILES) $(RC_FILES) Ui_%.py: %.ui pyuic5 -o $@ $< %_rc.py: %.qrc pyrcc5 -o $@ $< .PHONY: clean clean: rm $(UI_PY_FILES) rm $(RC_FILES) rm *.pyc