~ubuntu-branches/ubuntu/quantal/libgweather/quantal

« back to all changes in this revision

Viewing changes to libgweather/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2011-05-17 15:26:05 UTC
  • mfrom: (1.1.28 upstream) (5.1.9 experimental)
  • Revision ID: james.westby@ubuntu.com-20110517152605-anf9c03d1ny7yn54
Tags: 3.0.0-0ubuntu1
* Resynchronize on Debian and update to the current version, remaining diff:
* debian/control.in:
  - Build-depend on dh-autoreconf, gnome-common
  - use Conflicts on the ppa binaries names differently for easier upgrades
* debian/rules:
  - Run autotools on build
  - Generate POT files on build
* debian/patches/01_gettext_not_xml.patch: 
  - using gettext rather than add translations to the xml databases
* debian/watch: 
  - Watch unstable series  

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
POST_UNINSTALL = :
38
38
build_triplet = @build@
39
39
host_triplet = @host@
40
 
@OS_WIN32_TRUE@am__append_1 = gweather-win32.c
41
40
noinst_PROGRAMS = test_metar$(EXEEXT) test_locations$(EXEEXT) \
42
41
        test_sun_moon$(EXEEXT)
43
 
EXTRA_PROGRAMS = test_metar$(EXEEXT) test_sun_moon$(EXEEXT)
 
42
@OS_WIN32_TRUE@am__append_1 = gweather-win32.c
 
43
@HAVE_INTROSPECTION_TRUE@am__append_2 = GWeather-3.0.gir
 
44
@HAVE_INTROSPECTION_TRUE@am__append_3 = $(gir_DATA) $(typelib_DATA)
44
45
subdir = libgweather
45
 
DIST_COMMON = README $(libgweatherinc_HEADERS) $(noinst_HEADERS) \
 
46
DIST_COMMON = $(libgweatherinc_HEADERS) $(noinst_HEADERS) \
46
47
        $(srcdir)/Makefile.am $(srcdir)/Makefile.in \
47
 
        $(srcdir)/gweather-uninstalled.pc.in $(srcdir)/gweather.pc.in \
48
 
        AUTHORS
 
48
        $(srcdir)/gweather-3.0-uninstalled.pc.in \
 
49
        $(srcdir)/gweather-3.0.pc.in
49
50
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
50
51
am__aclocal_m4_deps = $(top_srcdir)/m4/gtk-doc.m4 \
51
52
        $(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/libtool.m4 \
52
53
        $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
53
54
        $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
54
 
        $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.in
 
55
        $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac
55
56
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
56
57
        $(ACLOCAL_M4)
57
58
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
58
59
CONFIG_HEADER = $(top_builddir)/config.h
59
 
CONFIG_CLEAN_FILES = gweather.pc gweather-uninstalled.pc
 
60
CONFIG_CLEAN_FILES = gweather-3.0.pc gweather-3.0-uninstalled.pc
60
61
CONFIG_CLEAN_VPATH_FILES =
61
62
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
62
63
am__vpath_adj = case $$p in \
79
80
am__base_list = \
80
81
  sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
81
82
  sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
82
 
am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(pkgconfigdir)" \
83
 
        "$(DESTDIR)$(schemadir)" "$(DESTDIR)$(libgweatherincdir)"
 
83
am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(girdir)" \
 
84
        "$(DESTDIR)$(pkgconfigdir)" "$(DESTDIR)$(schemadir)" \
 
85
        "$(DESTDIR)$(typelibdir)" "$(DESTDIR)$(libgweatherincdir)"
84
86
LTLIBRARIES = $(lib_LTLIBRARIES)
85
87
am__DEPENDENCIES_1 =
86
 
libgweather_la_DEPENDENCIES = $(am__DEPENDENCIES_1) \
 
88
libgweather_3_la_DEPENDENCIES = $(am__DEPENDENCIES_1) \
87
89
        $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
88
90
        $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1)
89
 
am__libgweather_la_SOURCES_DIST = weather.c weather.h weather-priv.h \
 
91
am__libgweather_3_la_SOURCES_DIST = weather.c weather.h weather-priv.h \
90
92
        weather-metar.c weather-iwin.c weather-met.c weather-bom.c \
91
93
        weather-wx.c weather-sun.c weather-moon.c \
92
94
        gweather-enum-types.c gweather-prefs.c gweather-prefs.h \
95
97
        gweather-timezone.c gweather-timezone.h gweather-win32.h \
96
98
        location-entry.c location-entry.h timezone-menu.c \
97
99
        timezone-menu.h parser.c parser.h gweather-win32.c
98
 
@OS_WIN32_TRUE@am__objects_1 = libgweather_la-gweather-win32.lo
99
 
am_libgweather_la_OBJECTS = libgweather_la-weather.lo \
100
 
        libgweather_la-weather-metar.lo libgweather_la-weather-iwin.lo \
101
 
        libgweather_la-weather-met.lo libgweather_la-weather-bom.lo \
102
 
        libgweather_la-weather-wx.lo libgweather_la-weather-sun.lo \
103
 
        libgweather_la-weather-moon.lo \
104
 
        libgweather_la-gweather-enum-types.lo \
105
 
        libgweather_la-gweather-prefs.lo \
106
 
        libgweather_la-gweather-gconf.lo \
107
 
        libgweather_la-gweather-xml.lo \
108
 
        libgweather_la-gweather-location.lo \
109
 
        libgweather_la-gweather-timezone.lo \
110
 
        libgweather_la-location-entry.lo \
111
 
        libgweather_la-timezone-menu.lo libgweather_la-parser.lo \
 
100
@OS_WIN32_TRUE@am__objects_1 = libgweather_3_la-gweather-win32.lo
 
101
am_libgweather_3_la_OBJECTS = libgweather_3_la-weather.lo \
 
102
        libgweather_3_la-weather-metar.lo \
 
103
        libgweather_3_la-weather-iwin.lo \
 
104
        libgweather_3_la-weather-met.lo \
 
105
        libgweather_3_la-weather-bom.lo libgweather_3_la-weather-wx.lo \
 
106
        libgweather_3_la-weather-sun.lo \
 
107
        libgweather_3_la-weather-moon.lo \
 
108
        libgweather_3_la-gweather-enum-types.lo \
 
109
        libgweather_3_la-gweather-prefs.lo \
 
110
        libgweather_3_la-gweather-gconf.lo \
 
111
        libgweather_3_la-gweather-xml.lo \
 
112
        libgweather_3_la-gweather-location.lo \
 
113
        libgweather_3_la-gweather-timezone.lo \
 
114
        libgweather_3_la-location-entry.lo \
 
115
        libgweather_3_la-timezone-menu.lo libgweather_3_la-parser.lo \
112
116
        $(am__objects_1)
113
 
am__EXTRA_libgweather_la_SOURCES_DIST = gweather-win32.c
114
 
libgweather_la_OBJECTS = $(am_libgweather_la_OBJECTS)
 
117
am__EXTRA_libgweather_3_la_SOURCES_DIST = gweather-win32.c
 
118
libgweather_3_la_OBJECTS = $(am_libgweather_3_la_OBJECTS)
115
119
AM_V_lt = $(am__v_lt_$(V))
116
120
am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY))
117
121
am__v_lt_0 = --silent
118
 
libgweather_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
 
122
libgweather_3_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
119
123
        $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
120
 
        $(libgweather_la_CFLAGS) $(CFLAGS) $(libgweather_la_LDFLAGS) \
121
 
        $(LDFLAGS) -o $@
 
124
        $(AM_CFLAGS) $(CFLAGS) $(libgweather_3_la_LDFLAGS) $(LDFLAGS) \
 
125
        -o $@
122
126
PROGRAMS = $(noinst_PROGRAMS)
123
 
am_test_locations_OBJECTS = test_locations-test_locations.$(OBJEXT)
 
127
am_test_locations_OBJECTS = test_locations.$(OBJEXT)
124
128
test_locations_OBJECTS = $(am_test_locations_OBJECTS)
125
 
test_locations_DEPENDENCIES = libgweather.la
126
 
test_locations_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
127
 
        $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
