diff options
| author | Bent Bisballe Nyeng <deva@aasimon.org> | 2021-06-18 07:27:57 +0200 | 
|---|---|---|
| committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2021-06-18 08:07:20 +0200 | 
| commit | 80290e7d65dc498e9ea5e64aa6cbc65282072deb (patch) | |
| tree | 796f723f449d58615c6d81f5eecd212a1e4d0399 /task_ld.h | |
| parent | 33addfbf9cc21cd69b3d6476eb0c062bb2c6fcfb (diff) | |
New dependency system.
Diffstat (limited to 'task_ld.h')
| -rw-r--r-- | task_ld.h | 5 | 
1 files changed, 3 insertions, 2 deletions
| @@ -20,9 +20,9 @@ public:  	       const std::string& target,  	       const std::vector<std::string>& objects); -	bool dirty() override; +	bool dirtyInner() override; -	int run() override; +	int runInner() override;  	int clean() override;  	std::vector<std::string> depends() const override; @@ -33,6 +33,7 @@ private:  	std::string flagsString() const;  	std::vector<std::filesystem::path> objectFiles; +	std::vector<std::filesystem::path> depFiles;  	std::filesystem::path targetFile;  	std::filesystem::path flagsFile; | 
