#!/bin/sh -e
redo-ifchange config/cxx config/cxxflags config/ldflags
read cxx < config/cxx
read cxxflags < config/cxxflags
read ldflags < config/ldflags
exec ${cxx} ${cxxflags} -o "$@" ${ldflags}
