From cea6fb57ac8c9a893c0f404fef6c1469f0b6222b Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Thu, 22 Jul 2010 14:33:21 +0200 Subject: Next chunk of functionality Add SQL language lexer. Implement MySQL type declaration parser. Create sub-directories for databases, currently mysql and tracer. Create MySQL-specific context. --- odb/makefile | 23 ++++++++++++++++++----- 1 file changed, 18 insertions(+), 5 deletions(-) (limited to 'odb/makefile') diff --git a/odb/makefile b/odb/makefile index f6da371..1fb240d 100644 --- a/odb/makefile +++ b/odb/makefile @@ -8,15 +8,28 @@ include $(dir $(lastword $(MAKEFILE_LIST)))../build/bootstrap.make # Plugin units. # cxx_ptun := \ +sql-lexer.cxx \ context.cxx \ generator.cxx \ parser.cxx \ plugin.cxx \ -pragma.cxx \ -header.cxx \ -inline.cxx \ -source.cxx \ -mysql-schema.cxx +pragma.cxx + +# Tracer +# +cxx_ptun += \ +tracer/header.cxx \ +tracer/inline.cxx \ +tracer/source.cxx + +# MySQL +# +cxx_ptun += \ +mysql/context.cxx \ +mysql/schema.cxx \ +mysql/header.cxx \ +mysql/inline.cxx \ +mysql/source.cxx cxx_ptun += \ semantics/class.cxx \ -- cgit v1.1