comparison Makefile @ 14:42a225be7e56

first version of the GUI
author Dirk Olmes <dirk@xanthippe.ping.de>
date Wed, 28 Apr 2010 02:36:00 +0200
parents
children 9fa1e33b67da
comparison
equal deleted inserted replaced
13:591ecc2a99bd 14:42a225be7e56
1
2 # find all .ui files and generate corresponding filenames ending in .py
3 PY_FILES = $(patsubst %.ui, %.py, $(wildcard *.ui))
4
5 all: $(PY_FILES)
6
7 %.py: %.ui
8 pyuic4 -o $@ $<
9
10 .PHONY: clean
11 clean:
12 rm $(PY_FILES)
13 rm *.pyc