blob: 7e70b3d526bc16fed00509267a933147b3730ec5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef HANDLE_DEP_H_
#define HANDLE_DEP_H_
#include <string>
#include <boost/optional.hpp>
extern boost::optional<std::string> make_command;
void handle_dep(const std::string &filename);
bool write_deps(const std::string &filename, const std::string &output_file);
#endif
|