blob: 1074a64ff042565b259356f11b89be9fee4d73ba (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef HANDLE_DEP_H_
#define HANDLE_DEP_H_
#include <string>
extern const char *make_command;
void handle_dep(const std::string &filename);
bool write_deps(const std::string &filename, const std::string &output_file);
#endif
|