~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to Makefile.am

  • Committer: Lee Bieber
  • Date: 2009-09-02 21:42:21 UTC
  • mto: This revision was merged to the branch mainline in revision 1137.
  • Revision ID: lbieber@lee-biebers-macbook-pro.local-20090902214221-fvq9muypl58oxz8d
add clean-local target to remove lcov .gcno files.  Also remove if HAVE_LCOV section from Makefile.am and lcov checks from configure.ac as they are not used nor needed

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