]> git.donarmstrong.com Git - debhelper.git/blob - dh_auto_clean
Merge branch 'master' into buildsystems
[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_Buildsystems;
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 or Build.PL, it
22 is run to 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 encouraged 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 supplement
35 or override the any standard parameters that dh_auto_clean passes.
36
37 =back
38
39 =cut
40
41 buildsystems_init();
42 buildsystems_do();
43
44 =head1 SEE ALSO
45
46 L<debhelper(7)>
47
48 This program is a part of debhelper.
49
50 =head1 AUTHOR
51
52 Joey Hess <joeyh@debian.org>
53
54 =cut