~ubuntu-branches/ubuntu/oneiric/libgnome-keyring/oneiric-201109060911

« back to all changes in this revision

Viewing changes to library/tests/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Chris Coulson
  • Date: 2011-07-26 16:03:34 UTC
  • mfrom: (0.4.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20110726160334-45mez54v7wlonkyy
Tags: 3.1.4-0ubuntu1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
# PARTICULAR PURPOSE.
15
15
 
16
16
@SET_MAKE@
 
17
 
17
18
VPATH = @srcdir@
18
19
pkgdatadir = $(datadir)/@PACKAGE@
19
20
pkgincludedir = $(includedir)/@PACKAGE@
34
35
build_triplet = @build@
35
36
host_triplet = @host@
36
37
check_PROGRAMS = test-prompting$(EXEEXT) $(am__EXEEXT_1)
 
38
noinst_PROGRAMS = frob-any-daemon$(EXEEXT) \
 
39
        frob-unlock-keyring$(EXEEXT)
37
40
subdir = library/tests
38
41
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
39
42
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
45
48
CONFIG_CLEAN_FILES =
46
49
CONFIG_CLEAN_VPATH_FILES =
47
50
am__EXEEXT_1 = test-memory$(EXEEXT) test-keyrings$(EXEEXT) \
48
 
        test-other$(EXEEXT) test-any-daemon$(EXEEXT)
49
 
test_any_daemon_SOURCES = test-any-daemon.c
50
 
test_any_daemon_OBJECTS = test-any-daemon.$(OBJEXT)
51
 
test_any_daemon_LDADD = $(LDADD)
 
51
        test-other$(EXEEXT)
 
52
PROGRAMS = $(noinst_PROGRAMS)
 
53
frob_any_daemon_SOURCES = frob-any-daemon.c
 
54
frob_any_daemon_OBJECTS = frob-any-daemon.$(OBJEXT)
 
55
frob_any_daemon_LDADD = $(LDADD)
52
56
am__DEPENDENCIES_1 =
53
 
test_any_daemon_DEPENDENCIES = $(top_builddir)/egg/libegg.la \
 
57
frob_any_daemon_DEPENDENCIES = $(top_builddir)/egg/libegg.la \
54
58
        $(top_builddir)/library/libgnome-keyring.la \
55
59
        $(am__DEPENDENCIES_1)
56
60
AM_V_lt = $(am__v_lt_$(V))
57
61
am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY))
58
62
am__v_lt_0 = --silent
 
63
frob_unlock_keyring_SOURCES = frob-unlock-keyring.c
 
64
frob_unlock_keyring_OBJECTS = frob-unlock-keyring.$(OBJEXT)
 
65
frob_unlock_keyring_LDADD = $(LDADD)
 
66
frob_unlock_keyring_DEPENDENCIES = $(top_builddir)/egg/libegg.la \
 
67
        $(top_builddir)/library/libgnome-keyring.la \
 
68
        $(am__DEPENDENCIES_1)
59
69
test_keyrings_SOURCES = test-keyrings.c
60
70
test_keyrings_OBJECTS = test-keyrings.$(OBJEXT)
61
71
test_keyrings_LDADD = $(LDADD)
106
116
AM_V_GEN = $(am__v_GEN_$(V))
107
117
am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
108
118
am__v_GEN_0 = @echo "  GEN   " $@;
109
 
SOURCES = test-any-daemon.c test-keyrings.c test-memory.c test-other.c \
110
 
        test-prompting.c
111
 
DIST_SOURCES = test-any-daemon.c test-keyrings.c test-memory.c \
112
 
        test-other.c test-prompting.c
 
119
SOURCES = frob-any-daemon.c frob-unlock-keyring.c test-keyrings.c \
 
120
        test-memory.c test-other.c test-prompting.c
 
121
DIST_SOURCES = frob-any-daemon.c frob-unlock-keyring.c test-keyrings.c \
 
122
        test-memory.c test-other.c test-prompting.c
113
123
ETAGS = etags
114
124
CTAGS = ctags
115
125
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
136
146
DEFS = @DEFS@
137
147
DEPDIR = @DEPDIR@
138
148
DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
 
149
DLLTOOL = @DLLTOOL@
139
150
DSYMUTIL = @DSYMUTIL@
140
151
DUMPBIN = @DUMPBIN@
141
152
ECHO_C = @ECHO_C@
182
193
LTLIBOBJS = @LTLIBOBJS@
183
194
MAINT = @MAINT@
184
195
MAKEINFO = @MAKEINFO@
 
196
MANIFEST_TOOL = @MANIFEST_TOOL@
185
197
MKDIR_P = @MKDIR_P@
186
198
MKINSTALLDIRS = @MKINSTALLDIRS@
187
199
MSGFMT = @MSGFMT@
221
233
abs_srcdir = @abs_srcdir@
222
234
abs_top_builddir = @abs_top_builddir@
223
235
abs_top_srcdir = @abs_top_srcdir@
 
236
ac_ct_AR = @ac_ct_AR@
224
237
ac_ct_CC = @ac_ct_CC@
225
238
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
226
239
am__include = @am__include@
253
266
libexecdir = @libexecdir@
254
267
localedir = @localedir@
255
268
localstatedir = @localstatedir@
256
 
