#! /bin/sh
#/***************************************************************************
# *                         simple_mod.sh -  description
# *                            -------------------
# *   begin                : Mon 19 Dec 2005 04:16:23 PM EST
# *   copyright            : (C) 2005 by Terry D. Boldt
# *   email                : fastsnip-wm1@yahoo.com
# ***************************************************************************/
#
#/***************************************************************************
# *                                                                         *
# *   This program is free software; you can redistribute it and/or modify  *
# *   it under the terms of the GNU General Public License as published by  *
# *   the Free Software Foundation; either version 2 of the License, or     *
# *   (at your option) any later version.                                   *
# *                                                                         *
# ***************************************************************************/
#/*
# *
# *   Linux shell script to compile simple QTAwk module file
# */
gcc -shared -nostartfiles -c -g -I.. -o sim_srev.o sim_srev.c
ld -o sim_srev.so -shared sim_srev.o
rm -f sim_srev.o