X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=make%2Fcalcdep.pl;h=3b4ae6b0d7041b3f149489f847504bdcd0330289;hb=6cfa00e862ed9615438c0a1c6faef12f228e46ef;hp=882e75f22ea9611172aeab133a7ea8936bec182e;hpb=5267fb9d362aeb326c9e64f7171c957f76776f90;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/make/calcdep.pl b/make/calcdep.pl index 882e75f22..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} @@ -166,7 +168,7 @@ END obj/ld-extra.cmd: $core_src \@\$(SOURCEPATH)/make/unit-cc.pl gen-ld \$\@ \$^ \$> -bin/inspircd: obj/ld-extra.cmd $core_mk +bin/inspircd: $core_mk obj/ld-extra.cmd \@\$(SOURCEPATH)/make/unit-cc.pl static-ld \$\@ \$^ \$> inspircd: bin/inspircd @@ -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;