| 38 | #include "../lib/utils.h" |
| 39 | |
| 40 | static std::string builddir(std::string filename) |
| 41 | { |
| 42 | if (startsWith(filename,"lib/")) |
| 43 | filename = "$(libcppdir)" + filename.substr(3); |
| 44 | else if (startsWith(filename, "../lib/")) // oss-fuzz |
| 45 | filename = "$(libcppdir)" + filename.substr(6); |
| 46 | |
| 47 | return filename; |
| 48 | } |
| 49 | |
| 50 | static std::string objfile(std::string cppfile) |
| 51 | { |
no test coverage detected