summaryrefslogtreecommitdiff
path: root/cli/makefile
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2009-09-20 18:47:48 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2009-09-20 18:47:48 +0200
commit0804aa8543136f3e1585e0e59a14f9c331c0c448 (patch)
tree7ffaaf06f0627b13fe3f14868d19bdd277d98399 /cli/makefile
parentddb77e1407eeaf0f18390cb49d915ca50ac2b528 (diff)
Add name processor
Name processor is a separate pass over the semantics graph that assigns names to various constructs while making sure there are no name clashes.
Diffstat (limited to 'cli/makefile')
-rw-r--r--cli/makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/cli/makefile b/cli/makefile
index a6026a6..488d758 100644
--- a/cli/makefile
+++ b/cli/makefile
@@ -9,10 +9,11 @@ cxx_tun := cli.cxx lexer.cxx parser.cxx
cxx_tun += \
context.cxx \
-generator.cxx \
header.cxx \
inline.cxx \
-source.cxx
+source.cxx \
+generator.cxx \
+name-processor.cxx
cxx_tun += \
semantics/class.cxx \