~ubuntu-branches/ubuntu/maverick/openssl/maverick

« back to all changes in this revision

Viewing changes to util/pl/VC-CE.pl

  • Committer: Bazaar Package Importer
  • Author(s): Christoph Martin
  • Date: 2004-12-16 18:41:29 UTC
  • mto: (11.1.1 lenny)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20041216184129-z7xjkul57mh1jiha
Tags: upstream-0.9.7e
ImportĀ upstreamĀ versionĀ 0.9.7e

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
$lfile='/out:';
48
48
 
49
49
$shlib_ex_obj="";
50
 
#$app_ex_obj="setargv.obj";
 
50
$app_ex_obj="";
51
51
$app_ex_obj="";
52
52
 
53
53
$bn_asm_obj='';
97
97
 
98
98
sub do_link_rule
99
99
        {
100
 
        local($target,$files,$dep_libs,$libs)=@_;
 
100
        local($target,$files,$dep_libs,$libs,$sha1file,$openssl)=@_;
101
101
        local($ret,$_);
102
102
        
103
103
        $file =~ s/\//$o/g if $o ne '/';
104
104
        $n=&bname($targer);
105
105
        $ret.="$target: $files $dep_libs\n";
106
106
        $ret.="  \$(LINK) \$(LFLAGS) $efile$target @<<\n";
107
 
        $ret.="  \$(APP_EX_OBJ) $files $libs\n<<\n\n";
 
107
        $ret.="  \$(APP_EX_OBJ) $files $libs\n<<\n";
 
108
        if (defined $sha1file)
 
109
                {
 
110
                $ret.="  $openssl sha1 -hmac etaonrishdlcupfm -binary $target > $sha1file";
 
111
                }
 
112
        $ret.="\n";
108
113
        return($ret);
109
114
        }
110
115