new user distribution of PEARL procedures

This commit is contained in:
2016-02-10 16:00:34 +01:00
commit 1e9fbf0beb
37 changed files with 18585 additions and 0 deletions

27
doc/makefile Normal file
View File

@ -0,0 +1,27 @@
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
all: docs
docs: doxygen pdf
doxygen:
$(DOX) $(DOXOPTS) Doxyfile
pdf: doxygen
-$(MAKE) -C $(LATEX_DIR)
clean:
-rm latex/*
-rm html/*