hypre/struct_ls/headers

56 lines
1.3 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_ls.h
#===========================================================================
# Include guards and other includes
#===========================================================================
cat > $INTERNAL_HEADER <<@
#include <HYPRE_config.h>
#include "HYPRE_struct_ls.h"
#ifndef hypre_STRUCT_LS_HEADER
#define hypre_STRUCT_LS_HEADER
#include "utilities.h"
#include "struct_mv.h"
#include "krylov.h"
#ifdef __cplusplus
extern "C" {
#endif
@
#===========================================================================
# Structures and prototypes
#===========================================================================
../utilities/protos [!F]*.c >> $INTERNAL_HEADER
#===========================================================================
# Include guards
#===========================================================================
cat >> $INTERNAL_HEADER <<@
#ifdef __cplusplus
}
#endif
#endif
@