FPK is a project that requires both the Make build tool and a C compiler to compile successfully. Forgot about this project whas on github 😭
Before building FPK, make sure you have the following installed:
- Make — used to automate the build process.
- C Compiler — such as
gcc,clang, or another compatible compiler.
You can install the required tools using your package manager:
# Debian/Ubuntu
sudo apt update
sudo apt install build-essential make
# Fedora
sudo dnf install make gcc
# macOS (via Homebrew)
brew install make gcc