hypre/struct_mv/headers
2000-12-14 18:19:22 +00:00

64 lines
1.6 KiB
Bash
Executable File

#!/bin/sh
#BHEADER***********************************************************************
# (c) 1998 The Regents of the University of California
#
# See the file COPYRIGHT_and_DISCLAIMER for a complete copyright
# notice, contact person, and disclaimer.
#
# $Revision$
#EHEADER***********************************************************************
INTERNAL_HEADER=struct_mv.h
#===========================================================================
# Include guards and other includes
#===========================================================================
cat > $INTERNAL_HEADER <<@
#include <HYPRE_config.h>
#include "HYPRE_struct_mv.h"
#ifndef hypre_STRUCT_MV_HEADER
#define hypre_STRUCT_MV_HEADER
#include "utilities.h"
#ifdef __cplusplus
extern "C" {
#endif
@
#===========================================================================
# Structures and prototypes
#===========================================================================
cat box.h >> $INTERNAL_HEADER
cat box_pthreads.h >> $INTERNAL_HEADER
cat box_neighbors.h >> $INTERNAL_HEADER
cat struct_grid.h >> $INTERNAL_HEADER
cat struct_stencil.h >> $INTERNAL_HEADER
cat communication.h >> $INTERNAL_HEADER
cat computation.h >> $INTERNAL_HEADER
cat struct_matrix.h >> $INTERNAL_HEADER
cat struct_vector.h >> $INTERNAL_HEADER
../utilities/protos [!F]*.c >> $INTERNAL_HEADER
#===========================================================================
# Include guards
#===========================================================================
cat >> $INTERNAL_HEADER <<@
#ifdef __cplusplus
}
#endif
#endif
@