blob: 8d2e80978794f773454724d4eadaf3ca421a1494 (
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
|
# ship - shellscript installation processor
This utility is used to build modular shell scripts using recursive macro
expansion.
## Quickstart Guide
BUILD_PATH=libs ./build compile INPUTFILE OUTPUTFILE
If this doesen make science to you, then prepend `debug=true` to get all
the intermediate files printed to stdout.
## Make Interface
Build all executables from `src/` into `tmp/`:
make [all]
Build all executables into `tmp/` and `//bin/`:
make install
Undo `make [all]`:
make clean
Undo `make install`:
make distclean
|