Tomb/src/qt/Makefile
boyska 6aade0ffc8 GUI/PY: change dir layout; setup.py for tomblib
Now pytomb/ contains the python library, which will be available as tomblib
qt/ contains only the qt gui
They all are directly under src/
Also, tomblib has a setup.py to install/package/develop
2012-01-29 15:54:47 +01:00

11 lines
163 B
Makefile

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