#!/bin/csh -f

set path = ~wgoodwat/300code/
set prog_cp=cp
set prog_m=make
set prog_run=ll

$prog_cp ${path}testll.c .
$prog_cp ${path}Makefile .

$prog_m

$prog_run

rm ./testll.c
rm ./Makefile
