blob: 97ffd1b5b960b6475a93665fa6499b9748475c18 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
blogc-make(1) -- a simple build tool for blogc
==============================================
## SYNOPSIS
`blogc-make` [`-V`] [`-f` <FILE>] [<RULE> ...]<br>
`blogc-make` [`-h`|`-v`]
## DESCRIPTION
**blogc-make** is a simple build tool for blogc websites.
EXPAND-ME!
## OPTIONS
* `-D`:
Builds for development environment. This option is useful to load local,
non-optimized assets for development purposes. It adds two global
variables to all blogc(1) calls: `MAKE_ENV_DEV=1` and `MAKE_ENV=dev`.
* `-V`:
Activates verbose mode, that will give more details of commands runs.
* `-f` <FILE>:
Reads <FILE> as `blogcfile`.
* `-v`:
Show program name, version and exit.
* `-h`:
Show help message and exit.
## RULES
TODO
## FILES
The `blogc-make` command expects a settings file, called `blogcfile` by default,
or any other file passed to `-f` option. `blogcfile` must have valid UTF-8 content.
The `blogc-make` command will read any files listed on `blogcfile`, and may write
files to the configured output directory.
## ENVIRONMENT
* `BLOGC`:
Path to `blogc(1)` binary. If not provided, the `blogc` binary in `$PATH` will
be used.
* `BLOGC_RUNSERVER`:
Path to `blogc-runserver(1)` binary. If not provided, the `blogc-runserver`
binary in `$PATH` will be used, if available.
* `OUTPUT_DIR`:
Path to the directory where `blogc-make` should write (or instruct blogc(1) to
write) output files. This is usually configured in `blogcfile`, but being able
to override it with an environment variable is useful for automated builds.
Any other environment variables are inherited by blogc(1) and blogc-runserver(1),
when called by `blogc-make`.
## EXAMPLES
Build all files:
$ blogc-make all
Clean built files:
$ blogc-make clean
## BUGS
Please report any issues to: <https://github.com/blogc/blogc>
## AUTHOR
Rafael G. Martins <<rafael@rafaelmartins.eng.br>>
## SEE ALSO
blogc(1), blogc-runserver(1)
|