diff options
Diffstat (limited to 'mateweather/Makefile.am')
-rw-r--r-- | mateweather/Makefile.am | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/mateweather/Makefile.am b/mateweather/Makefile.am new file mode 100644 index 00000000..a14dcaaa --- /dev/null +++ b/mateweather/Makefile.am @@ -0,0 +1,62 @@ +## Process this file with automake to produce Makefile.in + +SUBDIRS = docs + +INCLUDES = \ + -I$(srcdir) \ + -I$(top_srcdir) \ + -DMATEWEATHER_MENU_UI_DIR=\""$(uidir)"\" \ + $(MATE_APPLETS3_CFLAGS) \ + $(LIBMATENOTIFY_CFLAGS) \ + $(LIBMATEWEATHER_CFLAGS) \ + $(NETWORKMANAGER_CFLAGS) + +libexec_PROGRAMS = mateweather-applet-2 + +mateweather_applet_2_SOURCES = \ + mateweather.h \ + main.c \ + mateweather-about.c mateweather-about.h \ + mateweather-pref.c mateweather-pref.h \ + mateweather-dialog.c mateweather-dialog.h \ + mateweather-applet.c mateweather-applet.h + +mateweather_applet_2_LDADD = \ + $(LIBMATENOTIFY_LIBS) \ + $(MATE_APPLETS3_LIBS) \ + $(MATE_LIBS2_LIBS) \ + $(LIBMATEWEATHER_LIBS) \ + $(NETWORKMANAGER_LIBS) + +uidir = $(datadir)/mate-2.0/ui +ui_DATA = mateweather-applet-menu.xml + +appletdir = $(datadir)/mate-panel/applets +applet_in_files = org.mate.applets.MateWeatherApplet.mate-panel-applet.in +applet_DATA = $(applet_in_files:.mate-panel-applet.in=.mate-panel-applet) + +$(applet_in_files): $(applet_in_files).in Makefile + $(AM_V_GEN)sed \ + -e "s|\@LIBEXECDIR\@|$(libexecdir)|" \ + -e "s|\@VERSION\@|$(PACKAGE_VERSION)|" \ + $< > $@ + +%.mate-panel-applet: %.mate-panel-applet.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*po) ; $(INTLTOOL_MERGE) $(top_srcdir)/po $< $@ -d -u -c $(top_builddir)/po/.intltool-merge-cache + +servicedir = $(datadir)/dbus-1/services +service_in_files = org.mate.panel.applet.MateWeatherAppletFactory.service.in +service_DATA = $(service_in_files:.service.in=.service) + +org.mate.panel.applet.MateWeatherAppletFactory.service: $(service_in_files) + $(AM_V_GEN)sed \ + -e "s|\@LIBEXECDIR\@|$(libexecdir)|" \ + $< > $@ + +CLEANFILES = $(applet_DATA) $(applet_DATA).in $(service_DATA) + +EXTRA_DIST = \ + org.mate.applets.MateWeatherApplet.mate-panel-applet.in.in \ + $(service_in_files) \ + $(ui_DATA) + +-include $(top_srcdir)/git.mk |