forked from ruohai0925/IAMReX
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
37 lines (26 loc) · 881 Bytes
/
Makefile
File metadata and controls
37 lines (26 loc) · 881 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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