mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
1d6456fd60
we now call asn1_compile and compile_et via a wrapper script
metze
(This used to be commit a5b67f5c7e
)
68 lines
1.7 KiB
Perl
Executable File
68 lines
1.7 KiB
Perl
Executable File
#!/usr/bin/perl
|
|
# Generate make dependency rules for asn1 files
|
|
# Jelmer Vernooij <jelmer@samba.org> 2005
|
|
# GPL
|
|
|
|
use File::Basename;
|
|
|
|
my $file = shift;
|
|
my $prefix = shift;
|
|
my $dirname = shift;
|
|
my $options = join(' ', @ARGV);
|
|
my $x_file;
|
|
my @x_files = ();
|
|
my $c_file;
|
|
my @c_files = ();
|
|
my $o_file;
|
|
my @o_files = ();
|
|
|
|
$basename = basename($file);
|
|
if (not defined $options) {
|
|
$options = "";
|
|
}
|
|
|
|
my $header = "$dirname/$prefix.h";
|
|
|
|
print "$header: $file bin/asn1_compile\n";
|
|
print "\t\@echo \"Compiling ASN1 file $file\"\n";
|
|
print "\t\@\$(builddir)/heimdal_build/asn1_compile_wrapper.sh \$(srcdir) \$(builddir) $dirname bin/asn1_compile $file $prefix $options\n\n";
|
|
|
|
open(IN,$file) or die("Can't open $file: $!");
|
|
foreach(<IN>) {
|
|
if (/^([\w]+[\w\-]+)(\s+OBJECT IDENTIFIER)?\s*::=/) {
|
|
my $output = $1;
|
|
$output =~ s/-/_/g;
|
|
$c_file = "$dirname/asn1_$output.c";
|
|
$x_file = "$dirname/asn1_$output.x";
|
|
$o_file = "$dirname/asn1_$output.o";
|
|
print "$x_file: $header\n";
|
|
print "$c_file: $dirname/asn1_$output.x\n";
|
|
print "\t\@cp $x_file $c_file\n\n";
|
|
push @x_files, $x_file;
|
|
push @c_files, $c_file;
|
|
push @o_files, $o_file;
|
|
}
|
|
}
|
|
close(IN);
|
|
|
|
print '[SUBSYSTEM::HEIMDAL_'.uc($prefix).']'."\n";
|
|
print "CFLAGS = -Iheimdal_build -I$dirname\n";
|
|
print "OBJ_FILES = ";
|
|
foreach $o_file (@o_files) {
|
|
print "\\\n\t$o_file";
|
|
}
|
|
print "\nPRIVATE_DEPENDENCIES = HEIMDAL_ASN1\n\n";
|
|
|
|
print "clean:: \n";
|
|
print "\t\@echo \"Deleting ASN1 output files generated from $file\"\n";
|
|
print "\t\@rm -f $header\n";
|
|
foreach $c_file (@c_files) {
|
|
print "\t\@rm -f $c_file\n";
|
|
}
|
|
foreach $x_file (@x_files) {
|
|
print "\t\@rm -f $x_file\n";
|
|
}
|
|
print "\t\@rm -f $dirname/$prefix\_files\n";
|
|
print "\t\@rm -f $dirname/$prefix\.h\n";
|
|
print "\n";
|