~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to Makefile.am

  • Committer: Monty Taylor
  • Date: 2010-08-12 20:27:32 UTC
  • mto: (1720.1.5 build)
  • mto: This revision was merged to the branch mainline in revision 1722.
  • Revision ID: mordred@inaugust.com-20100812202732-9kzchbkvkyki4n3u
Merged libdrizzle directly into tree.

Show diffs side-by-side

added added

removed removed

Lines of Context:
74
74
 
75
75
 
76
76
doxygen:
77
 
        doxygen Doxyfile
 
77
        ${DOXYGEN} docs/Doxyfile.api
 
78
        ${DOXYGEN} docs/Doxyfile.dev
 
79
        ${DOXYGEN} docs/Doxyfile.drizzled
78
80
 
79
81
indent:
80
82
        for f in `find ${top_srcdir} -type f | grep -v innobase |\
128
130
 
129
131
clean-local:
130
132
        find . -name '*.gcno' | xargs rm -f 
 
133
        -rm -rf docs/api docs/dev
131
134
 
132
135
distclean-local:
133
136
        rm -r -f unittests/.libs
144
147
include support-files/include.am
145
148
include tests/include.am
146
149
include unittests/include.am
 
150
include libdrizzle/include.am
147
151
 
148
152
TESTS += ${check_PROGRAMS}
149
153