128
 
        $(test_locations_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o \
129
 
        $@
 
129
test_locations_DEPENDENCIES = libgweather-3.la $(am__DEPENDENCIES_1)
130
130
am_test_metar_OBJECTS = test_metar-test_metar.$(OBJEXT)
131
131
test_metar_OBJECTS = $(am_test_metar_OBJECTS)
132
 
test_metar_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
133
 
        libgweather.la
134
 
test_metar_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
135
 
        $(LIBTOOLFLAGS) --mode=link $(CCLD) $(test_metar_CFLAGS) \
136
 
        $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
 
132
test_metar_DEPENDENCIES = libgweather-3.la $(am__DEPENDENCIES_1)
137
133
am_test_sun_moon_OBJECTS = test_sun_moon-test_sun_moon.$(OBJEXT)
138
134
test_sun_moon_OBJECTS = $(am_test_sun_moon_OBJECTS)
139
 
test_sun_moon_DEPENDENCIES = $(am__DEPENDENCIES_1) libgweather.la
140
 
test_sun_moon_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
141
 
        $(LIBTOOLFLAGS) --mode=link $(CCLD) $(test_sun_moon_CFLAGS) \
142
 
        $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
 
135
test_sun_moon_DEPENDENCIES = libgweather-3.la $(am__DEPENDENCIES_1)
143
136
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
144
137
depcomp = $(SHELL) $(top_srcdir)/depcomp
145
138
am__depfiles_maybe = depfiles
166
159
AM_V_GEN = $(am__v_GEN_$(V))
167
160
am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
168
161
am__v_GEN_0 = @echo "  GEN   " $@;
169
 
SOURCES = $(libgweather_la_SOURCES) $(EXTRA_libgweather_la_SOURCES) \
170
 
        $(test_locations_SOURCES) $(test_metar_SOURCES) \
171
 
        $(test_sun_moon_SOURCES)
172
 
DIST_SOURCES = $(am__libgweather_la_SOURCES_DIST) \
173
 
        $(am__EXTRA_libgweather_la_SOURCES_DIST) \
174
 
        $(test_locations_SOURCES) $(test_metar_SOURCES) \
175
 
        $(test_sun_moon_SOURCES)
176
 
DATA = $(pkgconfig_DATA) $(schema_DATA)
 
162
SOURCES = $(libgweather_3_la_SOURCES) \
 
163
        $(EXTRA_libgweather_3_la_SOURCES) $(test_locations_SOURCES) \
 
164
        $(test_metar_SOURCES) $(test_sun_moon_SOURCES)
 
165
DIST_SOURCES = $(am__libgweather_3_la_SOURCES_DIST) \
 
166
        $(am__EXTRA_libgweather_3_la_SOURCES_DIST) \
 
167
        $(test_locations_SOURCES) $(test_metar_SOURCES) \
 
168
        $(test_sun_moon_SOURCES)
 
169
DATA = $(gir_DATA) $(pkgconfig_DATA) $(schema_DATA) $(typelib_DATA)
177
170
HEADERS = $(libgweatherinc_HEADERS) $(noinst_HEADERS)
178
171
ETAGS = etags
179
172
CTAGS = ctags
180
173
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
181
174
ACLOCAL = @ACLOCAL@
182
 
ACLOCAL_AMFLAGS = @ACLOCAL_AMFLAGS@
183
175
ALL_LINGUAS = @ALL_LINGUAS@
184
176
AMTAR = @AMTAR@
185
177
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
242
234
INTLTOOL_MERGE = @INTLTOOL_MERGE@
243
235
INTLTOOL_PERL = @INTLTOOL_PERL@
244
236
INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
 
237
INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@
 
238
INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@
 
239
INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@
 
240
INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@
 
241
INTROSPECTION_LIBS = @INTROSPECTION_LIBS@
 
242
INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@
 
243
INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@
 
244
INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@
245
245
LD = @LD@
246
246
LDFLAGS = @LDFLAGS@
247
247
LIBDIR = @LIBDIR@
286
286
POSUB = @POSUB@
287
287
PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@
288
288
PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@
289
 
PYGOBJECT_CFLAGS = @PYGOBJECT_CFLAGS@
290
 
PYGOBJECT_LIBS = @PYGOBJECT_LIBS@
291
 
PYGTK_DEFS = @PYGTK_DEFS@
292
 
PYTHON = @PYTHON@
293
 
PYTHONDIR = @PYTHONDIR@
294
 
PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@
295
 
PYTHON_INCLUDES = @PYTHON_INCLUDES@
296
 
PYTHON_PLATFORM = @PYTHON_PLATFORM@
297
 
PYTHON_PREFIX = @PYTHON_PREFIX@
298
 
PYTHON_VERSION = @PYTHON_VERSION@
299
289
RANLIB = @RANLIB@
300
290
REGEX_LIBS = @REGEX_LIBS@
301
291
SED = @SED@
347
337
mkdir_p = @mkdir_p@
348
338
oldincludedir = @oldincludedir@
349
339
pdfdir = @pdfdir@
350
 
pkgpyexecdir = @pkgpyexecdir@
351
 
pkgpythondir = @pkgpythondir@
352
340
prefix = @prefix@
353
341
program_transform_name = @program_transform_name@
354
342
psdir = @psdir@
355
 
pyexecdir = @pyexecdir@
356
 
pythondir = @pythondir@
357
343
sbindir = @sbindir@
358
344
sharedstatedir = @sharedstatedir@
359
345
srcdir = @srcdir@
362
348
top_build_prefix = @top_build_prefix@
363
349
top_builddir = @top_builddir@
364
350
top_srcdir = @top_srcdir@
365
 
lib_LTLIBRARIES = libgweather.la
366
 
libgweatherincdir = $(includedir)/libgweather
 
351
lib_LTLIBRARIES = libgweather-3.la
 
352
AM_CPPFLAGS = \
 
353
        $(GTK_CFLAGS)           \
 
354
        -I$(top_srcdir)         \
 
355
        -I$(srcdir)
 
356
 
 
357
AM_CFLAGS = $(WARN_CFLAGS)
367
358
gweather_old_headers = \
368
359
        weather.h gweather-gconf.h gweather-prefs.h gweather-xml.h
369
360
 
371
362
        gweather-location.h location-entry.h \
372
363
        gweather-timezone.h timezone-menu.h
373
364
 
 
365
libgweatherincdir = $(includedir)/libgweather-3.0/libgweather
374
366
libgweatherinc_HEADERS = \
375
367
        $(gweather_old_headers)         \
376
368
        $(gweather_new_headers)         \
377
369
        gweather-enum-types.h
378
370
 
379
 
pkgconfigdir = $(libdir)/pkgconfig
380
 
pkgconfig_DATA = gweather.pc
381
 
libgweather_la_SOURCES = weather.c weather.h weather-priv.h \
 
371
noinst_HEADERS = weather-priv.h gweather-win32.h
 
372
libgweather_3_la_SOURCES = weather.c weather.h weather-priv.h \
382
373
        weather-metar.c weather-iwin.c weather-met.c weather-bom.c \
383
374
        weather-wx.c weather-sun.c weather-moon.c \
384
375
        gweather-enum-types.c gweather-prefs.c gweather-prefs.h \
387
378
        gweather-timezone.c gweather-timezone.h gweather-win32.h \
388
379
        location-entry.c location-entry.h timezone-menu.c \
389
380
        timezone-menu.h parser.c parser.h $(am__append_1)
390
 
@OS_WIN32_FALSE@EXTRA_libgweather_la_SOURCES = gweather-win32.c
391
 
libgweather_la_CFLAGS = \
392
 
        -I$(top_srcdir)                 \
393
 
        -I$(srcdir)                     \
394
 
        $(WARN_CFLAGS)                  \
395
 
        $(GTK_CFLAGS)                   \
 
381
@OS_WIN32_FALSE@EXTRA_libgweather_3_la_SOURCES = gweather-win32.c
 
382
libgweather_3_la_CPPFLAGS = \
 
383
        $(AM_CPPFLAGS)                  \
396
384
        $(LIBXML_CFLAGS)                \
397
385
        $(LIBSOUP_CFLAGS)               \
398
386
        $(GCONF_CFLAGS)                 \
400
388
        -DGNOMELOCALEDIR=\""$(datadir)/locale"\" \
401
389
        -DGWEATHER_XML_LOCATION_DIR=\""$(pkgdatadir)"\"
402
390
 
403
 
libgweather_la_LIBADD = \
 
391
libgweather_3_la_LIBADD = \
404
392
        -lm             \
405
393
        $(GTK_LIBS)     \
406
394
        $(LIBXML_LIBS)  \
408
396
        $(GCONF_LIBS) \
409
397
        $(REGEX_LIBS)
410
398
 
411
 
libgweather_la_LDFLAGS = \
 
399
libgweather_3_la_LDFLAGS = \
412
400
        -version-info $(LT_VERSION) -no-undefined
413
401
 
414
 
MKENUMS_GENERATED = gweather-enum-types.c gweather-enum-types.h
415
 
BUILT_SOURCES = $(MKENUMS_GENERATED)
416
402
test_metar_SOURCES = test_metar.c
417
 
test_metar_CFLAGS = \
418
 
        -I$(top_srcdir)                 \
419
 
        -I$(srcdir)                     \
420
 
        $(WARN_CFLAGS)                  \
421
 
        $(GTK_CFLAGS)                   \
422
 
        $(LIBSOUP_CFLAGS)               \
423
 
        -DG_LOG_DOMAIN=\"GWeather\"
424
 
 
425
 
test_metar_LDADD = \
426
 
        $(LIBSOUP_LIBS) \
427
 
        $(REGEX_LIBS) \
428
 
        libgweather.la
429
 
 
 
403
test_metar_CPPFLAGS = $(AM_CPPFLAGS) $(LIBSOUP_CFLAGS)
 
404
test_metar_LDADD = libgweather-3.la $(GTK_LIBS)
430
405
test_locations_SOURCES = test_locations.c
431
 
test_locations_CFLAGS = \
432
 
        -I$(top_srcdir)                 \
433
 
        -I$(srcdir)                     \
434
 
        $(WARN_CFLAGS)                  \
435
 
        $(GTK_CFLAGS)                   \
436
 
        $(GNOME_VFS_APPLETS_CFLAGS)     \
437
 
        -DG_LOG_DOMAIN=\"GWeather\"
438
 
 
439
 
test_locations_LDADD = libgweather.la
440
 
test_sun_moon_SOURCES = \
441
 
        test_sun_moon.c
442
 
 
443
 
test_sun_moon_CFLAGS = \
444
 
        -I$(top_srcdir)                 \
445
 
        -I$(srcdir)                     \
446
 
        $(WARN_CFLAGS)                  \
447
 
        $(GTK_CFLAGS)                   \
448
 
        $(LIBSOUP_CFLAGS)               \
449
 
        -DG_LOG_DOMAIN=\"GWeather\"
450
 
 
451
 
test_sun_moon_LDADD = \
452
 
        $(LIBSOUP_LIBS) \
453
 
        libgweather.la
454
 
 
455
 
noinst_HEADERS = weather-priv.h gweather-win32.h
 
406
test_locations_LDADD = libgweather-3.la $(GTK_LIBS)
 
407
test_sun_moon_SOURCES = test_sun_moon.c
 
408
test_sun_moon_CPPFLAGS = $(AM_CPPFLAGS) $(LIBSOUP_CFLAGS)
 
409
test_sun_moon_LDADD = libgweather-3.la $(GTK_LIBS)
 
410
BUILT_SOURCES = gweather-enum-types.c gweather-enum-types.h
 
411
pkgconfigdir = $(libdir)/pkgconfig
 
412
pkgconfig_DATA = gweather-3.0.pc
456
413
schemadir = @GCONF_SCHEMA_FILE_DIR@
457
414
schema_in_files = gweather.schemas.in
458
415
schema_DATA = $(schema_in_files:.schemas.in=.schemas)
459
 
EXTRA_DIST = gweather.pc.in gweather-uninstalled.pc.in $(schema_in_files)
460
 
CLEANFILES = $(schema_DATA) $(EXTRA_PROGRAMS) $(MKENUMS_GENERATED)
 
416
EXTRA_DIST = gweather-3.0.pc.in gweather-3.0-uninstalled.pc.in $(schema_in_files)
 
417
CLEANFILES = $(schema_DATA) $(noinst_PROGRAMS) $(BUILT_SOURCES) \
 
418
        $(am__append_3)
 
419
INTROSPECTION_GIRS = $(am__append_2)
 
420
INTROSPECTION_SCANNER_ARGS = --warn-all --add-include-path=$(srcdir)
 
421
INTROSPECTION_COMPILER_ARGS = --includedir=$(srcdir)
 
422
@HAVE_INTROSPECTION_TRUE@introspection_sources = \
 
423
@HAVE_INTROSPECTION_TRUE@       weather.c weather.h \
 
424
@HAVE_INTROSPECTION_TRUE@       gweather-location.c gweather-location.h \
 
425
@HAVE_INTROSPECTION_TRUE@       gweather-timezone.c gweather-timezone.h \
 
426
@HAVE_INTROSPECTION_TRUE@       location-entry.c location-entry.h \
 
427
@HAVE_INTROSPECTION_TRUE@       timezone-menu.c timezone-menu.h \
 
428
@HAVE_INTROSPECTION_TRUE@       gweather-enum-types.h
 
429
 
 
430
@HAVE_INTROSPECTION_TRUE@GWeather_3_0_gir_INCLUDES = GObject-2.0 Gtk-3.0
 
431
@HAVE_INTROSPECTION_TRUE@GWeather_3_0_gir_CFLAGS = $(libgweather_3_la_CPPFLAGS) -DGWEATHER_I_KNOW_THIS_IS_UNSTABLE
 
432
@HAVE_INTROSPECTION_TRUE@GWeather_3_0_gir_LIBS = libgweather-3.la
 
433
@HAVE_INTROSPECTION_TRUE@GWeather_3_0_gir_SCANNERFLAGS = --identifier-prefix=GWeather --symbol-prefix=gweather --pkg-export=gweather-3.0
 
434
@HAVE_INTROSPECTION_TRUE@GWeather_3_0_gir_FILES = $(addprefix $(srcdir)/,$(introspection_sources))
 
435
@HAVE_INTROSPECTION_TRUE@girdir = $(INTROSPECTION_GIRDIR)
 
436
@HAVE_INTROSPECTION_TRUE@gir_DATA = $(INTROSPECTION_GIRS)
 
437
@HAVE_INTROSPECTION_TRUE@typelibdir = $(INTROSPECTION_TYPELIBDIR)
 
438
@HAVE_INTROSPECTION_TRUE@typelib_DATA = $(INTROSPECTION_GIRS:.gir=.typelib)
461
439
all: $(BUILT_SOURCES)
462
440
        $(MAKE) $(AM_MAKEFLAGS) all-am
463
441
 
493
471
$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
494
472
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
495
473
$(am__aclocal_m4_deps):
496
 
gweather.pc: $(top_builddir)/config.status $(srcdir)/gweather.pc.in
 
474
gweather-3.0.pc: $(top_builddir)/config.status $(srcdir)/gweather-3.0.pc.in
497
475
        cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@
498
 
gweather-uninstalled.pc: $(top_builddir)/config.status $(srcdir)/gweather-uninstalled.pc.in
 
476
gweather-3.0-uninstalled.pc: $(top_builddir)/config.status $(srcdir)/gweather-3.0-uninstalled.pc.in
499
477
        cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@
500
478
install-libLTLIBRARIES: $(lib_LTLIBRARIES)
501
479
        @$(NORMAL_INSTALL)
528
506
          echo "rm -f \"$${dir}/so_locations\""; \
529
507
          rm -f "$${dir}/so_locations"; \
530
508
        done
531
 
libgweather.la: $(libgweather_la_OBJECTS) $(libgweather_la_DEPENDENCIES) 
532
 
        $(AM_V_CCLD)$(libgweather_la_LINK) -rpath $(libdir) $(libgweather_la_OBJECTS) $(libgweather_la_LIBADD) $(LIBS)
 
509
libgweather-3.la: $(libgweather_3_la_OBJECTS) $(libgweather_3_la_DEPENDENCIES) 
 
510
        $(AM_V_CCLD)$(libgweather_3_la_LINK) -rpath $(libdir) $(libgweather_3_la_OBJECTS) $(libgweather_3_la_LIBADD) $(LIBS)
533
511
 
534
512
clean-noinstPROGRAMS:
535
513
        @list='$(noinst_PROGRAMS)'; test -n "$$list" || exit 0; \
541
519
        rm -f $$list
542
520
test_locations$(EXEEXT): $(test_locations_OBJECTS) $(test_locations_DEPENDENCIES) 
543
521
        @rm -f test_locations$(EXEEXT)
544
 
        $(AM_V_CCLD)$(test_locations_LINK) $(test_locations_OBJECTS) $(test_locations_LDADD) $(LIBS)
 
522
        $(AM_V_CCLD)$(LINK) $(test_locations_OBJECTS) $(test_locations_LDADD) $(LIBS)
545
523
test_metar$(EXEEXT): $(test_metar_OBJECTS) $(test_metar_DEPENDENCIES) 
546
524
        @rm -f test_metar$(EXEEXT)
547
 
        $(AM_V_CCLD)$(test_metar_LINK) $(test_metar_OBJECTS) $(test_metar_LDADD) $(LIBS)
 
525
        $(AM_V_CCLD)$(LINK) $(test_metar_OBJECTS) $(test_metar_LDADD) $(LIBS)
548
526
test_sun_moon$(EXEEXT): $(test_sun_moon_OBJECTS) $(test_sun_moon_DEPENDENCIES) 
549
527
        @rm -f test_sun_moon$(EXEEXT)
550
 
        $(AM_V_CCLD)$(test_sun_moon_LINK) $(test_sun_moon_OBJECTS) $(test_sun_moon_LDADD) $(LIBS)
 
528
        $(AM_V_CCLD)$(LINK) $(test_sun_moon_OBJECTS) $(test_sun_moon_LDADD) $(LIBS)
551
529
 
552
530
mostlyclean-compile:
553
531
        -rm -f *.$(OBJEXT)
555
533
distclean-compile:
556
534
        -rm -f *.tab.c
557
535
 
558
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgweather_la-gweather-enum-types.Plo@am__quote@
559
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgweather_la-gweather-gconf.Plo@am__quote@
560
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgweather_la-gweather-location.Plo@am__quote@
561
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgweather_la-gweather-prefs.Plo@am__quote@
562
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgweather_la-gweather-timezone.Plo@am__quote@
563
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgweather_la-gweather-win32.Plo@am__quote@
564
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgweather_la-gweather-xml.Plo@am__quote@
565
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgweather_la-location-entry.Plo@am__quote@
566
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgweather_la-parser.Plo@am__quote@
567
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgweather_la-timezone-menu.Plo@am__quote@
568
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgweather_la-weather-bom.Plo@am__quote@
569
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgweather_la-weather-iwin.Plo@am__quote@
570
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgweather_la-weather-met.Plo@am__quote@
571
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgweather_la-weather-metar.Plo@am__quote@
572
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgweather_la-weather-moon.Plo@am__quote@
573
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgweather_la-weather-sun.Plo@am__quote@
574
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgweather_la-weather-wx.Plo@am__quote@
575
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgweather_la-weather.Plo@am__quote@
576
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_locations-test_locations.Po@am__quote@
 
536
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgweather_3_la-gweather-enum-types.Plo@am__quote@
 
537
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgweather_3_la-gweather-gconf.Plo@am__quote@
 
538
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgweather_3_la-gweather-location.Plo@am__quote@
 
539
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgweather_3_la-gweather-prefs.Plo@am__quote@
 
540
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgweather_3_la-gweather-timezone.Plo@am__quote@
 
541
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgweather_3_la-gweather-win32.Plo@am__quote@
 
542
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgweather_3_la-gweather-xml.Plo@am__quote@
 
543
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgweather_3_la-location-entry.Plo@am__quote@
 
544
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgweather_3_la-parser.Plo@am__quote@
 
545
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgweather_3_la-timezone-menu.Plo@am__quote@
 
546
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgweather_3_la-weather-bom.Plo@am__quote@
 
547
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgweather_3_la-weather-iwin.Plo@am__quote@
 
548
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgweather_3_la-weather-met.Plo@am__quote@
 
549
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgweather_3_la-weather-metar.Plo@am__quote@
 
550
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgweather_3_la-weather-moon.Plo@am__quote@
 
551
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgweather_3_la-weather-sun.Plo@am__quote@
 
552
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgweather_3_la-weather-wx.Plo@am__quote@
 
553
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgweather_3_la-weather.Plo@am__quote@
 
554
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_locations.Po@am__quote@
577
555
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_metar-test_metar.Po@am__quote@
578
556
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_sun_moon-test_sun_moon.Po@am__quote@
579
557
 
601
579
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
602
580
@am__fastdepCC_FALSE@   $(LTCOMPILE) -c -o $@ $<
603
581
 
604
 
libgweather_la-weather.lo: weather.c
605
 
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgweather_la_CFLAGS) $(CFLAGS) -MT libgweather_la-weather.lo -MD -MP -MF $(DEPDIR)/libgweather_la-weather.Tpo -c -o libgweather_la-weather.lo `test -f 'weather.c' || echo '$(srcdir)/'`weather.c
606
 
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libgweather_la-weather.Tpo $(DEPDIR)/libgweather_la-weather.Plo
607
 
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
608
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='weather.c' object='libgweather_la-weather.lo' libtool=yes @AMDEPBACKSLASH@
609
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
610
 
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgweather_la_CFLAGS) $(CFLAGS) -c -o libgweather_la-weather.lo `test -f 'weather.c' || echo '$(srcdir)/'`weather.c
611
 
 
612
 
