From 0ba745b6a954eb6afa73560c43e1f82ec6c5196f Mon Sep 17 00:00:00 2001 From: Christian Jacobs Date: Sun, 8 Feb 2015 12:39:31 +0000 Subject: [PATCH] Updated the Makefile commands. --- Makefile | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/Makefile b/Makefile index 369177e..9993e2a 100644 --- a/Makefile +++ b/Makefile @@ -21,22 +21,21 @@ input: clean install documentation install: - @echo **********Installing PyQSO + @echo "*** Installing PyQSO" python setup.py install -manual: - @echo **********Compiling the user manual - cd doc; pdflatex manual.tex; cd .. +docs: + @echo "*** Building the documentation" + cd docs; make html; cd .. unittest: - @echo **********Running the unit tests + @echo "*** Running the unit tests" cd pyqso; for file in *.py; do (python $$file); done; cd .. clean: - @echo **********Cleaning build directory + @echo "*** Cleaning build directory" rm -rf build - @echo **********Cleaning pyqso directory - cd pyqso; rm -rf *.pyc ADIF.test_read.adi ADIF.test_write*.adi; cd .. - @echo **********Cleaning doc directory - cd doc; rm -rf *.log *.aux *.dvi *.pdf *.ps *.toc *.out; cd .. - + @echo "*** Cleaning pyqso directory" + cd pyqso; rm -f *.pyc ADIF.test_read.adi ADIF.test_write*.adi; cd .. + @echo "*** Cleaning doc directory" + cd docs; make clean; cd ..