Skip to content

Commit 235df0e

Browse files
authored
Merge pull request #53 from S-Explorer/development
update ACTM and API
2 parents 73a2eb9 + 951d7ca commit 235df0e

22 files changed

+3816
-20
lines changed

.gitignore

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,10 @@ bl_prof*
1515
case_results*/
1616
tmp_build_dir/
1717
Docs/IAMReX_documentation/build
18-
.codegpt
18+
.codegpt
19+
html
20+
latex
21+
xml
22+
.cache
23+
.idea
24+
build
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# Copyright (c) 1998 Lawrence Livermore National Security, LLC and other
2+
# HYPRE Project Developers. See the top-level COPYRIGHT file for details.
3+
#
4+
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
5+
6+
PDFLATEX = pdflatex --interaction=nonstopmode
7+
8+
##################################################################
9+
# Targets
10+
##################################################################
11+
12+
# all: html pdf
13+
all: pdf
14+
15+
install:
16+
17+
clean:
18+
@/bin/rm -fr html latex xml
19+
20+
distclean: clean
21+
22+
##################################################################
23+
# Rules
24+
##################################################################
25+
26+
html:
27+
doxygen conf.doxygen
28+
29+
pdf: html
30+
@cd latex; ${PDFLATEX} refman; ${PDFLATEX} refman
31+
32+
##########
33+
34+
version.tex:
35+
@ \
36+
echo "\def\HYPREVersion{$(HYPRE_RELEASE_VERSION)}" > version.tex; \
37+
echo "\def\HYPREVersionDate{$(HYPRE_RELEASE_DATE)}" >> version.tex

0 commit comments

Comments
 (0)