]> git.donarmstrong.com Git - debhelper.git/blob - dh_auto_clean
new method to tell if a makefile contains a target
[debhelper.git] / dh_auto_clean
1 #!/usr/bin/perl -w
2
3 =head1 NAME
4
5 dh_auto_clean - automatically cleans up after a build
6
7 =cut
8
9 use strict;
10 use Debian::Debhelper::Dh_Lib;
11
12 =head1 SYNOPSIS
13
14 B<dh_auto_clean> [S<I<debhelper options>>] [S<B<--> I<params>>]
15
16 =head1 DESCRIPTION
17
18 dh_auto_clean is a debhelper program that tries to automatically clean up
19 after a package build. If there's a Makefile and it contains a "distclean",
20 "realclean", or "clean" target, then this is  done by running make (or MAKE,
21 if the environment variable is set). If there is a setup.py, it is run to
22 clean the package.
23
24 This is intended to work for about 90% of packages. If it doesn't work, or
25 tries to use the wrong clean target, you're encoruaged to skip using
26 dh_auto_clean at all, and just run make clean manually.
27
28 =head1 OPTIONS
29
30 =over 4
31
32 =item B<--> I<params>
33
34 Pass "params" to the program that is run. These can be used to suppliment
35 or override the any standard parameters that dh_auto_clean passes.
36
37 =back
38
39 =cut
40
41 init();
42
43 if (-e "Makefile" || -e "makefile" || -e "GNUmakefile") {
44         $ENV{MAKE}="make" unless exists $ENV{MAKE};
45         foreach my $target (qw{distclean realclean clean}) {
46                 # Use make -n to check to see if the target would do
47                 # anything. There's no good way to test if a target exists.
48                 my $ret=`$ENV{MAKE} -s -n $target 2>/dev/null`;
49                 chomp $ret;
50                 if (length $ret) {
51                         doit($ENV{MAKE}, $target, @{$dh{U_PARAMS}});
52                         last;
53                 }
54         }
55 }
56 elsif (-e "setup.py") {
57         doit("python setup.py", "clean", "-a", @{$dh{U_PARAMS}});
58 }
59
60
61 =head1 SEE ALSO
62
63 L<debhelper(7)>
64
65 This program is a part of debhelper.
66
67 =head1 AUTHOR
68
69 Joey Hess <joeyh@debian.org>
70
71 =cut