diff options
author | Ted Gould <ted@gould.cx> | 2010-01-04 22:38:47 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-01-04 22:38:47 -0600 |
commit | 9434c8a9f162cab1f525ed892a133a688bb3e223 (patch) | |
tree | 450013cc64addd136756894b71f9d9eecaf82e9f | |
parent | 82381c6aeec60c8c4d8e88bd317321d10eeb0c9f (diff) | |
download | ayatana-indicator-datetime-9434c8a9f162cab1f525ed892a133a688bb3e223.tar.gz ayatana-indicator-datetime-9434c8a9f162cab1f525ed892a133a688bb3e223.tar.bz2 ayatana-indicator-datetime-9434c8a9f162cab1f525ed892a133a688bb3e223.zip |
Building a very basic indicator.
-rw-r--r-- | .bzrignore | 2 | ||||
-rw-r--r-- | src/Makefile.am | 13 | ||||
-rw-r--r-- | src/indicator-datetime.c | 0 |
3 files changed, 15 insertions, 0 deletions
@@ -1,2 +1,4 @@ compile m4 +src/libdatetime.la +src/libdatetime_la-indicator-datetime.lo diff --git a/src/Makefile.am b/src/Makefile.am index e69de29..390f89a 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -0,0 +1,13 @@ + +datetimelibdir = $(INDICATORDIR) +datetimelib_LTLIBRARIES = libdatetime.la +libdatetime_la_SOURCES = \ + indicator-datetime.c +libdatetime_la_CFLAGS = \ + $(INDICATOR_CFLAGS) \ + -Wall -Werror +libdatetime_la_LIBADD = \ + $(INDICATOR_LIBS) +libdatetime_la_LDFLAGS = \ + -module \ + -avoid-version diff --git a/src/indicator-datetime.c b/src/indicator-datetime.c new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/src/indicator-datetime.c |