~ubuntu-branches/ubuntu/maverick/indicator-applet/maverick

« back to all changes in this revision

Viewing changes to src/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Ted Gould
  • Date: 2010-01-08 08:53:18 UTC
  • mto: This revision was merged to the branch mainline in revision 20.
  • Revision ID: james.westby@ubuntu.com-20100108085318-sloka5g4ai091fks
Tags: upstream-0.3.1
ImportĀ upstreamĀ versionĀ 0.3.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
POST_UNINSTALL = :
35
35
build_triplet = @build@
36
36
host_triplet = @host@
37
 
libexec_PROGRAMS = indicator-applet$(EXEEXT)
 
37
libexec_PROGRAMS = indicator-applet$(EXEEXT) \
 
38
        indicator-applet-session$(EXEEXT) \
 
39
        indicator-applet-complete$(EXEEXT)
38
40
subdir = src
39
41
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
40
42
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
61
63
        $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
62
64
        $(indicator_applet_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \
63
65
        -o $@
 
66
am_indicator_applet_complete_OBJECTS =  \
 
67
        indicator_applet_complete-applet-main.$(OBJEXT)
 
68
indicator_applet_complete_OBJECTS =  \
 
69
        $(am_indicator_applet_complete_OBJECTS)
 
70
indicator_applet_complete_DEPENDENCIES = $(am__DEPENDENCIES_1)
 
71
indicator_applet_complete_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
 
72
        $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
 
73
        $(indicator_applet_complete_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
 
74
        $(LDFLAGS) -o $@
 
75
am_indicator_applet_session_OBJECTS =  \
 
76
        indicator_applet_session-applet-main.$(OBJEXT)
 
77
indicator_applet_session_OBJECTS =  \
 
78
        $(am_indicator_applet_session_OBJECTS)
 
79
indicator_applet_session_DEPENDENCIES = $(am__DEPENDENCIES_1)
 
80
indicator_applet_session_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
 
81
        $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
 
82
        $(indicator_applet_session_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
 
83
        $(LDFLAGS) -o $@
64
84
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
65
85
depcomp = $(SHELL) $(top_srcdir)/depcomp
66
86
am__depfiles_maybe = depfiles
87
107
AM_V_GEN = $(am__v_GEN_$(V))
88
108
am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
89
109
am__v_GEN_0 = @echo "  GEN   " $@;
90
 
SOURCES = $(indicator_applet_SOURCES)
91
 
DIST_SOURCES = $(indicator_applet_SOURCES)
 
110
SOURCES = $(indicator_applet_SOURCES) \
 
111
        $(indicator_applet_complete_SOURCES) \
 
112
        $(indicator_applet_session_SOURCES)
 
113
DIST_SOURCES = $(indicator_applet_SOURCES) \
 
114
        $(indicator_applet_complete_SOURCES) \
 
115
        $(indicator_applet_session_SOURCES)
92
116
ETAGS = etags
93
117
CTAGS = ctags
94
118
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
246
270
        -DDATADIR=\""$(datadir)"\" \
247
271
        -DINDICATOR_DIR=\""$(INDICATORDIR)"\" \
248
272
        -DINDICATOR_ICONS_DIR=\""$(INDICATORICONSDIR)"\" \
 
273
        -DINDICATOR_APPLET \
249
274
        -I$(srcdir)/.. \
250
275
        $(APPLET_CFLAGS)
251
276
 
255
280
indicator_applet_LDADD = \
256
281
        $(APPLET_LIBS)
257
282
 
 
283
indicator_applet_session_CFLAGS = \
 
284
        -DG_LOG_DOMAIN=\""Indicator-Applet-Session"\" \
 
285
        -DDATADIR=\""$(datadir)"\" \
 
286
        -DINDICATOR_DIR=\""$(INDICATORDIR)"\" \
 
287
        -DINDICATOR_ICONS_DIR=\""$(INDICATORICONSDIR)"\" \
 
288
        -DINDICATOR_APPLET_SESSION \
 
289
        -I$(srcdir)/.. \
 
290
        $(APPLET_CFLAGS)
 
291
 
 
292
indicator_applet_session_SOURCES = \
 
293
        applet-main.c
 
294
 
 
295
indicator_applet_session_LDADD = \
 
296
        $(APPLET_LIBS)
 
297
 
 
298
indicator_applet_complete_CFLAGS = \
 
299
        -DG_LOG_DOMAIN=\""Indicator-Applet-Complete"\" \
 
300
        -DDATADIR=\""$(datadir)"\" \
 
301
        -DINDICATOR_DIR=\""$(INDICATORDIR)"\" \
 
302
        -DINDICATOR_ICONS_DIR=\""$(INDICATORICONSDIR)"\" \
 
303
        -DINDICATOR_APPLET_COMPLETE \
 
304
        -I$(srcdir)/.. \
 
305
        $(APPLET_CFLAGS)
 
306
 
 
307
indicator_applet_complete_SOURCES = \
 
308
        applet-main.c
 
309
 
 
310
indicator_applet_complete_LDADD = \
 
311
        $(APPLET_LIBS)
 
312
 
258
313
all: all-am
259
314
 
260
315
.SUFFIXES:
335
390
indicator-applet$(EXEEXT): $(indicator_applet_OBJECTS) $(indicator_applet_DEPENDENCIES) 
336
391
        @rm -f indicator-applet$(EXEEXT)
337
392
        $(AM_V_CCLD)$(indicator_applet_LINK) $(indicator_applet_OBJECTS) $(indicator_applet_LDADD) $(LIBS)
 
393
indicator-applet-complete$(EXEEXT): $(indicator_applet_complete_OBJECTS) $(indicator_applet_complete_DEPENDENCIES) 
 
394
        @rm -f indicator-applet-complete$(EXEEXT)
 
395
        $(AM_V_CCLD)$(indicator_applet_complete_LINK) $(indicator_applet_complete_OBJECTS) $(indicator_applet_complete_LDADD) $(LIBS)
 
396
indicator-applet-session$(EXEEXT): $(indicator_applet_session_OBJECTS) $(indicator_applet_session_DEPENDENCIES) 
 
397
        @rm -f indicator-applet-session$(EXEEXT)
 
398
        $(AM_V_CCLD)$(indicator_applet_session_LINK) $(indicator_applet_session_OBJECTS) $(indicator_applet_session_LDADD) $(LIBS)
338
399
 
339
400
mostlyclean-compile:
340
401
        -rm -f *.$(OBJEXT)
343
404
        -rm -f *.tab.c
344
405
 
345
406
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/indicator_applet-applet-main.Po@am__quote@
 
407
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/indicator_applet_complete-applet-main.Po@am__quote@
 
408
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/indicator_applet_session-applet-main.Po@am__quote@
346
409
 
347
410
.c.o:
348
411
@am__fastdepCC_TRUE@    $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
384
447
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
385
448
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(indicator_applet_CFLAGS) $(CFLAGS) -c -o indicator_applet-applet-main.obj `if test -f 'applet-main.c'; then $(CYGPATH_W) 'applet-main.c'; else $(CYGPATH_W) '$(srcdir)/applet-main.c'; fi`
386
449
 
 
450
indicator_applet_complete-applet-main.o: applet-main.c
 
451
@am__fastdepCC_TRUE@    $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(indicator_applet_complete_CFLAGS) $(CFLAGS) -MT indicator_applet_complete-applet-main.o -MD -MP -MF $(DEPDIR)/indicator_applet_complete-applet-main.Tpo -c -o indicator_applet_complete-applet-main.o `test -f 'applet-main.c' || echo '$(srcdir)/'`applet-main.c
 
452
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/indicator_applet_complete-applet-main.Tpo $(DEPDIR)/indicator_applet_complete-applet-main.Po
 
453
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
454
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='applet-main.c' object='indicator_applet_complete-applet-main.o' libtool=no @AMDEPBACKSLASH@
 
455
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
456
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(indicator_applet_complete_CFLAGS) $(CFLAGS) -c -o indicator_applet_complete-applet-main.o `test -f 'applet-main.c' || echo '$(srcdir)/'`applet-main.c
 
457
 
 
458
indicator_applet_complete-applet-main.obj: applet-main.c
 
459
@am__fastdepCC_TRUE@    $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(indicator_applet_complete_CFLAGS) $(CFLAGS) -MT indicator_applet_complete-applet-main.obj -MD -MP -MF $(DEPDIR)/indicator_applet_complete-applet-main.Tpo -c -o indicator_applet_complete-applet-main.obj `if test -f 'applet-main.c'; then $(CYGPATH_W) 'applet-main.c'; else $(CYGPATH_W) '$(srcdir)/applet-main.c'; fi`
 
460
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/indicator_applet_complete-applet-main.Tpo $(DEPDIR)/indicator_applet_complete-applet-main.Po
 
461
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
462
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='applet-main.c' object='indicator_applet_complete-applet-main.obj' libtool=no @AMDEPBACKSLASH@
 
463
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
464
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(indicator_applet_complete_CFLAGS) $(CFLAGS) -c -o indicator_applet_complete-applet-main.obj `if test -f 'applet-main.c'; then $(CYGPATH_W) 'applet-main.c'; else $(CYGPATH_W) '$(srcdir)/applet-main.c'; fi`
 
465
 
 
466
indicator_applet_session-applet-main.o: applet-main.c
 
467
@am__fastdepCC_TRUE@    $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(indicator_applet_session_CFLAGS) $(CFLAGS) -MT indicator_applet_session-applet-main.o -MD -MP -MF $(DEPDIR)/indicator_applet_session-applet-main.Tpo -c -o indicator_applet_session-applet-main.o `test -f 'applet-main.c' || echo '$(srcdir)/'`applet-main.c
 
468
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/indicator_applet_session-applet-main.Tpo $(DEPDIR)/indicator_applet_session-applet-main.Po
 
469
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
470
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='applet-main.c' object='indicator_applet_session-applet-main.o' libtool=no @AMDEPBACKSLASH@
 
471
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
472
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(indicator_applet_session_CFLAGS) $(CFLAGS) -c -o indicator_applet_session-applet-main.o `test -f 'applet-main.c' || echo '$(srcdir)/'`applet-main.c
 
473
 
 
474
indicator_applet_session-applet-main.obj: applet-main.c
 
475
@am__fastdepCC_TRUE@    $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(indicator_applet_session_CFLAGS) $(CFLAGS) -MT indicator_applet_session-applet-main.obj -MD -MP -MF $(DEPDIR)/indicator_applet_session-applet-main.Tpo -c -o indicator_applet_session-applet-main.obj `if test -f 'applet-main.c'; then $(CYGPATH_W) 'applet-main.c'; else $(CYGPATH_W) '$(srcdir)/applet-main.c'; fi`
 
476
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/indicator_applet_session-applet-main.Tpo $(DEPDIR)/indicator_applet_session-applet-main.Po
 
477
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
478
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='applet-main.c' object='indicator_applet_session-applet-main.obj' libtool=no @AMDEPBACKSLASH@
 
479
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
480
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(indicator_applet_session_CFLAGS) $(CFLAGS) -c -o indicator_applet_session-applet-main.obj `if test -f 'applet-main.c'; then $(CYGPATH_W) 'applet-main.c'; else $(CYGPATH_W) '$(srcdir)/applet-main.c'; fi`
 
481
 
387
482
mostlyclean-libtool:
388
483
        -rm -f *.lo
389
484