Tomb/src/gui/qt/Makefile

11 lines
160 B
Makefile
Raw Normal View History

all: ui_create.py
test: ui_create.py
python2 create.py
ui_create.py: create.ui
pyuic4 create.ui -o ui_create.py
clean:
rm ui_create.py
.PHONY: test clean