X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=make%2Fcalcdep.pl;h=376d195739caeb3e354fa4fcf3b0972b60332bf9;hb=caa0c27a5a485151a0de21e700680c1e46ab85b4;hp=b0c6941b71766d36eabdc7ca885eb26bcfcbb756;hpb=050c2cf253e27847f50eec29c5502904b112437b;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/make/calcdep.pl b/make/calcdep.pl index b0c6941b7..376d19573 100755 --- a/make/calcdep.pl +++ b/make/calcdep.pl @@ -239,15 +239,8 @@ sub dep_cpp($$$) { sub dep_so($) { my($file) = @_; my $out = find_output $file; - my $split = find_output $file, 1; - if ($ENV{SPLIT_CC}) { - dep_cpp $file, $split, 'gen-o'; - print MAKE "$out: $split\n"; - print MAKE "\t@\$(SOURCEPATH)/make/unit-cc.pl link-so\$(VERBOSE) \$\@ \$(SOURCEPATH)/src/$file \$>\n"; - } else { - dep_cpp $file, $out, 'gen-so'; - } + dep_cpp $file, $out, 'gen-so'; return $out; }