~ubuntu-branches/ubuntu/vivid/indicator-application/vivid-proposed

« back to all changes in this revision

Viewing changes to tests/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Ken VanDine, Ted Gould, Ken VanDine
  • Date: 2011-06-22 13:07:06 UTC
  • mfrom: (1.1.34 upstream)
  • Revision ID: james.westby@ubuntu.com-20110622130706-0yungcdx6prnhj5v
Tags: 0.3.90-0ubuntu1
[ Ted Gould ]
* New upstream release.
  * GTK3 Port

[ Ken VanDine ]
* debian/control
  - Bumped standards version to 3.9.2
  - Add new binary for indicator-application-gtk2 
  - Make indicator-application recommend indicator-application-gtk2 (until 
    unity can load gtk3 indicators)
  - indicator-application-gtk2 replaces indicator-application << 0.2.90
  - Added build depends for libdbusmenu-gtk3-dev, libindicator3-dev 
    and libappindicator3-dev
* debian/rules
  - build for both gtk2 and gtk3

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
subdir = tests
38
38
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
39
39
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
40
 
am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
41
 
        $(top_srcdir)/configure.ac
 
40
am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
 
41
        $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
 
42
        $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
 
43
        $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac
42
44
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
43
45
        $(ACLOCAL_M4)
44
46
mkinstalldirs = $(install_sh) -d
94
96
ACLOCAL = @ACLOCAL@
95
97
AMTAR = @AMTAR@
96
98
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
97
 
APP_INDICATOR_INCLUDE = @APP_INDICATOR_INCLUDE@
 
99
APPINDICATOR_CFLAGS = @APPINDICATOR_CFLAGS@
 
100
APPINDICATOR_LIBS = @APPINDICATOR_LIBS@
98
101
AR = @AR@
99
102
AUTOCONF = @AUTOCONF@
100
103
AUTOHEADER = @AUTOHEADER@
109
112
DBUSSERVICEDIR = @DBUSSERVICEDIR@
110
113
DEFS = @DEFS@
111
114
DEPDIR = @DEPDIR@
 
115
DLLTOOL = @DLLTOOL@
112
116
DSYMUTIL = @DSYMUTIL@
113
117
DUMPBIN = @DUMPBIN@
114
118
ECHO_C = @ECHO_C@
139
143
LTLIBOBJS = @LTLIBOBJS@
140
144
MAINT = @MAINT@
141
145
MAKEINFO = @MAKEINFO@
 
146
MANIFEST_TOOL = @MANIFEST_TOOL@
142
147
MKDIR_P = @MKDIR_P@
143
148
NM = @NM@
144
149
NMEDIT = @NMEDIT@
162
167
SET_MAKE = @SET_MAKE@
163
168
SHELL = @SHELL@
164
169
STRIP = @STRIP@
165
 
TEST_CFLAGS = @TEST_CFLAGS@
166
 
TEST_LIBS = @TEST_LIBS@
167
170
VERSION = @VERSION@
168
171
abs_builddir = @abs_builddir@
169
172
abs_srcdir = @abs_srcdir@
170
173
abs_top_builddir = @abs_top_builddir@
171
174
abs_top_srcdir = @abs_top_srcdir@
 
175
ac_ct_AR = @ac_ct_AR@
172
176
ac_ct_CC = @ac_ct_CC@
173
177
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
174
178
am__include = @am__include@
201
205
libexecdir = @libexecdir@
202
206
localedir = @localedir@
203
207
localstatedir = @localstatedir@
204
 
lt_ECHO = @lt_ECHO@
205
208
mandir = @mandir@
206
209
mkdir_p = @mkdir_p@
207
210
oldincludedir = @oldincludedir@
230
233
 
231
234
test_approver_CFLAGS = \
232
235
        $(INDICATOR_CFLAGS) \
233
 
        $(TEST_CFLAGS) \
 
236
        $(APPINDICATOR_CFLAGS) \
234
237
        -Wall -Werror \
235
238
        -I$(top_srcdir)/src \
236
239
        -I$(top_builddir)/src
237
240
 
238
241
test_approver_LDADD = \
239
242
        $(INDICATOR_LIBS) \
240
 
        $(TEST_LIBS)
 
243
        $(APPINDICATOR_LIBS)
241
244
 
242
245
all: all-am
243
246