~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to Makefile.am

  • Committer: Brian Aker
  • Date: 2008-12-19 22:44:25 UTC
  • mto: (642.1.43 drizzle-clean-code)
  • mto: This revision was merged to the branch mainline in revision 726.
  • Revision ID: brian@gir.tangent.org-20081219224425-dyfp85hppystsxqy
Adding in missing flush results.

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
15
15
 
16
16
ACLOCAL_AMFLAGS = -I m4
 
17
CONFIGURE_DEPENDENCIES= ${drizzle_plugin_files}
17
18
 
18
19
# Process this file with automake to create Makefile.in
19
20
if BUILD_GETTEXT
26
27
          extra \
27
28
          libdrizzle \
28
29
          client \
 
30
          drizzled/serialize \
29
31
          storage \
30
32
          plugin \
31
33
          drizzled \
34
36
 
35
37
EXTRA_DIST = config/config.rpath
36
38
DISTCLEANFILES = ac_available_languages_fragment
 
39
MAINTAINERCLEANFILES = autom4te.cache
37
40
 
38
41
# Create empty datadir 
39
42
install-data-local:
40
43
        $(mkinstalldirs) $(DESTDIR)$(localstatedir) 
41
44
        @if test `id -u` = 0 ; then \
42
 
                groupadd $(DRIZZLED_USER) ;\
43
 
                useradd -g $(DRIZZLED_USER) $(DRIZZLED_USER) ;\
44
 
                chown $(DRIZZLED_USER) $(DESTDIR)$(localstatedir) ;\
 
45
                if test -n "$(GROUPADD)" && test -n "$(USERADD)"; then \
 
46
                        $(GROUPADD) $(DRIZZLED_USER) ;\
 
47
                        $(USERADD) -g $(DRIZZLED_USER) $(DRIZZLED_USER) ;\
 
48
                        chown $(DRIZZLED_USER) $(DESTDIR)$(localstatedir) ;\
 
49
                fi \
45
50
        fi
46
51
 
47
 
distclean-local:
48
 
        @RM@ -r -f autom4te.cache
49
52
 
50
53
.PHONY: test \
51
54
    test-force \
68
71
    test-fast \
69
72
    test-fast-cursor \
70
73
    test-fast-view \
71
 
    test-full-qa
 
74
    test-full-qa \
 
75
    indent
72
76
 
73
77
# Target 'test' will run the regression test suite using the built server.
74
78
#
98
102
 
99
103
doxygen:
100
104
        doxygen Doxyfile
 
105
 
 
106
indent:
 
107
        for f in `find ${top_srcdir} -type f | grep -v innobase |\
 
108
                  ${EGREP} '\.(cc|c|h)$$' ` ; do \
 
109
            uncrustify -f $$f -c ${top_srcdir}/config/uncrustify.cfg \
 
110
               -o indentoutput.tmp && mv indentoutput.tmp "$$f" ;\
 
111
        done