summaryrefslogtreecommitdiff
path: root/source4/build/smb_build/makefile.pm
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2008-02-16 17:12:01 +0100
committerJelmer Vernooij <jelmer@samba.org>2008-02-16 17:12:01 +0100
commitcddb061f3ce1f872d28d0b2e384f6071356c2409 (patch)
tree029e7634a7ffce18269698ec85b81e06ec16fa47 /source4/build/smb_build/makefile.pm
parentc35f6437e3c0389dd34ee5f4b460c83e3245bb64 (diff)
downloadsamba-cddb061f3ce1f872d28d0b2e384f6071356c2409.tar.gz
samba-cddb061f3ce1f872d28d0b2e384f6071356c2409.tar.bz2
samba-cddb061f3ce1f872d28d0b2e384f6071356c2409.zip
Use make to create lists of pc files and prototype headers.
(This used to be commit 6cc7bc1586e892e8470cb3f18a7afa2029a0399d)
Diffstat (limited to 'source4/build/smb_build/makefile.pm')
-rw-r--r--source4/build/smb_build/makefile.pm11
1 files changed, 7 insertions, 4 deletions
diff --git a/source4/build/smb_build/makefile.pm b/source4/build/smb_build/makefile.pm
index 43839dd465..0f0c716cac 100644
--- a/source4/build/smb_build/makefile.pm
+++ b/source4/build/smb_build/makefile.pm
@@ -26,7 +26,6 @@ sub new($$$)
$self->{headers} = [];
$self->{shared_modules} = [];
$self->{plugins} = [];
- $self->{pc_files} = [];
$self->{output} = "";
$self->{mkfile} = $mkfile;
@@ -297,9 +296,15 @@ sub Header($$)
{
my ($self,$ctx) = @_;
+ return if ($#{$ctx->{PUBLIC_HEADERS}} == -1);
+
+ $self->output("PUBLIC_HEADERS +=");
+
foreach (@{$ctx->{PUBLIC_HEADERS}}) {
- push (@{$self->{headers}}, output::add_dir_str($ctx->{BASEDIR}, $_));
+ $self->output(" " . output::add_dir_str($ctx->{BASEDIR}, $_));
}
+
+ $self->output("\n");
}
sub Binary($$)
@@ -415,8 +420,6 @@ sub write($$)
$self->output("PYTHON_DSOS = " . array2oneperline($self->{python_dsos}) . "\n");
$self->output("PYTHON_PYS = " . array2oneperline($self->{python_pys}) . "\n");
- $self->output("PUBLIC_HEADERS = " . array2oneperline($self->{headers}) . "\n");
- $self->output("PC_FILES = " . array2oneperline($self->{pc_files}) . "\n");
$self->output("ALL_OBJS = " . array2oneperline($self->{all_objs}) . "\n");
$self->output("SHARED_MODULES = " . array2oneperline($self->{shared_modules}) . "\n");
$self->output("PLUGINS = " . array2oneperline($self->{plugins}) . "\n");