1
0
mirror of https://github.com/samba-team/samba.git synced 2025-11-27 08:23:49 +03:00

r11254: Remove support for [TARGET:foo]-like .mk-file entries

(it is already possible to include verbatim make data)
This commit is contained in:
Jelmer Vernooij
2005-10-21 21:53:49 +00:00
committed by Gerald (Jerry) Carter
parent c53b32e093
commit 21e355d031
2 changed files with 0 additions and 25 deletions

View File

@@ -106,17 +106,6 @@ sub check_library($$)
$lib->{OUTPUT_TYPE} = "SHARED_LIBRARY";
}
sub check_target($$)
{
my ($INPUT, $bin) = @_;
if (!defined($bin->{CMD})) {
print "CMD not defined for target!\n";
}
$bin->{OUTPUT_TYPE} = "CUSTOM";
}
sub check_binary($$)
{
my ($INPUT, $bin) = @_;
@@ -179,7 +168,6 @@ sub check($$)
check_module($INPUT, $part) if ($part->{TYPE} eq "MODULE");
check_library($INPUT, $part) if ($part->{TYPE} eq "LIBRARY");
check_binary($INPUT, $part) if ($part->{TYPE} eq "BINARY");
check_target($INPUT, $part) if ($part->{TYPE} eq "TARGET");
}
my %depend = %$INPUT;