Introduce --timelog=FILE flag to GNU Make

This commit is contained in:
Justine Tunney 2024-05-25 14:49:29 -07:00
parent edb03b89d8
commit c2db3b703a
No known key found for this signature in database
GPG key ID: BE714B4575D6E328
7 changed files with 214 additions and 0 deletions

13
third_party/make/timelog.h vendored Normal file
View file

@ -0,0 +1,13 @@
#ifndef MAKE_TIMELOG_H_
#define MAKE_TIMELOG_H_
struct timelog;
extern int timelog_fd;
extern char *timelog_path;
void timelog_init (void);
struct timelog *timelog_begin (char **);
void timelog_end (struct timelog *);
#endif /* MAKE_TIMELOG_H_ */