~ubuntu-branches/ubuntu/trusty/rebar/trusty

« back to all changes in this revision

Viewing changes to debian/rebar.1

  • Committer: Package Import Robot
  • Author(s): Nobuhiro Iwamatsu
  • Date: 2012-07-15 12:10:52 UTC
  • Revision ID: package-import@ubuntu.com-20120715121052-uoht7dtyiufg1fex
Tags: 2.0.0-1
Initial release. (Closes: #683350)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
.TH "REBAR" 1 "31 Jul 2012" "REBAR" "REBAR"
 
2
.SH NAME
 
3
rebar \- Sophisticated build-tool for Erlang projects that follows OTP principles
 
4
.SH SYNOPSIS
 
5
.B rebar
 
6
[\\-h] [\\-c] [\\-v <verbose>] [\\-V] [\\-f] [\\-D <defines>] [\\-j <jobs>] [\\-C <config>] [\\-p] [var=value,...] <command,...>
 
7
.SH DESCRIPTION
 
8
\fBrebar\fP is an Erlang build tool that makes it easy to compile and  
 
9
test Erlang applications, port drivers and releases.
 
10
 
 
11
\fBrebar\fP is a self-contained Erlang script, so it's easy to distribute or even  
 
12
embed directly in a project. Where possible, rebar uses standard Erlang/OTP  
 
13
conventions for project structures, thus minimizing the amount of build  
 
14
configuration work. rebar also provides dependency management, enabling  
 
15
application writers to easily re-use common libraries from a variety of  
 
16
locations (git, hg, etc).
 
17
 
 
18
.SH OPTIONS:
 
19
.TP
 
20
.B \\-h, \\--help
 
21
Show the program options
 
22
.TP
 
23
.B \\-c, \\--commands
 
24
Show available commands
 
25
.TP
 
26
.B \\-v, \\--verbose
 
27
Verbosity level (-v, -vv, -vvv, --verbose 3). Default: 0
 
28
.TP
 
29
.B \\-V, \\--version
 
30
Show version information
 
31
.TP
 
32
.B \\-f, \\--force
 
33
Force
 
34
.TP
 
35
.B \\-D
 
36
Define compiler macro
 
37
.TP
 
38
.B \\-j, \\--jobs
 
39
Number of concurrent workers a command may use. Default: 3
 
40
.TP
 
41
.B \\-C, \\--config
 
42
Rebar config file to use
 
43
.TP
 
44
.B \\-p, \\--profile
 
45
Profile this run of rebar
 
46
.TP
 
47
.B var=value
 
48
rebar global variables (e.g. force=1)
 
49
.TP
 
50
.B command
 
51
Command to run (e.g. compile)
 
52
 
 
53
.SH AUTHOR
 
54
This manual page was written by Nobuhiro Iwamatsu <iwamatsu@debian.org>
 
55
for the Debian GNU/Linux system (but may be used by others).