]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - make/calcdep.pl
Remove various broken/useless features from the build system.
[user/henk/code/inspircd.git] / make / calcdep.pl
index b0c6941b71766d36eabdc7ca885eb26bcfcbb756..376d195739caeb3e354fa4fcf3b0972b60332bf9 100755 (executable)
@@ -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;
 }