~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to Makefile.am

  • Committer: Monty Taylor
  • Date: 2008-12-07 04:48:36 UTC
  • mto: This revision was merged to the branch mainline in revision 670.
  • Revision ID: monty@inaugust.com-20081207044836-l3thv8etysrl4o1c
Added indent rule and uncrustify config. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
70
70
    test-fast \
71
71
    test-fast-cursor \
72
72
    test-fast-view \
73
 
    test-full-qa
 
73
    test-full-qa \
 
74
    indent
74
75
 
75
76
# Target 'test' will run the regression test suite using the built server.
76
77
#
100
101
 
101
102
doxygen:
102
103
        doxygen Doxyfile
 
104
 
 
105
indent:
 
106
        for f in `find ${top_srcdir} -type f | grep -v innobase |\
 
107
                  ${EGREP} '\.(cc|c|h)$$' ` ; do \
 
108
            uncrustify -f $$f -c ${top_srcdir}/config/uncrustify.cfg \
 
109
               -o indentoutput.tmp && mv indentoutput.tmp "$$f" ;\
 
110
        done