igor-public/doc/makefile
matthias muntwiler 29d4b6881f new angle-scan processing features, update documentation, bugfixes
new functions:
- voigt_fwhm_lor
- rotate_hemi_scan
- import_tpi_scan
- draw_diffraction_cone

updated functions:
- interpolate_hemi_scan
- display_hemi_scan
- duplicate_hemi_scan

updated documentation:
- installation instructions
- readme
2016-03-30 12:02:57 +02:00

30 lines
416 B
Makefile

SHELL=/bin/sh
# makefile for PEARL procedures documentation
#
.SUFFIXES:
.SUFFIXES: .c .cpp .cxx .exe .f .h .i .o .py .pyf .so .html
.PHONY: all docs clean
DOX=doxygen
DOXOPTS=
LATEX_DIR=latex
REVISION=$(shell git describe --always --tags --dirty --long)
export REVISION
all: docs
docs: doxygen pdf
doxygen:
$(DOX) $(DOXOPTS) Doxyfile
pdf: doxygen
-$(MAKE) -C $(LATEX_DIR)
clean:
-rm latex/*
-rm html/*