Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,10 @@ bl_prof*
case_results*/
tmp_build_dir/
Docs/IAMReX_documentation/build
.codegpt
.codegpt
html
latex
xml
.cache
.idea
build
37 changes: 37 additions & 0 deletions Docs/IAMReX_documentation/doxygen/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# Copyright (c) 1998 Lawrence Livermore National Security, LLC and other
# HYPRE Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)

PDFLATEX = pdflatex --interaction=nonstopmode

##################################################################
# Targets
##################################################################

# all: html pdf
all: pdf

install:

clean:
@/bin/rm -fr html latex xml

distclean: clean

##################################################################
# Rules
##################################################################

html:
doxygen conf.doxygen

pdf: html
@cd latex; ${PDFLATEX} refman; ${PDFLATEX} refman

##########

version.tex:
@ \
echo "\def\HYPREVersion{$(HYPRE_RELEASE_VERSION)}" > version.tex; \
echo "\def\HYPREVersionDate{$(HYPRE_RELEASE_DATE)}" >> version.tex
Loading
Loading