Mercurial > hg > Feedworm
view Makefile @ 37:22214d79ed41
database URL must be given as commandline argument now, no need for creating complicated config files. Add a menu entry for opening the selected article in browser.
author | Dirk Olmes <dirk@xanthippe.ping.de> |
---|---|
date | Fri, 14 May 2010 06:16:05 +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