#! /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 time_mod.o time_mod.c ld -o time_mod.so -shared time_mod.o rm -f time_mod.o