libgweather_la-weather-metar.lo: weather-metar.c
613
 
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgweather_la_CFLAGS) $(CFLAGS) -MT libgweather_la-weather-metar.lo -MD -MP -MF $(DEPDIR)/libgweather_la-weather-metar.Tpo -c -o libgweather_la-weather-metar.lo `test -f 'weather-metar.c' || echo '$(srcdir)/'`weather-metar.c
614
 
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libgweather_la-weather-metar.Tpo $(DEPDIR)/libgweather_la-weather-metar.Plo
615
 
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
616
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='weather-metar.c' object='libgweather_la-weather-metar.lo' libtool=yes @AMDEPBACKSLASH@
617
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
618
 
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgweather_la_CFLAGS) $(CFLAGS) -c -o libgweather_la-weather-metar.lo `test -f 'weather-metar.c' || echo '$(srcdir)/'`weather-metar.c
619
 
 
620
 
libgweather_la-weather-iwin.lo: weather-iwin.c
621
 
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgweather_la_CFLAGS) $(CFLAGS) -MT libgweather_la-weather-iwin.lo -MD -MP -MF $(DEPDIR)/libgweather_la-weather-iwin.Tpo -c -o libgweather_la-weather-iwin.lo `test -f 'weather-iwin.c' || echo '$(srcdir)/'`weather-iwin.c
622
 
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libgweather_la-weather-iwin.Tpo $(DEPDIR)/libgweather_la-weather-iwin.Plo
623
 
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
624
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='weather-iwin.c' object='libgweather_la-weather-iwin.lo' libtool=yes @AMDEPBACKSLASH@
625
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
626
 
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgweather_la_CFLAGS) $(CFLAGS) -c -o libgweather_la-weather-iwin.lo `test -f 'weather-iwin.c' || echo '$(srcdir)/'`weather-iwin.c
627
 
 
628
 
