diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-01-14 11:39:21 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-01-14 11:39:21 +0200 |
commit | ce8a94e6a76097ef7eeb34df4257991a20599712 (patch) | |
tree | 5e83b9d083f486a6efe889102f7c2a815e6a06c6 /build/buildfile | |
parent | ab4421747146aa7995f0cfb1a639c9121c82c915 (diff) |
Track file extension in target, prerequisite
Diffstat (limited to 'build/buildfile')
-rw-r--r-- | build/buildfile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/build/buildfile b/build/buildfile index 3afe19b..73f2e91 100644 --- a/build/buildfile +++ b/build/buildfile @@ -1,5 +1,6 @@ exe{b1}: obj{b algorithm scope parser lexer trace target prerequisite rule \ - native context diagnostics cxx/target cxx/rule process timestamp path} + native context diagnostics cxx/target cxx/rule process timestamp path \ + utility} obj{b}: cxx{b} obj{algorithm}: cxx{algorithm} @@ -18,3 +19,4 @@ obj{cxx/rule}: cxx{cxx/rule} obj{process}: cxx{process} obj{timestamp}: cxx{timestamp} obj{path}: cxx{path} +obj{utility}: cxx{utility} |