]> git.donarmstrong.com Git - debhelper.git/blob - dh_auto_clean
Update dh_auto documentation.
[debhelper.git] / dh_auto_clean
1 #!/usr/bin/perl -w
2
3 =head1 NAME
4
5 dh_auto_clean - clean temporary files after building package sources
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<I<dh_auto options>>] [S<B<--> I<params>>]
15
16 =head1 DESCRIPTION
17
18 dh_auto_clean is a debhelper program that is responsible for the I<clean> step
19 of the L<dh_auto(7)> building process. It tries to automatically clean up after
20 a package build by removing all temporary files from the build directory or
21 even the build directory itself as appropriate. dh_auto_clean will fail only if
22 the source build system clean routine fails. However, if the latter does not
23 exist or there is nothing to clean it will exit with zero status doing nothing.
24
25 If dh_auto_clean does not meet your needs or does not work, it is safe to
26 skip/override it entirely and just run clean up manually.
27
28 #DH_AUTO SHARED OPTIONS#
29
30 =head1 OPTIONS
31
32 =over 4
33
34 =item B<--> I<params>
35
36 Pass "params" to the program that is run. These can be used to supplement
37 or override the any standard parameters that dh_auto_clean passes.
38
39 =back
40
41 =head1 SUPPORTED BUILD SYSTEMS
42
43 #SUPPORTED BUILD SYSTEMS INTRO#
44 #SUPPORTED BUILD SYSTEMS LIST#
45
46 =cut
47
48 buildsystems_init();
49 buildsystems_do();
50
51 =head1 SEE ALSO
52
53 L<dh_auto(7)>
54
55 L<debhelper(7)>
56
57 This program is a part of debhelper and its dh_auto package source building suite.
58
59 =head1 AUTHORS
60
61  Joey Hess <joeyh@debian.org>
62  Modestas Vainius <modestas@vainius.eu>
63
64 =cut