libgweather_la-weather-met.lo: weather-met.c
629
 
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgweather_la_CFLAGS) $(CFLAGS) -MT libgweather_la-weather-met.lo -MD -MP -MF $(DEPDIR)/libgweather_la-weather-met.Tpo -c -o libgweather_la-weather-met.lo `test -f 'weather-met.c' || echo '$(srcdir)/'`weather-met.c
630
 
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libgweather_la-weather-met.Tpo $(DEPDIR)/libgweather_la-weather-met.Plo
631
 
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
632
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='weather-met.c' object='libgweather_la-weather-met.lo' libtool=yes @AMDEPBACKSLASH@
633
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
634
 
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgweather_la_CFLAGS) $(CFLAGS) -c -o libgweather_la-weather-met.lo `test -f 'weather-met.c' || echo '$(srcdir)/'`weather-met.c
635
 
 
636
 
libgweather_la-weather-bom.lo: weather-bom.c
637
 
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgweather_la_CFLAGS) $(CFLAGS) -MT libgweather_la-weather-bom.lo -MD -MP -MF $(DEPDIR)/libgweather_la-weather-bom.Tpo -c -o libgweather_la-weather-bom.lo `test -f 'weather-bom.c' || echo '$(srcdir)/'`weather-bom.c
638
 
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libgweather_la-weather-bom.Tpo $(DEPDIR)/libgweather_la-weather-bom.Plo
639
 
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
640
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='weather-bom.c' object='libgweather_la-weather-bom.lo' libtool=yes @AMDEPBACKSLASH@
641
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
642
 
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgweather_la_CFLAGS) $(CFLAGS) -c -o libgweather_la-weather-bom.lo `test -f 'weather-bom.c' || echo '$(srcdir)/'`weather-bom.c
643
 
 
644
 
libgweather_la-weather-wx.lo: weather-wx.c
645
 
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgweather_la_CFLAGS) $(CFLAGS) -MT libgweather_la-weather-wx.lo -MD -MP -MF $(DEPDIR)/libgweather_la-weather-wx.Tpo -c -o libgweather_la-weather-wx.lo `test -f 'weather-wx.c' || echo '$(srcdir)/'`weather-wx.c
646
 
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libgweather_la-weather-wx.Tpo $(DEPDIR)/libgweather_la-weather-wx.Plo
647
 
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
648
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='weather-wx.c' object='libgweather_la-weather-wx.lo' libtool=yes @AMDEPBACKSLASH@
649
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
650
 
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgweather_la_CFLAGS) $(CFLAGS) -c -o libgweather_la-weather-wx.lo `test -f 'weather-wx.c' || echo '$(srcdir)/'`weather-wx.c
651
 
 
652
 
libgweather_la-weather-sun.lo: weather-sun.c
653
 
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgweather_la_CFLAGS) $(CFLAGS) -MT libgweather_la-weather-sun.lo -MD -MP -MF $(DEPDIR)/libgweather_la-weather-sun.Tpo -c -o libgweather_la-weather-sun.lo `test -f 'weather-sun.c' || echo '$(srcdir)/'`weather-sun.c
654
 
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libgweather_la-weather-sun.Tpo $(DEPDIR)/libgweather_la-weather-sun.Plo
655
 
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
656
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='weather-sun.c' object='libgweather_la-weather-sun.lo' libtool=yes @AMDEPBACKSLASH@
657
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
658
 
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgweather_la_CFLAGS) $(CFLAGS) -c -o libgweather_la-weather-sun.lo `test -f 'weather-sun.c' || echo '$(srcdir)/'`weather-sun.c
659
 
 
660
 
libgweather_la-weather-moon.lo: weather-moon.c
661
 
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgweather_la_CFLAGS) $(CFLAGS) -MT libgweather_la-weather-moon.lo -MD -MP -MF $(DEPDIR)/libgweather_la-weather-moon.Tpo -c -o libgweather_la-weather-moon.lo `test -f 'weather-moon.c' || echo '$(srcdir)/'`weather-moon.c
662
 
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libgweather_la-weather-moon.Tpo $(DEPDIR)/libgweather_la-weather-moon.Plo
663
 
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
664
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='weather-moon.c' object='libgweather_la-weather-moon.lo' libtool=yes @AMDEPBACKSLASH@
665
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
666
 
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgweather_la_CFLAGS) $(CFLAGS) -c -o libgweather_la-weather-moon.lo `test -f 'weather-moon.c' || echo '$(srcdir)/'`weather-moon.c
667
 
 
668
 
libgweather_la-gweather-enum-types.lo: gweather-enum-types.c
669
 
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgweather_la_CFLAGS) $(CFLAGS) -MT libgweather_la-gweather-enum-types.lo -MD -MP -MF $(DEPDIR)/libgweather_la-gweather-enum-types.Tpo -c -o libgweather_la-gweather-enum-types.lo `test -f 'gweather-enum-types.c' || echo '$(srcdir)/'`gweather-enum-types.c
670
 
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libgweather_la-gweather-enum-types.Tpo $(DEPDIR)/libgweather_la-gweather-enum-types.Plo
671
 
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
672
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='gweather-enum-types.c' object='libgweather_la-gweather-enum-types.lo' libtool=yes @AMDEPBACKSLASH@
673
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
674
 
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgweather_la_CFLAGS) $(CFLAGS) -c -o libgweather_la-gweather-enum-types.lo `test -f 'gweather-enum-types.c' || echo '$(srcdir)/'`gweather-enum-types.c
675
 
 
676
 
libgweather_la-gweather-prefs.lo: gweather-prefs.c
677
 
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgweather_la_CFLAGS) $(CFLAGS) -MT libgweather_la-gweather-prefs.lo -MD -MP -MF $(DEPDIR)/libgweather_la-gweather-prefs.Tpo -c -o libgweather_la-gweather-prefs.lo `test -f 'gweather-prefs.c' || echo '$(srcdir)/'`gweather-prefs.c
678
 
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libgweather_la-gweather-prefs.Tpo $(DEPDIR)/libgweather_la-gweather-prefs.Plo
679
 
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
680
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='gweather-prefs.c' object='libgweather_la-gweather-prefs.lo' libtool=yes @AMDEPBACKSLASH@
681
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
682
 
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgweather_la_CFLAGS) $(CFLAGS) -c -o libgweather_la-gweather-prefs.lo `test -f 'gweather-prefs.c' || echo '$(srcdir)/'`gweather-prefs.c
683
 
 
684
 
libgweather_la-gweather-gconf.lo: gweather-gconf.c
685
 
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgweather_la_CFLAGS) $(CFLAGS) -MT libgweather_la-gweather-gconf.lo -MD -MP -MF $(DEPDIR)/libgweather_la-gweather-gconf.Tpo -c -o libgweather_la-gweather-gconf.lo `test -f 'gweather-gconf.c' || echo '$(srcdir)/'`gweather-gconf.c
686
 
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libgweather_la-gweather-gconf.Tpo $(DEPDIR)/libgweather_la-gweather-gconf.Plo
687
 
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
688
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='gweather-gconf.c' object='libgweather_la-gweather-gconf.lo' libtool=yes @AMDEPBACKSLASH@
689
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
690
 
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgweather_la_CFLAGS) $(CFLAGS) -c -o libgweather_la-gweather-gconf.lo `test -f 'gweather-gconf.c' || echo '$(srcdir)/'`gweather-gconf.c
691
 
 
692
 
