#!/usr/bin/perl

print "This is a hack to get around a strange makefile problem\n";

while (<>) {
  $com = "cc -c $_";
  print "$com";
  system $com;
}


1; #OK
