Consistency in Makefile.

pull/51/head
Christian T. Jacobs 2016-01-27 16:49:15 +00:00
rodzic b29f0e54ca
commit d02239bd30
1 zmienionych plików z 7 dodań i 7 usunięć

Wyświetl plik

@ -22,24 +22,24 @@
input: clean install docs
install:
@echo "*** Installing PyQSO"
echo "*** Installing PyQSO"
python3 setup.py install
docs:
@echo "*** Building the documentation"
echo "*** Building the documentation"
cd docs; make html; cd ..
test:
@echo "*** Running flake8"
echo "*** Running flake8"
flake8 pyqso
flake8 bin
@echo "*** Running the unit tests"
echo "*** Running the unit tests"
python3 -m unittest discover --start-directory=pyqso --pattern=*.py --verbose
clean:
@echo "*** Cleaning docs directory"
echo "*** Cleaning docs directory"
cd docs; make clean; cd ..
@echo "*** Cleaning pyqso directory"
echo "*** Cleaning pyqso directory"
rm -f ADIF.test_*.adi; cd pyqso; rm -f *.pyc ADIF.test_*.adi; cd ..
@echo "*** Removing build directory"
echo "*** Removing build directory"
rm -rf build