~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/execute/include.am

  • Committer: Mark Atwood
  • Date: 2011-06-08 19:56:57 UTC
  • mfrom: (2324.1.1 drizzle)
  • Revision ID: me@mark.atwood.name-20110608195657-vkwvn8bgd020e2nt
mergeĀ lp:~fallenpegasus/drizzle/vjsamuel-final-execute-parserĀ 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# vim:ft=automake
 
2
# included from Top Level Makefile.am
 
3
# All paths should be given relative to the root
 
4
 
 
5
 
 
6
#  Copyright (C) 2011 Brian Aker
 
7
 
8
#  This program is free software; you can redistribute it and/or modify
 
9
#  it under the terms of the GNU General Public License as published by
 
10
#  the Free Software Foundation; either version 2 of the License, or
 
11
#  (at your option) any later version.
 
12
 
13
#  This program is distributed in the hope that it will be useful,
 
14
#  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
16
#  GNU General Public License for more details.
 
17
 
18
#  You should have received a copy of the GNU General Public License
 
19
#  along with this program; if not, write to the Free Software
 
20
#  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
21
 
 
22
DISTCLEANFILES+= \
 
23
                 drizzled/execute/parser.output \
 
24
                 drizzled/execute/parser.cc \
 
25
                 drizzled/execute/parser.h \
 
26
                 drizzled/execute/scanner.cc \
 
27
                 drizzled/execute/scanner.h
 
28
 
 
29
noinst_HEADERS+= \
 
30
                 drizzled/execute/context.h \
 
31
                 drizzled/execute/parser.h \
 
32
                 drizzled/execute/scanner.h \
 
33
                 drizzled/execute/symbol.h
 
34
 
 
35
 
 
36
drizzled_drizzled_SOURCES+= \
 
37
                           drizzled/execute/parser.cc \
 
38
                           drizzled/execute/scanner.cc
 
39
 
 
40
EXTRA_DIST+= \
 
41
      drizzled/execute/parser.yy\
 
42
      drizzled/execute/scanner.l
 
43
 
 
44
BUILT_SOURCES+= \
 
45
      drizzled/execute/scanner.cc\
 
46
      drizzled/execute/parser.h\
 
47
      drizzled/execute/parser.cc
 
48
           
 
49
drizzled/execute/parser.h: drizzled/execute/parser.cc
 
50
 
 
51
drizzled/execute/parser.cc: drizzled/execute/parser.yy drizzled/execute/scanner.l drizzled/execute/scanner.h
 
52
          $(AM_V_YACC)$(am__skipyacc) $(YACC) $(YLFLAGS) $(AM_YFLAGS) -o $@ $<
 
53
 
 
54
drizzled/execute/scanner.h: drizzled/execute/scanner.cc
 
55
 
 
56
drizzled/execute/scanner.cc: drizzled/execute/scanner.l drizzled/execute/parser.yy
 
57
          $(AM_V_GEN)$(LEX) $<