~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to Makefile.am

  • Committer: Monty Taylor
  • Date: 2009-01-19 22:13:18 UTC
  • mto: (801.1.3 testable) (779.3.2 devel)
  • mto: This revision was merged to the branch mainline in revision 799.
  • Revision ID: mordred@inaugust.com-20090119221318-7oy986cg6y7qhkbo
Added lcov commands.

Show diffs side-by-side

added added

removed removed

Lines of Context:
152
152
          mv $@-t $@ ; \
153
153
        fi
154
154
 
 
155
lcov: lcov-clean test index.html
 
156
 
 
157
drizzle.output:
 
158
        lcov --directory ${top_srcdir} --capture --output-file drizzle.output
 
159
 
 
160
index.html: drizzle.output
 
161
        genhtml drizzle.output
 
162
 
 
163
lcov-clean:
 
164
        ln -fs pars/pars0lex.l ${top_srcdir}/storage/innobase/pars0lex.l
 
165
        ln -fs pars/lexyy.c ${top_srcdir}/storage/innobase/lexyy.c
 
166
        ln -fs pars/pars0grm.c ${top_srcdir}/storage/innobase/pars0grm.c
 
167
        ln -fs pars/pars0grm.y ${top_srcdir}/storage/innobase/pars0grm.y
 
168
 
 
169
        lcov --directory ${top_srcdir} --zerocounters
 
170