1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-15 23:24:37 +03:00
samba-mirror/source3/script/expand-includes.pl
2009-01-21 17:21:45 +01:00

26 lines
477 B
Perl
Executable File

#!/usr/bin/perl
# Expand the include lines in a Makefile
# Copyright (C) 2009 Jelmer Vernooij <jelmer@samba.org>
# Published under the GNU GPLv3 or later
sub process($)
{
my ($f) = @_;
open(IN, $f) or die("Unable to open $f: $!");
foreach (<IN>) {
my $l = $_;
if ($l =~ /^include (.*)$/) {
process($1);
} else {
print $l;
}
}
}
my $path = shift;
unless ($path) {
print STDERR "Usage: $0 Makefile.in > Makefile-noincludes.in\n";
exit(1);
}
process($path);