File: Makefile.am

package info (click to toggle)
xfce4-weather-plugin 0.8.3-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie
  • size: 9,200 kB
  • ctags: 1,320
  • sloc: sh: 11,439; ansic: 8,032; makefile: 456
file content (69 lines) | stat: -rw-r--r-- 1,734 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
AM_CPPFLAGS =								\
	-I$(top_srcdir)							\
	-DTHEMESDIR=\"$(datadir)/xfce4/weather/icons\" 			\
	-DGEONAMES_USERNAME=\"@GEONAMES_USERNAME@\" 			\
	-DPACKAGE_LOCALE_DIR=\"$(localedir)\"				\
	-DG_LOG_DOMAIN=\"weather\"

plugin_LTLIBRARIES = libweather.la

plugindir = $(libdir)/xfce4/panel/plugins

libweather_la_SOURCES =						\
	weather.c							\
	weather.h							\
	weather-config.c						\
	weather-config.h						\
	weather-data.c							\
	weather-data.h							\
	weather-debug.c							\
	weather-debug.h							\
	weather-icon.c							\
	weather-icon.h							\
	weather-parsers.c						\
	weather-parsers.h						\
	weather-scrollbox.c						\
	weather-scrollbox.h						\
	weather-search.c						\
	weather-search.h						\
	weather-summary.c						\
	weather-summary.h						\
	weather-translate.c						\
	weather-translate.h

libweather_la_CFLAGS =						\
	$(LIBXFCE4PANEL_CFLAGS)						\
	$(LIBXFCE4UI_CFLAGS)						\
	$(LIBXFCE4UTIL_CFLAGS)						\
	$(GTK_CFLAGS)							\
	$(SOUP_CFLAGS)							\
	$(UPOWER_GLIB_CFLAGS)						\
	$(LIBXML_CFLAGS)

libweather_la_LIBADD =						\
	$(LIBM)                                 \
	$(LIBXFCE4PANEL_LIBS)						\
	$(LIBXFCE4UTIL_LIBS)						\
	$(LIBXFCE4UI_LIBS)						\
	$(GTK_LIBS)							\
	$(LIBXML_LIBS)							\
	$(SOUP_LIBS)

libweather_la_LDFLAGS = \
	-avoid-version \
	-module \
	-no-undefined \
	-export-symbols-regex '^xfce_panel_module_(preinit|init|construct)' \
	$(PLATFORM_LDFLAGS) \
	$(UPOWER_GLIB_LIBS)

desktopdir = $(datadir)/xfce4/panel/plugins
desktop_in_files = weather.desktop.in
desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
@INTLTOOL_DESKTOP_RULE@

EXTRA_DIST = $(desktop_in_files)

CLEANFILES = $(desktop_DATA)

# vi:set ts=8 sw=8 noet ai nocindent syntax=automake: