view Makefile @ 71:228da10cc98b

MainWindow relies on FeedList to get the feeds to display now. FeedList has two inner/private classes: one for returning all known feeds and one to return only feeds with unread entries.
author Dirk Olmes <dirk@xanthippe.ping.de>
date Wed, 11 Aug 2010 03:10:32 +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