#!/bin/csh
# -I include paths separated by \
# -g source files separated by space
# -L library paths separated by \
# -l libraries
# -o output file
setenv INCLUDE $cwd/../
setenv DEST    $cwd/../../bin
setenv CC gcc
#
setenv file_prefix "contest"
$CC -I$INCLUDE -O \
    -g3 ${file_prefix}.c $INCLUDE/numio.c $INCLUDE/bslio.c \
    -L$INCLUDE \
    -lm \
    -o $DEST/$file_prefix | more


 

