9 lines
158 B
Bash
Executable File
9 lines
158 B
Bash
Executable File
#!/usr/bin/env sh
|
|
# Modernized build script. Prefer `make build` or `make install`.
|
|
# This script remains for compatibility.
|
|
|
|
set -e
|
|
|
|
make build
|
|
make install
|