mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-06-26 22:38:30 +00:00
Introduce --timelog=FILE flag to GNU Make
This commit is contained in:
parent
edb03b89d8
commit
c2db3b703a
7 changed files with 214 additions and 0 deletions
13
third_party/make/timelog.h
vendored
Normal file
13
third_party/make/timelog.h
vendored
Normal 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_ */
|
Loading…
Add table
Add a link
Reference in a new issue