~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to Makefile.am

MergedĀ up.

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
 
16
16
ACLOCAL_AMFLAGS = -I m4 --force
17
17
 
 
18
# includes append to these:
 
19
SUFFIXES =
 
20
TESTS = 
 
21
check_PROGRAMS =
 
22
noinst_HEADERS =
 
23
noinst_LTLIBRARIES =
 
24
noinst_PROGRAMS =
 
25
 
18
26
# Process this file with automake to create Makefile.in
19
27
if BUILD_GETTEXT
20
28
  po=po
24
32
 
25
33
SUBDIRS = ${po} \
26
34
          gnulib \
27
 
          drizzled/hash \
28
 
          drizzled/util \
29
 
          drizzled/message \
30
 
          . \
31
 
          drizzled \
32
 
          tests \
33
 
          support-files
 
35
          .
34
36
 
35
37
BUILT_SOURCES=          drizzled/configmake.h
36
38
EXTRA_DIST=             config/config.rpath m4/gnulib-cache.m4 \
54
56
                        $(LIBDRIZZLE) $(LIBINTL) $(LIBZ) \
55
57
                        client/libgetpassword.la
56
58
 
57
 
noinst_LTLIBRARIES= \
 
59
noinst_LTLIBRARIES+= \
58
60
                client/libgetpassword.la \
59
61
                mysys/libmysys.la \
60
62
                mystrings/libmystrings.la
61
63
 
62
 
noinst_PROGRAMS=\
 
64
noinst_PROGRAMS+=\
63
65
                client/drizzletest \
64
66
                extra/my_print_defaults
65
67
 
78
80
 
79
81
client_libgetpassword_la_SOURCES= client/get_password.cc
80
82
 
81
 
noinst_HEADERS= \
 
83
noinst_HEADERS+=        \
82
84
                client/client_priv.h \
83
85
                client/errname.h \
84
86
                client/get_password.h \
210
212
 
211
213
.PHONY: \
212
214
        indent \
213
 
        linted \
214
215
        test
215
216
 
216
217
 
224
225
 
225
226
test: test-drizzle
226
227
 
227
 
test-all:
228
 
        cd tests ; \
229
 
        $(MAKE) $(AM_MAKEFLAGS) test-all
230
 
 
231
 
test-drizzle:
232
 
        cd tests ; \
233
 
        $(MAKE) $(AM_MAKEFLAGS) test-drizzle
234
 
 
235
 
test-junitxml:
236
 
        cd tests ; \
237
 
        $(MAKE) $(AM_MAKEFLAGS) test-junitxml
238
 
 
239
 
test-big:
240
 
        cd tests ; \
241
 
        $(MAKE) $(AM_MAKEFLAGS) test-big
242
 
 
243
 
test-big-junitxml:
244
 
        cd tests ; \
245
 
        $(MAKE) $(AM_MAKEFLAGS) test-big-junitxml
246
 
 
247
228
doxygen:
248
229
        doxygen Doxyfile
249
230
 
300
281
clean-local:
301
282
        find . -name '*.gcno' | xargs rm -f 
302
283
 
303
 
 
304
284
include config/lint-source.am
 
285
 
 
286
include drizzled/include.am
 
287
include drizzled/hash/include.am
 
288
include drizzled/util/include.am
 
289
include drizzled/message/include.am
 
290
include support-files/include.am
 
291
include tests/include.am