lt_ECHO = @lt_ECHO@
257
269
mandir = @mandir@
258
270
mkdir_p = @mkdir_p@
259
271
oldincludedir = @oldincludedir@
281
293
TEST_PROGS = \
282
294
        test-memory \
283
295
        test-keyrings \
284
 
        test-other \
285
 
        test-any-daemon
 
296
        test-other
286
297
 
287
298
all: all-am
288
299
 
327
338
        list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
328
339
        echo " rm -f" $$list; \
329
340
        rm -f $$list
330
 
test-any-daemon$(EXEEXT): $(test_any_daemon_OBJECTS) $(test_any_daemon_DEPENDENCIES) 
331
 
        @rm -f test-any-daemon$(EXEEXT)
332
 
        $(AM_V_CCLD)$(LINK) $(test_any_daemon_OBJECTS) $(test_any_daemon_LDADD) $(LIBS)
 
341
 
 
342
clean-noinstPROGRAMS:
 
343
        @list='$(noinst_PROGRAMS)'; test -n "$$list" || exit 0; \
 
344
        echo " rm -f" $$list; \
 
345
        rm -f $$list || exit $$?; \
 
346
        test -n "$(EXEEXT)" || exit 0; \
 
347
        list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
 
348
        echo " rm -f" $$list; \
 
349
        rm -f $$list
 
350
frob-any-daemon$(EXEEXT): $(frob_any_daemon_OBJECTS) $(frob_any_daemon_DEPENDENCIES) 
 
351
        @rm -f frob-any-daemon$(EXEEXT)
 
352
        $(AM_V_CCLD)$(LINK) $(frob_any_daemon_OBJECTS) $(frob_any_daemon_LDADD) $(LIBS)
 
353
frob-unlock-keyring$(EXEEXT): $(frob_unlock_keyring_OBJECTS) $(frob_unlock_keyring_DEPENDENCIES) 
 
354
        @rm -f frob-unlock-keyring$(EXEEXT)
 
355
        $(AM_V_CCLD)$(LINK) $(frob_unlock_keyring_OBJECTS) $(frob_unlock_keyring_LDADD) $(LIBS)
333
356
test-keyrings$(EXEEXT): $(test_keyrings_OBJECTS) $(test_keyrings_DEPENDENCIES) 
334
357
        @rm -f test-keyrings$(EXEEXT)
335
358
        $(AM_V_CCLD)$(LINK) $(test_keyrings_OBJECTS) $(test_keyrings_LDADD) $(LIBS)
349
372
distclean-compile:
350
373
        -rm -f *.tab.c
351
374
 
352
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test-any-daemon.Po@am__quote@
 
375
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/frob-any-daemon.Po@am__quote@
 
376
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/frob-unlock-keyring.Po@am__quote@
353
377
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test-keyrings.Po@am__quote@
354
378
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test-memory.Po@am__quote@
355
379
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test-other.Po@am__quote@
471
495
        $(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS)
472
496
        $(MAKE) $(AM_MAKEFLAGS) check-local
473
497
check: check-am
474
 
all-am: Makefile all-local
 
498
all-am: Makefile $(PROGRAMS) all-local
475
499
installdirs:
476
500
install: install-am
477
501
install-exec: install-exec-am
501
525
clean: clean-am
502
526
 
503
527
clean-am: clean-checkPROGRAMS clean-generic clean-libtool \
504
 
        mostlyclean-am
 
528
        clean-noinstPROGRAMS mostlyclean-am
505
529
 
506
530
distclean: distclean-am
507
531
        -rm -rf ./$(DEPDIR)
572
596
.MAKE: check-am install-am install-strip
573
597
 
574
598
.PHONY: CTAGS GTAGS all all-am all-local check check-am check-local \
575
 
        clean clean-checkPROGRAMS clean-generic clean-libtool ctags \
576
 
        distclean distclean-compile distclean-generic \
577
 
        distclean-libtool distclean-tags distdir dvi dvi-am html \
578
 
        html-am info info-am install install-am install-data \
579
 
        install-data-am install-dvi install-dvi-am install-exec \
580
 
        install-exec-am install-html install-html-am install-info \
581
 
        install-info-am install-man install-pdf install-pdf-am \
582
 
        install-ps install-ps-am install-strip installcheck \
583
 
        installcheck-am installdirs maintainer-clean \
 
599
        clean clean-checkPROGRAMS clean-generic clean-libtool \
 
600
        clean-noinstPROGRAMS ctags distclean distclean-compile \
 
601
        distclean-generic distclean-libtool distclean-tags distdir dvi \
 
602
        dvi-am html html-am info info-am install install-am \
 
603
        install-data install-data-am install-dvi install-dvi-am \
 
604
        install-exec install-exec-am install-html install-html-am \
 
605
        install-info install-info-am install-man install-pdf \
 
606
        install-pdf-am install-ps install-ps-am install-strip \
 
607
        installcheck installcheck-am installdirs maintainer-clean \
584
608
        maintainer-clean-generic mostlyclean mostlyclean-compile \
585
609
        mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
586
610
        tags uninstall uninstall-am