Removing uneeded file.
[and.git] / PC^2 / pc2admin / samps / compilePerl
blob3a56ec48ad5857a4399b684bbd1e72461f5f94f7
1 #!/bin/csh
3 # File: compilePerl
4 # Purpose: Used to compile/use Perl with PC^2
5 # Author: pc2@ecs.csus.edu
7 # Dependencies: perl
9 # pc2 language settings:
11 # Display Name : Perl
12 # Compile Command Line : compilePerl {:mainfile}
13 # Executable Filename specification : OK
14 # Program Execution Command Line : perl {:mainfile}
17 perl -c $*
19 if ($? == 0) then
20 touch OK
21 endif
23 # eof compilePerl $Id: compilePerl,v 1.1 2005/03/06 05:34:39 laned Exp $