libgweather_la-gweather-xml.lo: gweather-xml.c
693
 
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgweather_la_CFLAGS) $(CFLAGS) -MT libgweather_la-gweather-xml.lo -MD -MP -MF $(DEPDIR)/libgweather_la-gweather-xml.Tpo -c -o libgweather_la-gweather-xml.lo `test -f 'gweather-xml.c' || echo '$(srcdir)/'`gweather-xml.c
694
 
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libgweather_la-gweather-xml.Tpo $(DEPDIR)/libgweather_la-gweather-xml.Plo
695
 
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
696
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='gweather-xml.c' object='libgweather_la-gweather-xml.lo' libtool=yes @AMDEPBACKSLASH@
697
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
698
 
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgweather_la_CFLAGS) $(CFLAGS) -c -o libgweather_la-gweather-xml.lo `test -f 'gweather-xml.c' || echo '$(srcdir)/'`gweather-xml.c
699
 
 
700
 
libgweather_la-gweather-location.lo: gweather-location.c
701
 
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgweather_la_CFLAGS) $(CFLAGS) -MT libgweather_la-gweather-location.lo -MD -MP -MF $(DEPDIR)/libgweather_la-gweather-location.Tpo -c -o libgweather_la-gweather-location.lo `test -f 'gweather-location.c' || echo '$(srcdir)/'`gweather-location.c
702
 
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libgweather_la-gweather-location.Tpo $(DEPDIR)/libgweather_la-gweather-location.Plo
703
 
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
704
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='gweather-location.c' object='libgweather_la-gweather-location.lo' libtool=yes @AMDEPBACKSLASH@
705
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
706
 
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgweather_la_CFLAGS) $(CFLAGS) -c -o libgweather_la-gweather-location.lo `test -f 'gweather-location.c' || echo '$(srcdir)/'`gweather-location.c
707
 
 
708
 
libgweather_la-gweather-timezone.lo: gweather-timezone.c
709
 
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgweather_la_CFLAGS) $(CFLAGS) -MT libgweather_la-gweather-timezone.lo -MD -MP -MF $(DEPDIR)/libgweather_la-gweather-timezone.Tpo -c -o libgweather_la-gweather-timezone.lo `test -f 'gweather-timezone.c' || echo '$(srcdir)/'`gweather-timezone.c
710
 
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libgweather_la-gweather-timezone.Tpo $(DEPDIR)/libgweather_la-gweather-timezone.Plo
711
 
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
712
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='gweather-timezone.c' object='libgweather_la-gweather-timezone.lo' libtool=yes @AMDEPBACKSLASH@
713
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
714
 
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgweather_la_CFLAGS) $(CFLAGS) -c -o libgweather_la-gweather-timezone.lo `test -f 'gweather-timezone.c' || echo '$(srcdir)/'`gweather-timezone.c
715
 
 
716
 
libgweather_la-location-entry.lo: location-entry.c
717
 
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgweather_la_CFLAGS) $(CFLAGS) -MT libgweather_la-location-entry.lo -MD -MP -MF $(DEPDIR)/libgweather_la-location-entry.Tpo -c -o libgweather_la-location-entry.lo `test -f 'location-entry.c' || echo '$(srcdir)/'`location-entry.c
718
 
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libgweather_la-location-entry.Tpo $(DEPDIR)/libgweather_la-location-entry.Plo
719
 
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
720
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='location-entry.c' object='libgweather_la-location-entry.lo' libtool=yes @AMDEPBACKSLASH@
721
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
722
 
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgweather_la_CFLAGS) $(CFLAGS) -c -o libgweather_la-location-entry.lo `test -f 'location-entry.c' || echo '$(srcdir)/'`location-entry.c
723
 
 
724
 
libgweather_la-timezone-menu.lo: timezone-menu.c
725
 
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgweather_la_CFLAGS) $(CFLAGS) -MT libgweather_la-timezone-menu.lo -MD -MP -MF $(DEPDIR)/libgweather_la-timezone-menu.Tpo -c -o libgweather_la-timezone-menu.lo `test -f 'timezone-menu.c' || echo '$(srcdir)/'`timezone-menu.c
726
 
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libgweather_la-timezone-menu.Tpo $(DEPDIR)/libgweather_la-timezone-menu.Plo
727
 
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
728
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='timezone-menu.c' object='libgweather_la-timezone-menu.lo' libtool=yes @AMDEPBACKSLASH@
729
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
730
 
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgweather_la_CFLAGS) $(CFLAGS) -c -o libgweather_la-timezone-menu.lo `test -f 'timezone-menu.c' || echo '$(srcdir)/'`timezone-menu.c
731
 
 
732
 
libgweather_la-parser.lo: parser.c
733
 
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgweather_la_CFLAGS) $(CFLAGS) -MT libgweather_la-parser.lo -MD -MP -MF $(DEPDIR)/libgweather_la-parser.Tpo -c -o libgweather_la-parser.lo `test -f 'parser.c' || echo '$(srcdir)/'`parser.c
734
 
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libgweather_la-parser.Tpo $(DEPDIR)/libgweather_la-parser.Plo
735
 
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
736
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='parser.c' object='libgweather_la-parser.lo' libtool=yes @AMDEPBACKSLASH@
737
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
738
 
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgweather_la_CFLAGS) $(CFLAGS) -c -o libgweather_la-parser.lo `test -f 'parser.c' || echo '$(srcdir)/'`parser.c
739
 
 
740
 
libgweather_la-gweather-win32.lo: gweather-win32.c
741
 
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgweather_la_CFLAGS) $(CFLAGS) -MT libgweather_la-gweather-win32.lo -MD -MP -MF $(DEPDIR)/libgweather_la-gweather-win32.Tpo -c -o libgweather_la-gweather-win32.lo `test -f 'gweather-win32.c' || echo '$(srcdir)/'`gweather-win32.c
742
 
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libgweather_la-gweather-win32.Tpo $(DEPDIR)/libgweather_la-gweather-win32.Plo
743
 
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
744
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='gweather-win32.c' object='libgweather_la-gweather-win32.lo' libtool=yes @AMDEPBACKSLASH@
745
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
746
 
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgweather_la_CFLAGS) $(CFLAGS) -c -o libgweather_la-gweather-win32.lo `test -f 'gweather-win32.c' || echo '$(srcdir)/'`gweather-win32.c
747
 
 
748
 
test_locations-test_locations.o: test_locations.c
749
 
@am__fastdepCC_TRUE@    $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_locations_CFLAGS) $(CFLAGS) -MT test_locations-test_locations.o -MD -MP -MF $(DEPDIR)/test_locations-test_locations.Tpo -c -o test_locations-test_locations.o `test -f 'test_locations.c' || echo '$(srcdir)/'`test_locations.c
750
 
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/test_locations-test_locations.Tpo $(DEPDIR)/test_locations-test_locations.Po
751
 
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
752
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='test_locations.c' object='test_locations-test_locations.o' libtool=no @AMDEPBACKSLASH@
753
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
754
 
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_locations_CFLAGS) $(CFLAGS) -c -o test_locations-test_locations.o `test -f 'test_locations.c' || echo '$(srcdir)/'`test_locations.c
755
 
 
756
 
test_locations-test_locations.obj: test_locations.c
757
 
@am__fastdepCC_TRUE@    $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_locations_CFLAGS) $(CFLAGS) -MT test_locations-test_locations.obj -MD -MP -MF $(DEPDIR)/test_locations-test_locations.Tpo -c -o test_locations-test_locations.obj `if test -f 'test_locations.c'; then $(CYGPATH_W) 'test_locations.c'; else $(CYGPATH_W) '$(srcdir)/test_locations.c'; fi`
758
 
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/test_locations-test_locations.Tpo $(DEPDIR)/test_locations-test_locations.Po
759
 
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
760
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='test_locations.c' object='test_locations-test_locations.obj' libtool=no @AMDEPBACKSLASH@
761
 
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
762
 
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_locations_CFLAGS) $(CFLAGS) -c -o test_locations-test_locations.obj `if test -f 'test_locations.c'; then $(CYGPATH_W) 'test_locations.c'; else $(CYGPATH_W) '$(srcdir)/test_locations.c'; fi`
 
582
libgweather_3_la-weather.lo: weather.c
 
583
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgweather_3_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgweather_3_la-weather.lo -MD -MP -MF $(DEPDIR)/libgweather_3_la-weather.Tpo -c -o libgweather_3_la-weather.lo `test -f 'weather.c' || echo '$(srcdir)/'`weather.c
 
584
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libgweather_3_la-weather.Tpo $(DEPDIR)/libgweather_3_la-weather.Plo
 
585
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
586
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='weather.c' object='libgweather_3_la-weather.lo' libtool=yes @AMDEPBACKSLASH@
 
587
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
588
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgweather_3_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgweather_3_la-weather.lo `test -f 'weather.c' || echo '$(srcdir)/'`weather.c
 
589
 
 
590
libgweather_3_la-weather-metar.lo: weather-metar.c
 
591
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgweather_3_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgweather_3_la-weather-metar.lo -MD -MP -MF $(DEPDIR)/libgweather_3_la-weather-metar.Tpo -c -o libgweather_3_la-weather-metar.lo `test -f 'weather-metar.c' || echo '$(srcdir)/'`weather-metar.c
 
592
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libgweather_3_la-weather-metar.Tpo $(DEPDIR)/libgweather_3_la-weather-metar.Plo
 
593
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
594
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='weather-metar.c' object='libgweather_3_la-weather-metar.lo' libtool=yes @AMDEPBACKSLASH@
 
595
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
596
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgweather_3_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgweather_3_la-weather-metar.lo `test -f 'weather-metar.c' || echo '$(srcdir)/'`weather-metar.c
 
