Deleted Added
full compact
mk1mf.pl (325337) mk1mf.pl (326663)
1#!/usr/local/bin/perl
2# A bit of an evil hack but it post processes the file ../MINFO which
3# is generated by `make files` in the top directory.
4# This script outputs one mega makefile that has no shell stuff or any
5# funny stuff (if the target is not "copy").
6# If the target is "copy", then it tries to create a makefile that can be
7# safely used with the -j flag and that is compatible with the top-level
8# Makefile, in the sense that it uses the same options and assembler files etc.

--- 751 unchanged lines hidden (view full) ---

760EOF
761}
762
763$defs.=&do_defs("T_EXE",$test,"\$(TEST_D)",$exep);
764foreach (split(/\s+/,$test))
765 {
766 $t=&bname($_);
767 $tt="\$(OBJ_D)${o}$t${obj}";
1#!/usr/local/bin/perl
2# A bit of an evil hack but it post processes the file ../MINFO which
3# is generated by `make files` in the top directory.
4# This script outputs one mega makefile that has no shell stuff or any
5# funny stuff (if the target is not "copy").
6# If the target is "copy", then it tries to create a makefile that can be
7# safely used with the -j flag and that is compatible with the top-level
8# Makefile, in the sense that it uses the same options and assembler files etc.

--- 751 unchanged lines hidden (view full) ---

760EOF
761}
762
763$defs.=&do_defs("T_EXE",$test,"\$(TEST_D)",$exep);
764foreach (split(/\s+/,$test))
765 {
766 $t=&bname($_);
767 $tt="\$(OBJ_D)${o}$t${obj}";
768 $tt.=" \$(OBJ_D)${o}ssltestlib${obj}" if $t eq "dtlstest";
768 $tt.=" \$(OBJ_D)${o}ssltestlib${obj}" if $t eq "dtlstest" or $t eq "fatalerrtest";
769 $rules.=&do_link_rule("\$(TEST_D)$o$t$exep",$tt,"\$(LIBS_DEP)","\$(L_LIBS) \$(EX_LIBS)");
770 }
771
772$defs.=&do_defs("E_SHLIB",$engines . $otherlibs,"\$(ENG_D)",$shlibp);
773
774foreach (split(/\s+/,$engines))
775 {
776 $rules.=&do_compile_rule("\$(OBJ_D)","engines${o}e_$_",$lib);

--- 552 unchanged lines hidden ---
769 $rules.=&do_link_rule("\$(TEST_D)$o$t$exep",$tt,"\$(LIBS_DEP)","\$(L_LIBS) \$(EX_LIBS)");
770 }
771
772$defs.=&do_defs("E_SHLIB",$engines . $otherlibs,"\$(ENG_D)",$shlibp);
773
774foreach (split(/\s+/,$engines))
775 {
776 $rules.=&do_compile_rule("\$(OBJ_D)","engines${o}e_$_",$lib);

--- 552 unchanged lines hidden ---