hypre/parcsr_mv/headers

74 lines
1.9 KiB
Plaintext
Raw Normal View History

#!/bin/sh
#BHEADER**********************************************************************
2008-07-18 09:34:48 +08:00
# Copyright (c) 2008, Lawrence Livermore National Security, LLC.
# 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-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.
#
# $Revision$
#EHEADER**********************************************************************
2006-09-23 06:06:21 +08:00
2008-07-18 09:34:48 +08:00
INTERNAL_HEADER=_hypre_parcsr_mv.h
#===========================================================================
# Include guards and other includes
#===========================================================================
cat > $INTERNAL_HEADER <<@
#include <HYPRE_config.h>
#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"
#ifdef __cplusplus
extern "C" {
#endif
@
#===========================================================================
# Structures and prototypes
#===========================================================================
cat par_csr_communication.h >> $INTERNAL_HEADER
cat par_csr_assumed_part.h >> $INTERNAL_HEADER
cat new_commpkg.h >> $INTERNAL_HEADER
cat par_vector.h >> $INTERNAL_HEADER
cat par_csr_matrix.h >> $INTERNAL_HEADER
cat numbers.h >> $INTERNAL_HEADER
cat par_chord_matrix.h >> $INTERNAL_HEADER
cat par_make_system.h >> $INTERNAL_HEADER
../utilities/protos [!F]*.c >> $INTERNAL_HEADER
#===========================================================================
# Include guards
#===========================================================================
cat >> $INTERNAL_HEADER <<@
#ifdef __cplusplus
}
#endif
#endif
@