597
 
 
598
libgweather_3_la-weather-iwin.lo: weather-iwin.c
 
599
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgweather_3_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgweather_3_la-weather-iwin.lo -MD -MP -MF $(DEPDIR)/libgweather_3_la-weather-iwin.Tpo -c -o libgweather_3_la-weather-iwin.lo `test -f 'weather-iwin.c' || echo '$(srcdir)/'`weather-iwin.c
 
600
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libgweather_3_la-weather-iwin.Tpo $(DEPDIR)/libgweather_3_la-weather-iwin.Plo
 
601
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
602
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='weather-iwin.c' object='libgweather_3_la-weather-iwin.lo' libtool=yes @AMDEPBACKSLASH@
 
603
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
604
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgweather_3_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgweather_3_la-weather-iwin.lo `test -f 'weather-iwin.c' || echo '$(srcdir)/'`weather-iwin.c
 
605
 
 
606
libgweather_3_la-weather-met.lo: weather-met.c
 
607
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgweather_3_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgweather_3_la-weather-met.lo -MD -MP -MF $(DEPDIR)/libgweather_3_la-weather-met.Tpo -c -o libgweather_3_la-weather-met.lo `test -f 'weather-met.c' || echo '$(srcdir)/'`weather-met.c
 
608
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libgweather_3_la-weather-met.Tpo $(DEPDIR)/libgweather_3_la-weather-met.Plo
 
609
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
610
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='weather-met.c' object='libgweather_3_la-weather-met.lo' libtool=yes @AMDEPBACKSLASH@
 
611
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
612
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgweather_3_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgweather_3_la-weather-met.lo `test -f 'weather-met.c' || echo '$(srcdir)/'`weather-met.c
 
613
 
 
614
libgweather_3_la-weather-bom.lo: weather-bom.c
 
615
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgweather_3_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgweather_3_la-weather-bom.lo -MD -MP -MF $(DEPDIR)/libgweather_3_la-weather-bom.Tpo -c -o libgweather_3_la-weather-bom.lo `test -f 'weather-bom.c' || echo '$(srcdir)/'`weather-bom.c
 
616
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libgweather_3_la-weather-bom.Tpo $(DEPDIR)/libgweather_3_la-weather-bom.Plo
 
617
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
618
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='weather-bom.c' object='libgweather_3_la-weather-bom.lo' libtool=yes @AMDEPBACKSLASH@
 
619
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
620
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgweather_3_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgweather_3_la-weather-bom.lo `test -f 'weather-bom.c' || echo '$(srcdir)/'`weather-bom.c
 
621
 
 
622
libgweather_3_la-weather-wx.lo: weather-wx.c
 
623
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgweather_3_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgweather_3_la-weather-wx.lo -MD -MP -MF $(DEPDIR)/libgweather_3_la-weather-wx.Tpo -c -o libgweather_3_la-weather-wx.lo `test -f 'weather-wx.c' || echo '$(srcdir)/'`weather-wx.c
 
624
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libgweather_3_la-weather-wx.Tpo $(DEPDIR)/libgweather_3_la-weather-wx.Plo
 
625
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
626
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='weather-wx.c' object='libgweather_3_la-weather-wx.lo' libtool=yes @AMDEPBACKSLASH@
 
627
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
628
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgweather_3_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgweather_3_la-weather-wx.lo `test -f 'weather-wx.c' || echo '$(srcdir)/'`weather-wx.c
 
629
 
 
630
libgweather_3_la-weather-sun.lo: weather-sun.c
 
631
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgweather_3_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgweather_3_la-weather-sun.lo -MD -MP -MF $(DEPDIR)/libgweather_3_la-weather-sun.Tpo -c -o libgweather_3_la-weather-sun.lo `test -f 'weather-sun.c' || echo '$(srcdir)/'`weather-sun.c
 
632
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libgweather_3_la-weather-sun.Tpo $(DEPDIR)/libgweather_3_la-weather-sun.Plo
 
633
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
634
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='weather-sun.c' object='libgweather_3_la-weather-sun.lo' libtool=yes @AMDEPBACKSLASH@
 
635
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
636
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgweather_3_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgweather_3_la-weather-sun.lo `test -f 'weather-sun.c' || echo '$(srcdir)/'`weather-sun.c
 
637
 
 
638
libgweather_3_la-weather-moon.lo: weather-moon.c
 
639
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgweather_3_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgweather_3_la-weather-moon.lo -MD -MP -MF $(DEPDIR)/libgweather_3_la-weather-moon.Tpo -c -o libgweather_3_la-weather-moon.lo `test -f 'weather-moon.c' || echo '$(srcdir)/'`weather-moon.c
 
640
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libgweather_3_la-weather-moon.Tpo $(DEPDIR)/libgweather_3_la-weather-moon.Plo
 
641
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
642
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='weather-moon.c' object='libgweather_3_la-weather-moon.lo' libtool=yes @AMDEPBACKSLASH@
 
643
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
644
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgweather_3_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgweather_3_la-weather-moon.lo `test -f 'weather-moon.c' || echo '$(srcdir)/'`weather-moon.c
 
645
 
 
646
libgweather_3_la-gweather-enum-types.lo: gweather-enum-types.c
 
647
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgweather_3_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgweather_3_la-gweather-enum-types.lo -MD -MP -MF $(DEPDIR)/libgweather_3_la-gweather-enum-types.Tpo -c -o libgweather_3_la-gweather-enum-types.lo `test -f 'gweather-enum-types.c' || echo '$(srcdir)/'`gweather-enum-types.c
 
648
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libgweather_3_la-gweather-enum-types.Tpo $(DEPDIR)/libgweather_3_la-gweather-enum-types.Plo
 
649
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
650
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='gweather-enum-types.c' object='libgweather_3_la-gweather-enum-types.lo' libtool=yes @AMDEPBACKSLASH@
 
651
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
652
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgweather_3_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgweather_3_la-gweather-enum-types.lo `test -f 'gweather-enum-types.c' || echo '$(srcdir)/'`gweather-enum-types.c
 
653
 
 
654
libgweather_3_la-gweather-prefs.lo: gweather-prefs.c
 
655
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgweather_3_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgweather_3_la-gweather-prefs.lo -MD -MP -MF $(DEPDIR)/libgweather_3_la-gweather-prefs.Tpo -c -o libgweather_3_la-gweather-prefs.lo `test -f 'gweather-prefs.c' || echo '$(srcdir)/'`gweather-prefs.c
 
656
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libgweather_3_la-gweather-prefs.Tpo $(DEPDIR)/libgweather_3_la-gweather-prefs.Plo
 
657
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
658
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='gweather-prefs.c' object='libgweather_3_la-gweather-prefs.lo' libtool=yes @AMDEPBACKSLASH@
 
659
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
660
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgweather_3_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgweather_3_la-gweather-prefs.lo `test -f 'gweather-prefs.c' || echo '$(srcdir)/'`gweather-prefs.c
 
661
 
 
662
libgweather_3_la-gweather-gconf.lo: gweather-gconf.c
 
663
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgweather_3_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgweather_3_la-gweather-gconf.lo -MD -MP -MF $(DEPDIR)/libgweather_3_la-gweather-gconf.Tpo -c -o libgweather_3_la-gweather-gconf.lo `test -f 'gweather-gconf.c' || echo '$(srcdir)/'`gweather-gconf.c
 
664
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libgweather_3_la-gweather-gconf.Tpo $(DEPDIR)/libgweather_3_la-gweather-gconf.Plo
 
665
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
666
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='gweather-gconf.c' object='libgweather_3_la-gweather-gconf.lo' libtool=yes @AMDEPBACKSLASH@
 
667
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
668
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgweather_3_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgweather_3_la-gweather-gconf.lo `test -f 'gweather-gconf.c' || echo '$(srcdir)/'`gweather-gconf.c
 
669
 
 
670
libgweather_3_la-gweather-xml.lo: gweather-xml.c
 
671
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgweather_3_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgweather_3_la-gweather-xml.lo -MD -MP -MF $(DEPDIR)/libgweather_3_la-gweather-xml.Tpo -c -o libgweather_3_la-gweather-xml.lo `test -f 'gweather-xml.c' || echo '$(srcdir)/'`gweather-xml.c
 
672
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libgweather_3_la-gweather-xml.Tpo $(DEPDIR)/libgweather_3_la-gweather-xml.Plo
 
673
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
674
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='gweather-xml.c' object='libgweather_3_la-gweather-xml.lo' libtool=yes @AMDEPBACKSLASH@
 
675
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
676
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgweather_3_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgweather_3_la-gweather-xml.lo `test -f 'gweather-xml.c' || echo '$(srcdir)/'`gweather-xml.c
 
677
 
 
678
libgweather_3_la-gweather-location.lo: gweather-location.c
 
679
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgweather_3_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgweather_3_la-gweather-location.lo -MD -MP -MF $(DEPDIR)/libgweather_3_la-gweather-location.Tpo -c -o libgweather_3_la-gweather-location.lo `test -f 'gweather-location.c' || echo '$(srcdir)/'`gweather-location.c
 
680
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libgweather_3_la-gweather-location.Tpo $(DEPDIR)/libgweather_3_la-gweather-location.Plo
 
681
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
682
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='gweather-location.c' object='libgweather_3_la-gweather-location.lo' libtool=yes @AMDEPBACKSLASH@
 
683
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
684
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgweather_3_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgweather_3_la-gweather-location.lo `test -f 'gweather-location.c' || echo '$(srcdir)/'`gweather-location.c
 
685
 
 
686
libgweather_3_la-gweather-timezone.lo: gweather-timezone.c
 
687
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgweather_3_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgweather_3_la-gweather-timezone.lo -MD -MP -MF $(DEPDIR)/libgweather_3_la-gweather-timezone.Tpo -c -o libgweather_3_la-gweather-timezone.lo `test -f 'gweather-timezone.c' || echo '$(srcdir)/'`gweather-timezone.c
 
