16b2169965
The new mechanism for GLib deprecations is significantly better, and this breaks the build in real world situations. https://bugzilla.gnome.org/show_bug.cgi?id=706089
28 lines
589 B
Plaintext
28 lines
589 B
Plaintext
tray_cflags = \
|
|
-I$(top_srcdir)/src \
|
|
-DG_LOG_DOMAIN=\"notification_area\" \
|
|
$(TRAY_CFLAGS) \
|
|
$(NULL)
|
|
|
|
BUILT_SOURCES += $(tray_built_sources)
|
|
|
|
# please, keep this sorted alphabetically
|
|
tray_source = \
|
|
tray/na-tray-child.c \
|
|
tray/na-tray-child.h \
|
|
tray/na-tray-manager.c \
|
|
tray/na-tray-manager.h \
|
|
$(NULL)
|
|
|
|
noinst_LTLIBRARIES += libtray.la
|
|
|
|
libtray_la_LIBADD = $(TRAY_LIBS)
|
|
libtray_la_SOURCES = \
|
|
$(tray_source) \
|
|
$(tray_built_sources) \
|
|
$(NULL)
|
|
libtray_la_CPPFLAGS = $(tray_cflags)
|
|
libtray_la_LDFLAGS = $(LDADD)
|
|
|
|
CLEANFILES += $(TRAY_STAMP_FILES) $(BUILT_SOURCES)
|