Mercurial > hg > Feedworm
view Makefile @ 209:a683c65d324d
Automated merge with https://xanthippe.dyndns.org/hg/Feedworm
author | Dirk Olmes <dirk@xanthippe.ping.de> |
---|---|
date | Mon, 04 Jun 2012 08:35:17 +0200 |
parents | 9fa1e33b67da |
children | a34cb404cef3 |
line wrap: on
line source
# find all .ui files and generate corresponding filenames ending in .py PY_FILES = $(patsubst %.ui, %.py, $(wildcard *.ui)) RC_FILES = $(patsubst %.qrc, %_rc.py, $(wildcard *.qrc)) all: $(PY_FILES) $(RC_FILES) %.py: %.ui pyuic4 -o $@ $< %_rc.py: %.qrc pyrcc4 -o $@ $< .PHONY: clean clean: rm $(PY_FILES) rm *.pyc