greenhouse/Makefile

27 lines
328 B
Makefile
Raw Normal View History

2017-01-02 21:54:08 -05:00
# ex: set ts=8 noet:
2015-09-17 10:37:20 +08:00
2017-01-02 20:50:02 -05:00
all: qt4
2015-09-17 10:37:20 +08:00
2017-01-02 21:54:08 -05:00
test: testpy2
testpy2:
python -m unittest discover tests
testpy3:
python3 -m unittest discover tests
2017-01-02 20:50:02 -05:00
qt4: qt4py2
qt5: qt5py3
2017-01-02 20:50:02 -05:00
qt4py2:
pyrcc4 -py2 -o resources.py resources.qrc
qt4py3:
pyrcc4 -py3 -o resources.py resources.qrc
qt5py3:
pyrcc5 -o resources.py resources.qrc
2015-09-17 10:37:20 +08:00
2017-01-02 21:54:08 -05:00
.PHONY: test