view Makefile @ 242:03e3ebb1d52f

Disable the use of a proxy when updating feeds - https traffic does not seem to work currently over a proxy.
author Dirk Olmes <dirk@xanthippe.ping.de>
date Mon, 08 Jun 2015 19:20:46 +0200
parents a34cb404cef3
children 3ce39af93e77
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 Ui_$@ $<

%_rc.py: %.qrc
	pyrcc4 -o $@ $<

.PHONY: clean
clean:
	rm $(PY_FILES)
	rm *.pyc