summaryrefslogtreecommitdiff
path: root/source4/heimdal_build
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2013-11-23 19:46:27 +0000
committerAndrew Bartlett <abartlet@samba.org>2013-11-28 02:25:55 +0100
commitac27e88502734e1868c4f297f4df2e7729457367 (patch)
treebf8225fca27bef41698e2ddc6533a7e0f2378225 /source4/heimdal_build
parent09e6a5e1562218c3bb8d1e498e02a5bb4543d481 (diff)
downloadsamba-ac27e88502734e1868c4f297f4df2e7729457367.tar.gz
Remove no longer used et_deps.pl.
Signed-off-by: Jelmer Vernooij <jelmer@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'source4/heimdal_build')
-rwxr-xr-xsource4/heimdal_build/et_deps.pl17
1 files changed, 0 insertions, 17 deletions
diff --git a/source4/heimdal_build/et_deps.pl b/source4/heimdal_build/et_deps.pl
deleted file mode 100755
index 59144259987..00000000000
--- a/source4/heimdal_build/et_deps.pl
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/usr/bin/perl
-
-use File::Basename;
-
-my $file = shift;
-my $dirname = shift;
-my $basename = basename($file);
-
-my $header = "$dirname/$basename"; $header =~ s/\.et$/.h/;
-my $source = "$dirname/$basename"; $source =~ s/\.et$/.c/;
-print "basics:: $header\n";
-print "$header $source: \$(heimdalsrcdir)/$file \$(ET_COMPILER)\n";
-print "\t\@echo \"Compiling error table $file\"\n";
-print "\t\@\$(heimdalbuildsrcdir)/et_compile_wrapper.sh \$(builddir) $dirname \$(ET_COMPILER) \$(call abspath,\$(heimdalsrcdir)/$file) $source\n\n";
-
-print "clean:: \n";
-print "\t\@rm -f $header $source\n\n";