diff options
-rw-r--r-- | .bzrignore | 3 | ||||
-rw-r--r-- | po/POTFILES.in | 2 | ||||
-rw-r--r-- | src/Makefile.am | 13 | ||||
-rw-r--r-- | src/datetime-service.c | 7 |
4 files changed, 25 insertions, 0 deletions
@@ -2,3 +2,6 @@ compile m4 src/libdatetime.la src/libdatetime_la-indicator-datetime.lo +src/indicator-datetime-service +po/indicator-datetime.pot +indicator-datetime-[0-9].[0-9].[0-9].tar.gz diff --git a/po/POTFILES.in b/po/POTFILES.in index e69de29..41324a7 100644 --- a/po/POTFILES.in +++ b/po/POTFILES.in @@ -0,0 +1,2 @@ +src/indicator-datetime.c +src/datetime-service.c diff --git a/src/Makefile.am b/src/Makefile.am index 390f89a..bf9093d 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,4 +1,15 @@ +libexec_PROGRAMS = indicator-datetime-service + +indicator_datetime_service_SOURCES = \ + datetime-service.c +indicator_datetime_service_CFLAGS = \ + -Wall \ + -Werror \ + $(INDICATOR_CFLAGS) +indicator_datetime_service_LDADD = \ + $(INDICATOR_LIBS) + datetimelibdir = $(INDICATORDIR) datetimelib_LTLIBRARIES = libdatetime.la libdatetime_la_SOURCES = \ @@ -11,3 +22,5 @@ libdatetime_la_LIBADD = \ libdatetime_la_LDFLAGS = \ -module \ -avoid-version + +EXTRA_DIST = $(libdatetime_la_SOURCES) diff --git a/src/datetime-service.c b/src/datetime-service.c new file mode 100644 index 0000000..63590c7 --- /dev/null +++ b/src/datetime-service.c @@ -0,0 +1,7 @@ + +int +main (int argc, char ** argv) +{ + + return 0; +} |