688
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libgweather_3_la-gweather-timezone.Tpo $(DEPDIR)/libgweather_3_la-gweather-timezone.Plo
 
689
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
690
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='gweather-timezone.c' object='libgweather_3_la-gweather-timezone.lo' libtool=yes @AMDEPBACKSLASH@
 
691
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
692
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgweather_3_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgweather_3_la-gweather-timezone.lo `test -f 'gweather-timezone.c' || echo '$(srcdir)/'`gweather-timezone.c
 
693
 
 
694
libgweather_3_la-location-entry.lo: location-entry.c
 
695
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgweather_3_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgweather_3_la-location-entry.lo -MD -MP -MF $(DEPDIR)/libgweather_3_la-location-entry.Tpo -c -o libgweather_3_la-location-entry.lo `test -f 'location-entry.c' || echo '$(srcdir)/'`location-entry.c
 
696
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libgweather_3_la-location-entry.Tpo $(DEPDIR)/libgweather_3_la-location-entry.Plo
 
697
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
698
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='location-entry.c' object='libgweather_3_la-location-entry.lo' libtool=yes @AMDEPBACKSLASH@
 
699
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
700
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgweather_3_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgweather_3_la-location-entry.lo `test -f 'location-entry.c' || echo '$(srcdir)/'`location-entry.c
 
701
 
 
702
libgweather_3_la-timezone-menu.lo: timezone-menu.c
 
703
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgweather_3_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgweather_3_la-timezone-menu.lo -MD -MP -MF $(DEPDIR)/libgweather_3_la-timezone-menu.Tpo -c -o libgweather_3_la-timezone-menu.lo `test -f 'timezone-menu.c' || echo '$(srcdir)/'`timezone-menu.c
 
704
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libgweather_3_la-timezone-menu.Tpo $(DEPDIR)/libgweather_3_la-timezone-menu.Plo
 
705
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
706
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='timezone-menu.c' object='libgweather_3_la-timezone-menu.lo' libtool=yes @AMDEPBACKSLASH@
 
707
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
708
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgweather_3_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgweather_3_la-timezone-menu.lo `test -f 'timezone-menu.c' || echo '$(srcdir)/'`timezone-menu.c
 
709
 
 
710
libgweather_3_la-parser.lo: parser.c
 
711
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgweather_3_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgweather_3_la-parser.lo -MD -MP -MF $(DEPDIR)/libgweather_3_la-parser.Tpo -c -o libgweather_3_la-parser.lo `test -f 'parser.c' || echo '$(srcdir)/'`parser.c
 
712
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libgweather_3_la-parser.Tpo $(DEPDIR)/libgweather_3_la-parser.Plo
 
713
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
714
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='parser.c' object='libgweather_3_la-parser.lo' libtool=yes @AMDEPBACKSLASH@
 
715
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
716
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgweather_3_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgweather_3_la-parser.lo `test -f 'parser.c' || echo '$(srcdir)/'`parser.c
 
717
 
 
718
libgweather_3_la-gweather-win32.lo: gweather-win32.c
 
719
@am__fastdepCC_TRUE@    $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgweather_3_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgweather_3_la-gweather-win32.lo -MD -MP -MF $(DEPDIR)/libgweather_3_la-gweather-win32.Tpo -c -o libgweather_3_la-gweather-win32.lo `test -f 'gweather-win32.c' || echo '$(srcdir)/'`gweather-win32.c
 
720
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/libgweather_3_la-gweather-win32.Tpo $(DEPDIR)/libgweather_3_la-gweather-win32.Plo
 
721
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
 
722
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='gweather-win32.c' object='libgweather_3_la-gweather-win32.lo' libtool=yes @AMDEPBACKSLASH@
 
723
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
724
@am__fastdepCC_FALSE@   $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgweather_3_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgweather_3_la-gweather-win32.lo `test -f 'gweather-win32.c' || echo '$(srcdir)/'`gweather-win32.c
763
725
 
764
726
test_metar-test_metar.o: test_metar.c
765
 
@am__fastdepCC_TRUE@    $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_metar_CFLAGS) $(CFLAGS) -MT test_metar-test_metar.o -MD -MP -MF $(DEPDIR)/test_metar-test_metar.Tpo -c -o test_metar-test_metar.o `test -f 'test_metar.c' || echo '$(srcdir)/'`test_metar.c
 
727
@am__fastdepCC_TRUE@    $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_metar_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_metar-test_metar.o -MD -MP -MF $(DEPDIR)/test_metar-test_metar.Tpo -c -o test_metar-test_metar.o `test -f 'test_metar.c' || echo '$(srcdir)/'`test_metar.c
766
728
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/test_metar-test_metar.Tpo $(DEPDIR)/test_metar-test_metar.Po
767
729
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
768
730
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='test_metar.c' object='test_metar-test_metar.o' libtool=no @AMDEPBACKSLASH@
769
731
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
770
 
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_metar_CFLAGS) $(CFLAGS) -c -o test_metar-test_metar.o `test -f 'test_metar.c' || echo '$(srcdir)/'`test_metar.c
 
732
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_metar_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_metar-test_metar.o `test -f 'test_metar.c' || echo '$(srcdir)/'`test_metar.c
771
733
 
772
734
test_metar-test_metar.obj: test_metar.c
773
 
@am__fastdepCC_TRUE@    $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_metar_CFLAGS) $(CFLAGS) -MT test_metar-test_metar.obj -MD -MP -MF $(DEPDIR)/test_metar-test_metar.Tpo -c -o test_metar-test_metar.obj `if test -f 'test_metar.c'; then $(CYGPATH_W) 'test_metar.c'; else $(CYGPATH_W) '$(srcdir)/test_metar.c'; fi`
 
735
@am__fastdepCC_TRUE@    $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_metar_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_metar-test_metar.obj -MD -MP -MF $(DEPDIR)/test_metar-test_metar.Tpo -c -o test_metar-test_metar.obj `if test -f 'test_metar.c'; then $(CYGPATH_W) 'test_metar.c'; else $(CYGPATH_W) '$(srcdir)/test_metar.c'; fi`
774
736
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/test_metar-test_metar.Tpo $(DEPDIR)/test_metar-test_metar.Po
775
737
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
776
738
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='test_metar.c' object='test_metar-test_metar.obj' libtool=no @AMDEPBACKSLASH@
777
739
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
778
 
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_metar_CFLAGS) $(CFLAGS) -c -o test_metar-test_metar.obj `if test -f 'test_metar.c'; then $(CYGPATH_W) 'test_metar.c'; else $(CYGPATH_W) '$(srcdir)/test_metar.c'; fi`
 
740
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_metar_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_metar-test_metar.obj `if test -f 'test_metar.c'; then $(CYGPATH_W) 'test_metar.c'; else $(CYGPATH_W) '$(srcdir)/test_metar.c'; fi`
779
741
 
780
742
test_sun_moon-test_sun_moon.o: test_sun_moon.c
781
 
@am__fastdepCC_TRUE@    $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_sun_moon_CFLAGS) $(CFLAGS) -MT test_sun_moon-test_sun_moon.o -MD -MP -MF $(DEPDIR)/test_sun_moon-test_sun_moon.Tpo -c -o test_sun_moon-test_sun_moon.o `test -f 'test_sun_moon.c' || echo '$(srcdir)/'`test_sun_moon.c
 
743
@am__fastdepCC_TRUE@    $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_sun_moon_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_sun_moon-test_sun_moon.o -MD -MP -MF $(DEPDIR)/test_sun_moon-test_sun_moon.Tpo -c -o test_sun_moon-test_sun_moon.o `test -f 'test_sun_moon.c' || echo '$(srcdir)/'`test_sun_moon.c
782
744
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/test_sun_moon-test_sun_moon.Tpo $(DEPDIR)/test_sun_moon-test_sun_moon.Po
783
745
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
784
746
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='test_sun_moon.c' object='test_sun_moon-test_sun_moon.o' libtool=no @AMDEPBACKSLASH@
785
747
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
786
 
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_sun_moon_CFLAGS) $(CFLAGS) -c -o test_sun_moon-test_sun_moon.o `test -f 'test_sun_moon.c' || echo '$(srcdir)/'`test_sun_moon.c
 
748
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_sun_moon_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_sun_moon-test_sun_moon.o `test -f 'test_sun_moon.c' || echo '$(srcdir)/'`test_sun_moon.c
787
749
 
788
750
test_sun_moon-test_sun_moon.obj: test_sun_moon.c
789
 
@am__fastdepCC_TRUE@    $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_sun_moon_CFLAGS) $(CFLAGS) -MT test_sun_moon-test_sun_moon.obj -MD -MP -MF $(DEPDIR)/test_sun_moon-test_sun_moon.Tpo -c -o test_sun_moon-test_sun_moon.obj `if test -f 'test_sun_moon.c'; then $(CYGPATH_W) 'test_sun_moon.c'; else $(CYGPATH_W) '$(srcdir)/test_sun_moon.c'; fi`
 
751
@am__fastdepCC_TRUE@    $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_sun_moon_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_sun_moon-test_sun_moon.obj -MD -MP -MF $(DEPDIR)/test_sun_moon-test_sun_moon.Tpo -c -o test_sun_moon-test_sun_moon.obj `if test -f 'test_sun_moon.c'; then $(CYGPATH_W) 'test_sun_moon.c'; else $(CYGPATH_W) '$(srcdir)/test_sun_moon.c'; fi`
790
752
@am__fastdepCC_TRUE@    $(AM_V_at)$(am__mv) $(DEPDIR)/test_sun_moon-test_sun_moon.Tpo $(DEPDIR)/test_sun_moon-test_sun_moon.Po
791
753
@am__fastdepCC_FALSE@   $(AM_V_CC) @AM_BACKSLASH@
792
754
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='test_sun_moon.c' object='test_sun_moon-test_sun_moon.obj' libtool=no @AMDEPBACKSLASH@
793
755
@AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
794
 
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_sun_moon_CFLAGS) $(CFLAGS) -c -o test_sun_moon-test_sun_moon.obj `if test -f 'test_sun_moon.c'; then $(CYGPATH_W) 'test_sun_moon.c'; else $(CYGPATH_W) '$(srcdir)/test_sun_moon.c'; fi`
 
