~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/Makefile.am

  • Committer: Brian Aker
  • Date: 2008-07-27 21:07:26 UTC
  • Revision ID: brian@tangent.org-20080727210726-zxwx10dy0w55qswh
Rename of fields (fix issue with string and decimal .h clashing).

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
 
16
16
#called from the top level Makefile
17
17
 
18
 
AM_CPPFLAGS =           ${GLOBAL_CPPFLAGS} -I$(top_srcdir)/server
 
18
AM_CPPFLAGS =   -I$(top_srcdir)/strings \
 
19
                -I$(top_srcdir)/drizzled \
 
20
                -I$(top_srcdir)/include \
 
21
                -I$(top_srcdir)
19
22
 
20
23
noinst_LTLIBRARIES =    libfield.la
21
24
 
22
25
libfield_la_SOURCES =   blob.cc \
23
26
                        date.cc \
24
27
                        datetime.cc \
25
 
                        decimal.cc \
 
28
                        fdecimal.cc \
26
29
                        double.cc \
27
30
                        int64_t.cc \
28
31
                        long.cc \
29
32
                        null.cc \
30
33
                        set.cc \
31
34
                        short.cc \
32
 
                        string.cc \
 
35
                        fstring.cc \
33
36
                        timestamp.cc \
34
37
                        timetype.cc \
35
38
                        varstring.cc \
36
39
                        year.cc
 
40
 
 
41
noinst_HEADERS = blob.h \
 
42
                 date.h \
 
43
                 datetime.h \
 
44
                 fdecimal.h \
 
45
                 double.h \
 
46
                 int64_t.h \
 
47
                 long.h \
 
48
                 null.h \
 
49
                 set.h \
 
50
                 short.h \
 
51
                 fstring.h \
 
52
                 timestamp.h \
 
53
                 timetype.h \
 
54
                 varstring.h \
 
55
                 year.h
37
56
        
38
57
 
39
58
DEFS= -DMYSQL_SERVER @DEFS@