#!/usr/bin/env sh
set -ex # Stop on first error and log all commands

gcc \
    -Wall -Wextra -Wno-misleading-indentation -pedantic -std=c89 \
    -o gmi100 gmi100.c \
    -lssl -lcrypto
