mirror of
https://github.com/Alcaro/Flips.git
synced 2026-03-22 01:54:26 -05:00
Some checks failed
Build optimized / linux (push) Has been cancelled
Build optimized / windows (push) Has been cancelled
Build optimized / macos (push) Has been cancelled
Build unoptimized / linux (cli) (push) Has been cancelled
Build unoptimized / linux (gtk) (push) Has been cancelled
Build unoptimized / macos (cli) (push) Has been cancelled
Build unoptimized / macos (gtk) (push) Has been cancelled
Build unoptimized / windows (cli) (push) Has been cancelled
Build unoptimized / windows (windows) (push) Has been cancelled
Build optimized / create-release (push) Has been cancelled
14 lines
724 B
Bash
Executable File
14 lines
724 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# This script does nothing, other than trick people into running it and print the manual.
|
|
# Since configure is usually run before make, and people tend to read its output
|
|
# (to find which dependencies are missing), it's a reasonable place to put compilation instructions.
|
|
cat <<EOF
|
|
To compile Floating IPS in release mode (recommended for most users; will take a
|
|
few minutes, but result will be fast), use \`./make-linux.sh'.
|
|
To compile Floating IPS in almost-release mode (2% slower at runtime, but only
|
|
takes a few seconds to compile), use \`./make-linux.sh --profile=no'.
|
|
To compile Floating IPS in debug mode (NOT recommended unless you're tracking a
|
|
bug, it's VERY slow for big files), use \`make'.
|
|
EOF
|