forked from hypre-space/hypre
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheaders
executable file
·61 lines (41 loc) · 1.45 KB
/
headers
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/bin/sh
# 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)
INTERNAL_HEADER=seq_mv.h
#===========================================================================
# Include guards and other includes
#===========================================================================
cat > $INTERNAL_HEADER <<@
/*** DO NOT EDIT THIS FILE DIRECTLY (use 'headers' to generate) ***/
#ifndef hypre_MV_HEADER
#define hypre_MV_HEADER
#include <stdlib.h>
#include <stdio.h>
#include <math.h>
#include <HYPRE_config.h>
#include "HYPRE_seq_mv.h"
#include "_hypre_utilities.h"
#ifdef __cplusplus
extern "C" {
#endif
@
#===========================================================================
# Structures and prototypes
#===========================================================================
cat csr_matrix.h >> $INTERNAL_HEADER
cat mapped_matrix.h >> $INTERNAL_HEADER
cat multiblock_matrix.h >> $INTERNAL_HEADER
cat vector.h >> $INTERNAL_HEADER
cat protos.h >> $INTERNAL_HEADER
#../utilities/protos *.c >> $INTERNAL_HEADER
#===========================================================================
# Include guards
#===========================================================================
cat >> $INTERNAL_HEADER <<@
#ifdef __cplusplus
}
#endif
#endif
@