diff options
author | Stefano Karapetsas <[email protected]> | 2014-06-25 13:45:56 +0200 |
---|---|---|
committer | Stefano Karapetsas <[email protected]> | 2014-06-25 13:45:56 +0200 |
commit | 12ea8a6c3b8b1e6fd7c62624dd123ae49d92d833 (patch) | |
tree | 0185de9306f566a3e4d5b0c8e410d09983a442f0 /src | |
parent | 943924d35691a84eb157a7ed8603f6c1f2bf9a6b (diff) | |
download | mate-indicator-applet-12ea8a6c3b8b1e6fd7c62624dd123ae49d92d833.tar.bz2 mate-indicator-applet-12ea8a6c3b8b1e6fd7c62624dd123ae49d92d833.tar.xz |
Rename binaries to not conflict with indicator-applet
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 33 |
1 files changed, 18 insertions, 15 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index a1428b2..1b66f5e 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,10 +1,10 @@ libexec_PROGRAMS = \ - indicator-applet \ - indicator-applet-appmenu \ - indicator-applet-complete + mate-indicator-applet \ + mate-indicator-applet-appmenu \ + mate-indicator-applet-complete -indicator_applet_CFLAGS = \ +mate_indicator_applet_CFLAGS = \ -DG_LOG_DOMAIN=\""Indicator-Applet"\" \ -DDATADIR=\""$(datadir)"\" \ -DINDICATOR_DIR=\""$(INDICATORDIR)"\" \ @@ -14,18 +14,19 @@ indicator_applet_CFLAGS = \ $(APPLET_CFLAGS) \ $(INDICATOR3_CFLAGS) $(INDICATOR4_CFLAGS) -indicator_applet_SOURCES = \ +mate_indicator_applet_SOURCES = \ applet-main.c \ eggaccelerators.c \ eggaccelerators.h \ tomboykeybinder.c \ tomboykeybinder.h -indicator_applet_LDADD = \ +mate_indicator_applet_LDADD = \ $(APPLET_LIBS) \ - $(INDICATOR3_LIBS) $(INDICATOR4_LIBS) + $(INDICATOR3_LIBS) $(INDICATOR4_LIBS) \ + -lX11 -indicator_applet_appmenu_CFLAGS = \ +mate_indicator_applet_appmenu_CFLAGS = \ -DG_LOG_DOMAIN=\""Indicator-Applet-Appmenu"\" \ -DDATADIR=\""$(datadir)"\" \ -DINDICATOR_DIR=\""$(INDICATORDIR)"\" \ @@ -35,18 +36,19 @@ indicator_applet_appmenu_CFLAGS = \ $(APPLET_CFLAGS) \ $(INDICATOR3_CFLAGS) $(INDICATOR4_CFLAGS) -indicator_applet_appmenu_SOURCES = \ +mate_indicator_applet_appmenu_SOURCES = \ applet-main.c \ eggaccelerators.c \ eggaccelerators.h \ tomboykeybinder.c \ tomboykeybinder.h -indicator_applet_appmenu_LDADD = \ +mate_indicator_applet_appmenu_LDADD = \ $(APPLET_LIBS) \ - $(INDICATOR3_LIBS) $(INDICATOR4_LIBS) + $(INDICATOR3_LIBS) $(INDICATOR4_LIBS) \ + -lX11 -indicator_applet_complete_CFLAGS = \ +mate_indicator_applet_complete_CFLAGS = \ -DG_LOG_DOMAIN=\""Indicator-Applet-Complete"\" \ -DDATADIR=\""$(datadir)"\" \ -DINDICATOR_DIR=\""$(INDICATORDIR)"\" \ @@ -56,13 +58,14 @@ indicator_applet_complete_CFLAGS = \ $(APPLET_CFLAGS) \ $(INDICATOR3_CFLAGS) $(INDICATOR4_CFLAGS) -indicator_applet_complete_SOURCES = \ +mate_indicator_applet_complete_SOURCES = \ applet-main.c \ eggaccelerators.c \ eggaccelerators.h \ tomboykeybinder.c \ tomboykeybinder.h -indicator_applet_complete_LDADD = \ +mate_indicator_applet_complete_LDADD = \ $(APPLET_LIBS) \ - $(INDICATOR3_LIBS) $(INDICATOR4_LIBS) + $(INDICATOR3_LIBS) $(INDICATOR4_LIBS) \ + -lX11 |