greenhouse/Makefile
2019-05-25 14:29:16 -07:00

30 lines
393 B
Makefile

# ex: set ts=8 noet:
all: qt5
test: testpy3
testpy2:
python -m unittest discover tests
testpy3:
python3 -m unittest discover tests
qt4: qt4py2
qt5: qt5py3
qt4py2:
pyrcc4 -py2 -o lib/resources.py resources.qrc
qt4py3:
pyrcc4 -py3 -o lib/resources.py resources.qrc
qt5py3:
pyrcc5 -o lib/resources.py resources.qrc
clean:
rm -f ~/.labelImgSettings.pkl resources.pyc
.PHONY: test