aboutsummaryrefslogtreecommitdiffstats
path: root/print_dep.py
Commit message (Collapse)AuthorAgeFilesLines
* Store dependencies as plain text instead of binaryTharre2015-05-251-55/+0
| | | | | | | | Binary files are hard to debug, and even while the code required to parsing them is simpler it's not worth the tradeoff. Note that handling of newlines in target names is not implemented yet, they require some sort of special escaping.
* Implement (incomplete) dependency checking.Tharre2014-08-131-0/+55
Targets still do not depend on .do-files, and a lot of the edge cases are still not handled correctly. Furthermore some error-checking code is still missing, which could possibly crash the program (partially marked with comments), as well as some free() calls. An utitlity python script (print_dep.py) was also added to aid in debugging matters.