summaryrefslogtreecommitdiff
path: root/source4/build/smb_build/makefile.pm
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2006-03-18 23:31:40 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:58:45 -0500
commite801e013c83747fcf85cd6abd1b1834bd08340e2 (patch)
tree70c70f4da29cf40f0d9cfff4d36987e234db61b3 /source4/build/smb_build/makefile.pm
parentedef07080b1403355145d4b314bae5c9ea9e6fb9 (diff)
downloadsamba-e801e013c83747fcf85cd6abd1b1834bd08340e2.tar.gz
samba-e801e013c83747fcf85cd6abd1b1834bd08340e2.tar.bz2
samba-e801e013c83747fcf85cd6abd1b1834bd08340e2.zip
r14552: Remove old dependency code
(This used to be commit 44e132cf1a48174f538348b743096251b3e8f92f)
Diffstat (limited to 'source4/build/smb_build/makefile.pm')
-rw-r--r--source4/build/smb_build/makefile.pm18
1 files changed, 3 insertions, 15 deletions
diff --git a/source4/build/smb_build/makefile.pm b/source4/build/smb_build/makefile.pm
index e632895f20..aeffc79e4d 100644
--- a/source4/build/smb_build/makefile.pm
+++ b/source4/build/smb_build/makefile.pm
@@ -187,18 +187,6 @@ sub _prepare_list($$$)
$self->output("$ctx->{TYPE}\_$ctx->{NAME}_$var =$tmplist\n");
}
-sub DependencyInfo($$)
-{
- my ($self,$ctx) = @_;
-
- $self->output("bin/deps/$ctx->{TYPE}_$ctx->{NAME}: \$($ctx->{TYPE}_$ctx->{NAME}_OBJ_LIST:.o=.c)");
- $self->output("\n");
- $self->output("\t\@echo \"Generating dependency info for $ctx->{NAME}\"\n");
- $self->output("\t\@./script/cdeps.pl \$^ > \$@\n");
- $self->output("\n");
- $self->output("-include bin/deps/$ctx->{TYPE}_$ctx->{NAME}\n\n");
-}
-
sub SharedLibrary($$)
{
my ($self,$ctx) = @_;
@@ -518,17 +506,17 @@ sub write($$)
$self->_prepare_mk_files();
+ $self->output($self->{mkfile});
+
if ($self->{developer}) {
$self->output(<<__EOD__
-#-include \$(ALL_OBJS:.o=.d)
+-include \$(DEP_FILES)
__EOD__
);
}
- $self->output($self->{mkfile});
-
open(MAKEFILE,">$file") || die ("Can't open $file\n");
print MAKEFILE $self->{output};
close(MAKEFILE);