diff options
author | karl-qdh <karl@qdh.org.uk> | 2011-02-25 17:22:33 +0000 |
---|---|---|
committer | karl-qdh <karl@qdh.org.uk> | 2011-02-25 17:22:33 +0000 |
commit | 0188356e069018c07849f8c2c09c9741bbf70ff5 (patch) | |
tree | a0ba2047125ba0ada887f2722ea0c11a52fd9792 /src/Makefile.am | |
parent | d0e5a69a026bc879759cde57f8ba324c67b6b37a (diff) | |
parent | 6f103ce25995b5a40967b0ba683b7f7330aadd8a (diff) | |
download | ayatana-indicator-datetime-0188356e069018c07849f8c2c09c9741bbf70ff5.tar.gz ayatana-indicator-datetime-0188356e069018c07849f8c2c09c9741bbf70ff5.tar.bz2 ayatana-indicator-datetime-0188356e069018c07849f8c2c09c9741bbf70ff5.zip |
Updated to newest trunk needs more merging
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 28 |
1 files changed, 27 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 7a290c6..6d388c7 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,4 +1,5 @@ +bin_PROGRAMS = indicator-datetime-preferences libexec_PROGRAMS = indicator-datetime-service indicator_datetime_service_SOURCES = \ @@ -8,7 +9,10 @@ indicator_datetime_service_SOURCES = \ calendar-menu-item.c \ calendar-menu-item.h \ datetime-service.c \ - dbus-shared.h + utils.c \ + utils.h \ + dbus-shared.h \ + settings-shared.h indicator_datetime_service_CFLAGS = \ -Wall \ -Werror \ @@ -23,6 +27,9 @@ datetimelib_LTLIBRARIES = libdatetime.la libdatetime_la_SOURCES = \ gen-datetime-service.xml.h \ dbus-shared.h \ + settings-shared.h \ + utils.c \ + utils.h \ indicator-datetime.c libdatetime_la_CFLAGS = \ $(INDICATOR_CFLAGS) \ @@ -34,6 +41,25 @@ libdatetime_la_LDFLAGS = \ -module \ -avoid-version +indicator_datetime_preferences_SOURCES =\ + datetime-prefs.c \ + datetime-prefs-locations.c \ + datetime-prefs-locations.h \ + timezone-completion.c \ + timezone-completion.h \ + utils.c \ + utils.h \ + settings-shared.h +indicator_datetime_preferences_CFLAGS = \ + -Wall \ + -Werror \ + -I$(top_srcdir)/libmap \ + $(PREF_CFLAGS) \ + -DPKGDATADIR="\"$(pkgdatadir)\"" +indicator_datetime_preferences_LDADD = \ + $(top_builddir)/libmap/libmap.la \ + $(PREF_LIBS) + gen-%.xml.c: %.xml @echo "Building $@ from $<" @echo "const char * _$(subst -,_,$(subst .,_,$(basename $<))) = " > $@ |