~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to Makefile.am

  • Committer: Monty Taylor
  • Date: 2009-01-22 06:10:39 UTC
  • mto: (801.1.3 testable) (779.3.2 devel)
  • mto: This revision was merged to the branch mainline in revision 811.
  • Revision ID: mordred@inaugust.com-20090122061039-vf4v6nt7ijg5sk7a
Put in LCOV checks. Put output in subdir.

Show diffs side-by-side

added added

removed removed

Lines of Context:
153
153
          mv $@-t $@ ; \
154
154
        fi
155
155
 
 
156
if HAVE_LCOV
 
157
 
156
158
lcov: lcov-clean test index.html
157
159
 
158
 
drizzle.output:
159
 
        lcov --directory ${top_srcdir} --capture --output-file drizzle.output
 
160
lcov/drizzle.output: drizzled/drizzled
 
161
        mkdir -p lcov
 
162
        ${LCOV} --directory ${top_srcdir}/lcov --capture --output-file lcov/drizzle.output
160
163
 
161
 
index.html: drizzle.output
162
 
        genhtml drizzle.output
 
164
lcov/index.html: lcov/drizzle.output
 
165
        ${GENHTML} -o lcov lcov/drizzle.output
163
166
 
164
167
lcov-clean:
165
168
        ln -fs pars/pars0lex.l ${top_srcdir}/storage/innobase/pars0lex.l
167
170
        ln -fs pars/pars0grm.c ${top_srcdir}/storage/innobase/pars0grm.c
168
171
        ln -fs pars/pars0grm.y ${top_srcdir}/storage/innobase/pars0grm.y
169
172
 
170
 
        lcov --directory ${top_srcdir} --zerocounters
 
173
        ${LCOV} --directory ${top_srcdir} --zerocounters
171
174
 
 
175
endif