summaryrefslogtreecommitdiff
path: root/indicator-applet/src/Makefile.am
diff options
context:
space:
mode:
authormbkma <[email protected]>2026-01-31 12:11:25 +0100
committermbkma <[email protected]>2026-01-31 12:11:25 +0100
commitbb4fa0ea945f9dd4d0bff0182c381c2f14f78ae3 (patch)
tree523c91356c59557d0bcfa0a878f4e5cadd0c4ab2 /indicator-applet/src/Makefile.am
parentd433bbd9aeb7ae3377e59c70f6608c3e29f9ebbc (diff)
downloadmate-applets-integrate-all-applets.tar.bz2
mate-applets-integrate-all-applets.tar.xz
merge mate-indicator-applet and sensors-applet into mate-appletsintegrate-all-applets
Diffstat (limited to 'indicator-applet/src/Makefile.am')
-rw-r--r--indicator-applet/src/Makefile.am89
1 files changed, 89 insertions, 0 deletions
diff --git a/indicator-applet/src/Makefile.am b/indicator-applet/src/Makefile.am
new file mode 100644
index 00000000..d11977ea
--- /dev/null
+++ b/indicator-applet/src/Makefile.am
@@ -0,0 +1,89 @@
+if WITH_AYATANA_INDICATOR
+INDICATOR_CFLAGS = $(AYATANA_INDICATOR_CFLAGS) \
+ $(AYATANA_INDICATOR_NG_CFLAGS)
+INDICATOR_LIBS = $(AYATANA_INDICATOR_LIBS) \
+ $(AYATANA_INDICATOR_NG_LIBS)
+endif
+
+if WITH_UBUNTU_INDICATOR
+INDICATOR_CFLAGS = $(UBUNTU_INDICATOR_CFLAGS) \
+ $(UBUNTU_INDICATOR_NG_CFLAGS)
+INDICATOR_LIBS = $(UBUNTU_INDICATOR_LIBS) \
+ $(UBUNTU_INDICATOR_NG_LIBS)
+endif
+
+libexec_PROGRAMS = \
+ mate-indicator-applet \
+ mate-indicator-applet-appmenu \
+ mate-indicator-applet-complete
+
+mate_indicator_applet_CFLAGS = \
+ -DG_LOG_DOMAIN=\""Indicator-Applet"\" \
+ -DDATADIR=\""$(datadir)"\" \
+ -DINDICATOR_DIR=\""$(INDICATORDIR)"\" \
+ -DINDICATOR_ICONS_DIR=\""$(INDICATORICONSDIR)"\" \
+ -DINDICATOR_APPLET \
+ -I$(srcdir)/.. \
+ $(INDICATOR_APPLET_CFLAGS) \
+ $(INDICATOR_CFLAGS) \
+ $(WARN_CFLAGS)
+
+mate_indicator_applet_SOURCES = \
+ applet-main.c \
+ eggaccelerators.c \
+ eggaccelerators.h \
+ tomboykeybinder.c \
+ tomboykeybinder.h
+
+mate_indicator_applet_LDADD = \
+ $(INDICATOR_APPLET_LIBS) \
+ $(INDICATOR_LIBS) \
+ -lX11
+
+mate_indicator_applet_appmenu_CFLAGS = \
+ -DG_LOG_DOMAIN=\""Indicator-Applet-Appmenu"\" \
+ -DDATADIR=\""$(datadir)"\" \
+ -DINDICATOR_DIR=\""$(INDICATORDIR)"\" \
+ -DINDICATOR_ICONS_DIR=\""$(INDICATORICONSDIR)"\" \
+ -DINDICATOR_APPLET_APPMENU \
+ -I$(srcdir)/.. \
+ $(INDICATOR_APPLET_CFLAGS) \
+ $(INDICATOR_CFLAGS) \
+ $(WARN_CFLAGS)
+
+mate_indicator_applet_appmenu_SOURCES = \
+ applet-main.c \
+ eggaccelerators.c \
+ eggaccelerators.h \
+ tomboykeybinder.c \
+ tomboykeybinder.h
+
+mate_indicator_applet_appmenu_LDADD = \
+ $(INDICATOR_APPLET_LIBS) \
+ $(INDICATOR_LIBS) \
+ -lX11
+
+mate_indicator_applet_complete_CFLAGS = \
+ -DG_LOG_DOMAIN=\""Indicator-Applet-Complete"\" \
+ -DDATADIR=\""$(datadir)"\" \
+ -DINDICATOR_DIR=\""$(INDICATORDIR)"\" \
+ -DINDICATOR_ICONS_DIR=\""$(INDICATORICONSDIR)"\" \
+ -DINDICATOR_APPLET_COMPLETE \
+ -I$(srcdir)/.. \
+ $(INDICATOR_APPLET_CFLAGS) \
+ $(INDICATOR_CFLAGS) \
+ $(WARN_CFLAGS)
+
+mate_indicator_applet_complete_SOURCES = \
+ applet-main.c \
+ eggaccelerators.c \
+ eggaccelerators.h \
+ tomboykeybinder.c \
+ tomboykeybinder.h
+
+mate_indicator_applet_complete_LDADD = \
+ $(INDICATOR_APPLET_LIBS) \
+ $(INDICATOR_LIBS) \
+ -lX11
+
+-include $(top_srcdir)/git.mk