Home | History | Annotate | Download | only in makeparallel

Lines Matching refs:makeflags

60 // Extract flags from MAKEFLAGS that need to be propagated to subproccess
64 const char* makeflags_env = getenv("MAKEFLAGS");
69 // The MAKEFLAGS format is pretty useless. The first argument might be empty
74 std::string makeflags = makeflags_env;
76 // Split makeflags into individual args on spaces. Multiple spaces are
81 found = makeflags.find_first_of(" ", base);
82 args.push_back(makeflags.substr(base, found - base));
84 } while (found != makeflags.npos);
94 if (args[0].find('=') == makeflags.npos) {
309 std::vector<std::string> makeflags = ReadMakeflags();
310 if (ParseMakeflags(makeflags, &in_fd, &out_fd, &parallel, &keep_going)) {
386 unsetenv("MAKEFLAGS");