~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to Makefile.am

  • Committer: Brian Aker
  • Date: 2009-01-25 02:52:05 UTC
  • mfrom: (801.1.4 testable)
  • Revision ID: brian@gir.tangent.org-20090125025205-zlahg6u6z0w95v64
Merge from Myself

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2000-2006 MySQL AB
 
1
# test
 
2
# # Copyright (C) 2000-2006 MySQL AB
2
3
3
4
# This program is free software; you can redistribute it and/or modify
4
5
# it under the terms of the GNU General Public License as published by
152
153
          mv $@-t $@ ; \
153
154
        fi
154
155
 
 
156
if HAVE_LCOV
 
157
 
155
158
lcov: lcov-clean test index.html
156
159
 
157
 
drizzle.output:
158
 
        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
159
163
 
160
 
index.html: drizzle.output
161
 
        genhtml drizzle.output
 
164
lcov/index.html: lcov/drizzle.output
 
165
        ${GENHTML} -o lcov lcov/drizzle.output
162
166
 
163
167
lcov-clean:
164
168
        ln -fs pars/pars0lex.l ${top_srcdir}/storage/innobase/pars0lex.l
166
170
        ln -fs pars/pars0grm.c ${top_srcdir}/storage/innobase/pars0grm.c
167
171
        ln -fs pars/pars0grm.y ${top_srcdir}/storage/innobase/pars0grm.y
168
172
 
169
 
        lcov --directory ${top_srcdir} --zerocounters
 
173
        ${LCOV} --directory ${top_srcdir} --zerocounters
170
174
 
 
175
endif