Mercurial > hg > Feedworm
view Makefile @ 259:304917762618 default tip
implementation of feed updates
author | Dirk Olmes <dirk@xanthippe.ping.de> |
---|---|
date | Tue, 12 Mar 2019 02:41:22 +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