summaryrefslogtreecommitdiff
path: root/make/calcdep.pl
diff options
context:
space:
mode:
authorPeter Powell <petpow@saberuk.com>2017-10-18 17:16:32 +0100
committerPeter Powell <petpow@saberuk.com>2017-11-29 19:23:40 +0000
commitc83ce753688bde7b6106acf2de44c3cf29b30a7e (patch)
tree1dab87a68986374379b64834b738b32071263ce6 /make/calcdep.pl
parent758fc5fcbb988a1f3d692485e47cb8d253b2bc8d (diff)
Merge INSPIRCD_MODULE and INSPIRCD_TARGET.
Diffstat (limited to 'make/calcdep.pl')
-rwxr-xr-xmake/calcdep.pl9
1 files changed, 9 insertions, 0 deletions
diff --git a/make/calcdep.pl b/make/calcdep.pl
index 99355efa4..3b4ae6b0d 100755
--- a/make/calcdep.pl
+++ b/make/calcdep.pl
@@ -30,6 +30,8 @@ BEGIN {
use strict;
use warnings FATAL => qw(all);
+use File::Basename qw(basename);
+
use constant {
BUILDPATH => $ENV{BUILDPATH},
SOURCEPATH => $ENV{SOURCEPATH}
@@ -238,6 +240,10 @@ sub dep_so($) {
my($file) = @_;
my $out = find_output $file;
+ my $name = basename $out, '.so';
+ print MAKE ".PHONY: $name\n";
+ print MAKE "$name: $out\n";
+
dep_cpp $file, $out, 'gen-so';
return $out;
}
@@ -255,6 +261,9 @@ sub dep_dir($$) {
closedir DIR;
if (@ofiles) {
my $ofiles = join ' ', @ofiles;
+ my $name = basename $outdir;
+ print MAKE ".PHONY: $name\n";
+ print MAKE "$name: $outdir.so\n";
print MAKE "$outdir.so: $ofiles\n";
print MAKE "\t@\$(SOURCEPATH)/make/unit-cc.pl link-dir \$\@ ${\SOURCEPATH}/src/$dir \$^ \$>\n";
return 1;