#!/bin/sh #******************************************************************************# # Arguments # #******************************************************************************# # Initialize the variables gint= no_file= # Read the arguments for arg ; do case "$arg" in --gint) gint=y ;; --no-file) no_file=y ;; *) echo "'${arg}': Did not read." ;; esac; done #******************************************************************************# # Write the file # #******************************************************************************# cat <<_EOF #ifndef LIBG1M_CONFIG_H # define LIBG1M_CONFIG_H # --- no option yet! --- #endif /* LIBG1M_CONFIG_H */ _EOF