~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to Makefile.am

Merged from Toru - removal of my_time_t.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# test
2
 
# # Copyright (C) 2000-2006 MySQL AB
 
1
# Copyright (C) 2000-2006 MySQL AB
3
2
4
3
# This program is free software; you can redistribute it and/or modify
5
4
# it under the terms of the GNU General Public License as published by
14
13
# along with this program; if not, write to the Free Software
15
14
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
15
 
17
 
ACLOCAL_AMFLAGS = -I m4 --force
 
16
ACLOCAL_AMFLAGS = -I m4
 
17
CONFIGURE_DEPENDENCIES= ${drizzle_plugin_files}
18
18
 
19
19
# Process this file with automake to create Makefile.in
20
20
if BUILD_GETTEXT
22
22
endif
23
23
 
24
24
SUBDIRS = ${po} . \
25
 
          gnulib \
26
25
          mystrings \
27
26
          mysys \
28
27
          extra \
29
 
          libdrizzleclient \
 
28
          libdrizzle \
30
29
          client \
31
30
          drizzled/serialize \
32
31
          storage \
35
34
          tests \
36
35
          support-files
37
36
 
38
 
EXTRA_DIST = config/config.rpath m4/gnulib-cache.m4
 
37
EXTRA_DIST = config/config.rpath
39
38
CLEANFILES = drizzled/configmake.h
40
 
DISTCLEANFILES = ac_available_languages_fragment po/POTFILES.in
 
39
DISTCLEANFILES = ac_available_languages_fragment
41
40
MAINTAINERCLEANFILES = autom4te.cache
42
41
 
43
42
BUILT_SOURCES = drizzled/configmake.h
154
153
          mv $@-t $@ ; \
155
154
        fi
156
155
 
157
 
if HAVE_LCOV
158
 
 
159
 
lcov: lcov-clean test lcov/index.html
160
 
 
161
 
lcov/drizzle.output: drizzled/drizzled
162
 
        mkdir -p lcov
163
 
        ${LCOV} --directory ${top_srcdir}/lcov --capture --output-file lcov/drizzle.output
164
 
 
165
 
lcov/index.html: lcov/drizzle.output
166
 
        ${GENHTML} -o lcov lcov/drizzle.output
167
 
 
168
 
lcov-clean:
169
 
        ln -fs pars/pars0lex.l ${top_srcdir}/storage/innobase/pars0lex.l
170
 
        ln -fs pars/lexyy.c ${top_srcdir}/storage/innobase/lexyy.c
171
 
        ln -fs pars/pars0grm.c ${top_srcdir}/storage/innobase/pars0grm.c
172
 
        ln -fs pars/pars0grm.y ${top_srcdir}/storage/innobase/pars0grm.y
173
 
 
174
 
        ${LCOV} --directory ${top_srcdir} --zerocounters
175
 
 
176
 
endif