diff --git a/src/build_make.cc b/src/build_make.cc new file mode 100644 index 0000000..b597225 --- /dev/null +++ b/src/build_make.cc @@ -0,0 +1,15 @@ +/* Build system implementation bits. + * + * This file is part of libostd. See COPYING.md for futher information. + */ + +#include "ostd/build/make.hh" + +namespace ostd { +namespace build { + +/* place the vtable in here */ +make_task::~make_task() {} + +} /* namespace build */ +} /* namespace ostd */