]> git.donarmstrong.com Git - debhelper.git/blob - dh_auto_build
Update dh_auto documentation.
[debhelper.git] / dh_auto_build
1 #!/usr/bin/perl -w
2
3 =head1 NAME
4
5 dh_auto_build - build package sources
6
7 =cut
8
9 use strict;
10 use Debian::Debhelper::Dh_Buildsystems;
11
12 =head1 SYNOPSIS
13
14 B<dh_auto_build> [S<I<debhelper options>>] [S<I<dh_auto options>>] [S<B<--> I<params>>]
15
16 =head1 DESCRIPTION
17
18 dh_auto_build is a debhelper program that is responsible for the I<build> step
19 of the L<dh_auto(7)> building process. Typically, this is the point when
20 package sources are compiled into binaries or otherwise transformed into ready
21 to use format. Files produced throughout this step are put to the build
22 directory.
23
24 You can pass additional parameters via I<params>. However, if dh_auto_build
25 does not meet your needs or does not work, it is safe to skip/override it
26 entirely and build the package with custom commands.
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 any standard parameters that dh_auto_build 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
58 suite.
59
60 =head1 AUTHOR
61
62  Joey Hess <joeyh@debian.org>
63  Modestas Vainius <modestas@vainius.eu>
64
65 =cut