#! /bin/sh #/*************************************************************************** # * ArraySeq_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 ArraySeq_mod.o ArraySeq_mod.c ld -o ArraySeq_mod.so -shared ArraySeq_mod.o rm -f ArraySeq_mod.o