Skip to content

Commit

Permalink
Update Makefile to build expected files
Browse files Browse the repository at this point in the history
  • Loading branch information
tkphd committed Sep 18, 2023
1 parent 8256fb7 commit 8ce2218
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
8 changes: 5 additions & 3 deletions doc/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -1817,7 +1817,7 @@ COMPACT_LATEX = YES
# The default value is: a4.
# This tag requires that the tag GENERATE_LATEX is set to YES.

PAPER_TYPE = a4
PAPER_TYPE = letter

# The EXTRA_PACKAGES tag can be used to specify one or more LaTeX package names
# that should be included in the LaTeX output. The package can be specified just
Expand Down Expand Up @@ -2206,15 +2206,17 @@ SEARCH_INCLUDES = YES
# preprocessor.
# This tag requires that the tag SEARCH_INCLUDES is set to YES.

INCLUDE_PATH =
INCLUDE_PATH = ../common-diffusion/ \
../common-spinodal/

# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard
# patterns (like *.h and *.hpp) to filter out the header-files in the
# directories. If left blank, the patterns specified with FILE_PATTERNS will be
# used.
# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.

INCLUDE_FILE_PATTERNS =
INCLUDE_FILE_PATTERNS = *.h \
*.cuh

# The PREDEFINED tag can be used to specify one or more macro names that are
# defined before the preprocessor is started (similar to the -D option of e.g.
Expand Down
9 changes: 6 additions & 3 deletions doc/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,19 @@ dox:

.PHONY: tex
tex: dox
$(MAKE) -C latex && cd latex && $(LATEX) refman.tex
$(MAKE) -C latex && \
cd latex && \
cp refman.tex hiperc.tex && \
$(LATEX) hiperc.tex

.PHONY: pdf
pdf: tex
cp latex/refman.pdf hiperc_guide.pdf
cp latex/hiperc.pdf hiperc_guide.pdf

.PHONY: html
html: dox
$(SPHINX) -b html . _build

.PHONY: clean
clean:
rm -rf _build/* _static/* latex xml rst/*
rm -rf _build/* _static/* html latex xml rst/*
Binary file modified doc/hiperc_guide.pdf
Binary file not shown.
1 change: 1 addition & 0 deletions doc/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
Sphinx>2.2
breathe>4.13
recommonmark
sphinxcontrib-doxylink

0 comments on commit 8ce2218

Please sign in to comment.