diff options
author | Ted Gould <ted@gould.cx> | 2010-02-25 12:43:10 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-02-25 12:43:10 -0600 |
commit | 61ce438fbf8ccd5e4930de82a7971d610eb84d48 (patch) | |
tree | ebfbec5ac52e21cf8b64d84617d3b2852015478e /src | |
parent | 9646023abbcc4f2914fa513118a9de8c3e9374c0 (diff) | |
parent | 8485bb2d3922cad9bd0fd22faeb42a1ee5ffc741 (diff) | |
download | ayatana-indicator-datetime-61ce438fbf8ccd5e4930de82a7971d610eb84d48.tar.gz ayatana-indicator-datetime-61ce438fbf8ccd5e4930de82a7971d610eb84d48.tar.bz2 ayatana-indicator-datetime-61ce438fbf8ccd5e4930de82a7971d610eb84d48.zip |
Initial Upstream Release
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 13 | ||||
-rw-r--r-- | src/datetime-service.c | 7 |
2 files changed, 20 insertions, 0 deletions
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; +} |