#!/bin/sh
# Performs post-installation compilation of freqcd. Do not modify.
TARGET=freqcd
if [ ! -z "$1" ]; then TARGET="$1"; fi
gcc -o ${TARGET} freqcd.c lib/getopt.c -lm
