~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to Makefile.am

  • Committer: Brian Aker
  • Date: 2009-09-26 04:00:11 UTC
  • mfrom: (1126.12.1 trunk-nodebug)
  • Revision ID: brian@gaz-20090926040011-2qzxdcbpm1ibpkhl
Merge Lee

Show diffs side-by-side

added added

removed removed

Lines of Context:
286
286
          mv $@-t $@ ; \
287
287
        fi
288
288
 
289
 
if HAVE_LCOV
290
 
 
291
 
lcov: lcov-clean test lcov/index.html
292
 
 
293
 
lcov/drizzle.output: drizzled/drizzled
294
 
        mkdir -p lcov
295
 
        ${LCOV} --directory ${top_srcdir}/lcov --capture --output-file lcov/drizzle.output
296
 
 
297
 
lcov/index.html: lcov/drizzle.output
298
 
        ${GENHTML} -o lcov lcov/drizzle.output
299
 
 
300
 
lcov-clean:
301
 
        ln -fs pars/pars0lex.l ${top_srcdir}/storage/innobase/pars0lex.l
302
 
        ln -fs pars/lexyy.c ${top_srcdir}/storage/innobase/lexyy.c
303
 
        ln -fs pars/pars0grm.c ${top_srcdir}/storage/innobase/pars0grm.c
304
 
        ln -fs pars/pars0grm.y ${top_srcdir}/storage/innobase/pars0grm.y
305
 
 
306
 
        ${LCOV} --directory ${top_srcdir} --zerocounters
307
 
 
308
 
endif
 
289
clean-local:
 
290
        find . -name '*.gcno'  -exec rm -f {} \;
 
291