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
30 lines
416 B
Makefile
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/*
|