#!/bin/sh
# Remove symlinks created by configure
for f in MCMC_core.cpp MCMC_proposals.cpp MCMC_bookkeeping.cpp helpers.cpp fit_result.cpp; do
    target="src/$f"
    if [ -L "$target" ]; then
        rm "$target"
    fi
done
