1998-10-24 10:48:22 +08:00
|
|
|
#!/bin/sh
|
2006-07-28 07:26:57 +08:00
|
|
|
#BHEADER**********************************************************************
|
2008-07-18 09:34:48 +08:00
|
|
|
# Copyright (c) 2008, Lawrence Livermore National Security, LLC.
|
2006-07-28 07:26:57 +08:00
|
|
|
# Produced at the Lawrence Livermore National Laboratory.
|
2008-07-18 09:34:48 +08:00
|
|
|
# This file is part of HYPRE. See file COPYRIGHT for details.
|
2006-07-28 07:26:57 +08:00
|
|
|
#
|
2006-09-23 06:06:21 +08:00
|
|
|
# HYPRE is free software; you can redistribute it and/or modify it under the
|
2008-07-18 09:34:48 +08:00
|
|
|
# terms of the GNU Lesser General Public License (as published by the Free
|
|
|
|
|
# Software Foundation) version 2.1 dated February 1999.
|
1998-10-24 10:48:22 +08:00
|
|
|
#
|
|
|
|
|
# $Revision$
|
2006-07-28 07:26:57 +08:00
|
|
|
#EHEADER**********************************************************************
|
|
|
|
|
|
1998-10-24 10:48:22 +08:00
|
|
|
|
2006-09-23 06:06:21 +08:00
|
|
|
|
|
|
|
|
|
2007-11-14 03:39:57 +08:00
|
|
|
|
2008-07-18 09:34:48 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2007-01-24 01:54:52 +08:00
|
|
|
INTERNAL_HEADER=_hypre_parcsr_mv.h
|
1998-10-24 10:48:22 +08:00
|
|
|
|
|
|
|
|
#===========================================================================
|
|
|
|
|
# Include guards and other includes
|
|
|
|
|
#===========================================================================
|
|
|
|
|
|
|
|
|
|
cat > $INTERNAL_HEADER <<@
|
|
|
|
|
|
1999-09-03 02:20:29 +08:00
|
|
|
#include <HYPRE_config.h>
|
|
|
|
|
|
1998-10-24 10:48:22 +08:00
|
|
|
#include "HYPRE_parcsr_mv.h"
|
|
|
|
|
|
|
|
|
|
#ifndef hypre_PARCSR_MV_HEADER
|
|
|
|
|
#define hypre_PARCSR_MV_HEADER
|
|
|
|
|
|
2007-01-24 02:51:22 +08:00
|
|
|
#include "_hypre_utilities.h"
|
2000-12-15 02:19:22 +08:00
|
|
|
#include "seq_mv.h"
|
1998-10-24 10:48:22 +08:00
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
@
|
|
|
|
|
|
|
|
|
|
#===========================================================================
|
|
|
|
|
# Structures and prototypes
|
|
|
|
|
#===========================================================================
|
|
|
|
|
|
2003-06-26 09:26:24 +08:00
|
|
|
cat par_csr_communication.h >> $INTERNAL_HEADER
|
2006-08-09 03:03:09 +08:00
|
|
|
cat par_csr_assumed_part.h >> $INTERNAL_HEADER
|
2006-05-05 04:25:56 +08:00
|
|
|
cat new_commpkg.h >> $INTERNAL_HEADER
|
1998-10-24 10:48:22 +08:00
|
|
|
cat par_vector.h >> $INTERNAL_HEADER
|
|
|
|
|
cat par_csr_matrix.h >> $INTERNAL_HEADER
|
2002-03-06 02:14:28 +08:00
|
|
|
cat numbers.h >> $INTERNAL_HEADER
|
2005-05-04 04:57:13 +08:00
|
|
|
cat par_chord_matrix.h >> $INTERNAL_HEADER
|
2007-09-26 04:29:30 +08:00
|
|
|
cat par_make_system.h >> $INTERNAL_HEADER
|
1998-10-24 10:48:22 +08:00
|
|
|
|
2000-10-10 04:59:23 +08:00
|
|
|
../utilities/protos [!F]*.c >> $INTERNAL_HEADER
|
1998-10-24 10:48:22 +08:00
|
|
|
|
|
|
|
|
#===========================================================================
|
|
|
|
|
# Include guards
|
|
|
|
|
#===========================================================================
|
|
|
|
|
|
|
|
|
|
cat >> $INTERNAL_HEADER <<@
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
@
|
|
|
|
|
|