mirror of
https://github.com/Llewellynvdm/Tomb.git
synced 2024-11-12 15:56:28 +00:00
6aade0ffc8
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
11 lines
163 B
Makefile
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
|