756
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_sun_moon_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_sun_moon-test_sun_moon.obj `if test -f 'test_sun_moon.c'; then $(CYGPATH_W) 'test_sun_moon.c'; else $(CYGPATH_W) '$(srcdir)/test_sun_moon.c'; fi`
795
757
 
796
758
mostlyclean-libtool:
797
759
        -rm -f *.lo
798
760
 
799
761
clean-libtool:
800
762
        -rm -rf .libs _libs
 
763
install-girDATA: $(gir_DATA)
 
764
        @$(NORMAL_INSTALL)
 
765
        test -z "$(girdir)" || $(MKDIR_P) "$(DESTDIR)$(girdir)"
 
766
        @list='$(gir_DATA)'; test -n "$(girdir)" || list=; \
 
767
        for p in $$list; do \
 
768
          if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
 
769
          echo "$$d$$p"; \
 
770
        done | $(am__base_list) | \
 
771
        while read files; do \
 
772
          echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(girdir)'"; \
 
773
          $(INSTALL_DATA) $$files "$(DESTDIR)$(girdir)" || exit $$?; \
 
774
        done
 
775
 
 
776
uninstall-girDATA:
 
777
        @$(NORMAL_UNINSTALL)
 
778
        @list='$(gir_DATA)'; test -n "$(girdir)" || list=; \
 
779
        files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
 
780
        test -n "$$files" || exit 0; \
 
781
        echo " ( cd '$(DESTDIR)$(girdir)' && rm -f" $$files ")"; \
 
782
        cd "$(DESTDIR)$(girdir)" && rm -f $$files
801
783
install-pkgconfigDATA: $(pkgconfig_DATA)
802
784
        @$(NORMAL_INSTALL)
803
785
        test -z "$(pkgconfigdir)" || $(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)"
838
820
        test -n "$$files" || exit 0; \
839
821
        echo " ( cd '$(DESTDIR)$(schemadir)' && rm -f" $$files ")"; \
840
822
        cd "$(DESTDIR)$(schemadir)" && rm -f $$files
 
823
install-typelibDATA: $(typelib_DATA)
 
824
        @$(NORMAL_INSTALL)
 
825
        test -z "$(typelibdir)" || $(MKDIR_P) "$(DESTDIR)$(typelibdir)"
 
826
        @list='$(typelib_DATA)'; test -n "$(typelibdir)" || list=; \
 
827
        for p in $$list; do \
 
828
          if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
 
829
          echo "$$d$$p"; \
 
830
        done | $(am__base_list) | \
 
831
        while read files; do \
 
832
          echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(typelibdir)'"; \
 
833
          $(INSTALL_DATA) $$files "$(DESTDIR)$(typelibdir)" || exit $$?; \
 
834
        done
 
835
 
 
836
uninstall-typelibDATA:
 
837
        @$(NORMAL_UNINSTALL)
 
838
        @list='$(typelib_DATA)'; test -n "$(typelibdir)" || list=; \
 
839
        files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
 
840
        test -n "$$files" || exit 0; \
 
841
        echo " ( cd '$(DESTDIR)$(typelibdir)' && rm -f" $$files ")"; \
 
842
        cd "$(DESTDIR)$(typelibdir)" && rm -f $$files
841
843
install-libgweatherincHEADERS: $(libgweatherinc_HEADERS)
842
844
        @$(NORMAL_INSTALL)
843
845
        test -z "$(libgweatherincdir)" || $(MKDIR_P) "$(DESTDIR)$(libgweatherincdir)"
946
948
        $(MAKE) $(AM_MAKEFLAGS) check-am
947
949
all-am: Makefile $(LTLIBRARIES) $(PROGRAMS) $(DATA) $(HEADERS)
948
950
installdirs:
949
 
        for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(pkgconfigdir)" "$(DESTDIR)$(schemadir)" "$(DESTDIR)$(libgweatherincdir)"; do \
 
951
        for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(girdir)" "$(DESTDIR)$(pkgconfigdir)" "$(DESTDIR)$(schemadir)" "$(DESTDIR)$(typelibdir)" "$(DESTDIR)$(libgweatherincdir)"; do \
950
952
          test -z "$$dir" || $(MKDIR_P) "$$dir"; \
951
953
        done
952
954
install: $(BUILT_SOURCES)
1002
1004
 
1003
1005
info-am:
1004
1006
 
1005
 
install-data-am: install-data-local install-libgweatherincHEADERS \
1006
 
        install-pkgconfigDATA install-schemaDATA
 
1007
install-data-am: install-data-local install-girDATA \
 
1008
        install-libgweatherincHEADERS install-pkgconfigDATA \
 
1009
        install-schemaDATA install-typelibDATA
1007
1010
 
1008
1011
install-dvi: install-dvi-am
1009
1012
 
1049
1052
 
1050
1053
ps-am:
1051
1054
 
1052
 
uninstall-am: uninstall-libLTLIBRARIES uninstall-libgweatherincHEADERS \
1053
 
        uninstall-local uninstall-pkgconfigDATA uninstall-schemaDATA
 
1055
uninstall-am: uninstall-girDATA uninstall-libLTLIBRARIES \
 
1056
        uninstall-libgweatherincHEADERS uninstall-local \
 
1057
        uninstall-pkgconfigDATA uninstall-schemaDATA \
 
1058
        uninstall-typelibDATA
1054
1059
 
1055
1060
.MAKE: all check install install-am install-strip
1056
1061
 
1060
1065
        distclean-libtool distclean-tags distdir dvi dvi-am html \
1061
1066
        html-am info info-am install install-am install-data \
1062
1067
        install-data-am install-data-local install-dvi install-dvi-am \
1063
 
        install-exec install-exec-am install-html install-html-am \
1064
 
        install-info install-info-am install-libLTLIBRARIES \
1065
 
        install-libgweatherincHEADERS install-man install-pdf \
1066
 
        install-pdf-am install-pkgconfigDATA install-ps install-ps-am \
1067
 
        install-schemaDATA install-strip installcheck installcheck-am \
1068
 
        installdirs maintainer-clean maintainer-clean-generic \
1069
 
        mostlyclean mostlyclean-compile mostlyclean-generic \
1070
 
        mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \
1071
 
        uninstall-am uninstall-libLTLIBRARIES \
 
1068
        install-exec install-exec-am install-girDATA install-html \
 
1069
        install-html-am install-info install-info-am \
 
1070
        install-libLTLIBRARIES install-libgweatherincHEADERS \
 
1071
        install-man install-pdf install-pdf-am install-pkgconfigDATA \
 
1072
        install-ps install-ps-am install-schemaDATA install-strip \
 
1073
        install-typelibDATA installcheck installcheck-am installdirs \
 
1074
        maintainer-clean maintainer-clean-generic mostlyclean \
 
1075
        mostlyclean-compile mostlyclean-generic mostlyclean-libtool \
 
1076
        pdf pdf-am ps ps-am tags uninstall uninstall-am \
 
1077
        uninstall-girDATA uninstall-libLTLIBRARIES \
1072
1078
        uninstall-libgweatherincHEADERS uninstall-local \
1073
 
        uninstall-pkgconfigDATA uninstall-schemaDATA
 
1079
        uninstall-pkgconfigDATA uninstall-schemaDATA \
 
1080
        uninstall-typelibDATA
1074
1081
 
1075
1082
 
1076
1083
gweather-enum-types.h: $(gweather_new_headers)
1087
1094
 
1088
1095
@INTLTOOL_SCHEMAS_RULE@
1089
1096
 
 
1097
# Introspection
 
1098
-include $(INTROSPECTION_MAKEFILE)
 
1099
 
 
1100
@HAVE_INTROSPECTION_TRUE@GWeather-3.0.gir: libgweather-3.la Makefile
 
1101
 
1090
1102
@GCONF_SCHEMAS_INSTALL_TRUE@install-data-local:
1091
1103
@GCONF_SCHEMAS_INSTALL_TRUE@    if test -z "$(DESTDIR)" ; then \
1092
1104
@GCONF_SCHEMAS_INSTALL_TRUE@            for p in $(schema_DATA) ; do \
1093
 
@GCONF_SCHEMAS_INSTALL_TRUE@                    GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) $(GCONFTOOL) --makefile-install-rule $$p ; \
 
1105
@GCONF_SCHEMAS_INSTALL_TRUE@                    GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) $(GCONFTOOL) --makefile-install-rule $(top_builddir)/libgweather/$$p ; \
1094
1106
@GCONF_SCHEMAS_INSTALL_TRUE@            done \
1095
1107
@GCONF_SCHEMAS_INSTALL_TRUE@    fi
1096
1108
@GCONF_SCHEMAS_INSTALL_TRUE@uninstall-local:
1097
1109
@GCONF_SCHEMAS_INSTALL_TRUE@    for p in $(schema_DATA) ; do \
1098
 
@GCONF_SCHEMAS_INSTALL_TRUE@            GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) $(GCONFTOOL) --makefile-uninstall-rule $$p ; \
 
1110
@GCONF_SCHEMAS_INSTALL_TRUE@            GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) $(GCONFTOOL) --makefile-uninstall-rule $(top_builddir)/libgweather/$$p ; \
1099
1111
@GCONF_SCHEMAS_INSTALL_TRUE@    done
1100
1112
 
1101
1113
-include $(top_srcdir)/git.mk