summaryrefslogtreecommitdiff
path: root/make/calcdep.pl
diff options
context:
space:
mode:
authorPeter Powell <petpow@saberuk.com>2014-02-26 20:19:58 +0000
committerAttila Molnar <attilamolnar@hush.com>2014-04-11 15:38:17 +0200
commit2803ae5d75e610fb821b7fdb3771777d62ac9fd3 (patch)
tree955a1f5b6547a4e9366c113e118d0b5d980e3cb4 /make/calcdep.pl
parent557c02839bec991dd846a6dc12ce7ba52de1525c (diff)
Remove various broken/useless features from the build system.
- Removed support for changing the build directory using configure. This can still be set using make BUILDPATH=foo. - Removed support for SPLIT_CC builds. This is not documented anywhere and is quite useless as it doesn't work. - Remove STARTSCRIPT from configure; always install the perl helper.
Diffstat (limited to 'make/calcdep.pl')
-rwxr-xr-xmake/calcdep.pl9
1 files changed, 1 insertions, 8 deletions
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;
}