view Makefile @ 17:5fda8bd94fa8

make the model used to display feeds generic (so it can be used to display FeedEntries, too)
author Dirk Olmes <dirk@xanthippe.ping.de>
date Wed, 28 Apr 2010 03:37:01 +0200
parents 42a225be7e56
children 9fa1e33b67da
line wrap: on
line source


# find all .ui files and generate corresponding filenames ending in .py
PY_FILES = $(patsubst %.ui, %.py, $(wildcard *.ui))

all: $(PY_FILES)

%.py: %.ui
	pyuic4 -o $@ $<

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