diff options
author | Bolian Yin <bolian.yin@sun.com> | 2003-11-11 18:33:43 +0800 |
---|---|---|
committer | Bolian Yin <byin@src.gnome.org> | 2003-11-11 18:33:43 +0800 |
commit | 59b0ca9123615e8082f2dcbbd9b56ffcf99354d4 (patch) | |
tree | 842bebb34ebb245ee199abe06ca8362785a1b645 /a11y/widgets/Makefile.am | |
parent | 5a6f72675ef9a453933bba3f3857cfecd5de101f (diff) | |
download | gsoc2013-evolution-59b0ca9123615e8082f2dcbbd9b56ffcf99354d4.tar.gz gsoc2013-evolution-59b0ca9123615e8082f2dcbbd9b56ffcf99354d4.tar.zst gsoc2013-evolution-59b0ca9123615e8082f2dcbbd9b56ffcf99354d4.zip |
Fixes #50538
2003-11-11 Bolian Yin <bolian.yin@sun.com>
Fixes #50538
* new files:
widgets/ea-calendar-cell.[hc]
* widgets/ea-calendar-item: impl. atk selection and atk table interface. * widgets/Makefile.am : use shared object library (.so)
svn path=/trunk/; revision=23283
Diffstat (limited to 'a11y/widgets/Makefile.am')
-rw-r--r-- | a11y/widgets/Makefile.am | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/a11y/widgets/Makefile.am b/a11y/widgets/Makefile.am index c6b0ea2221..0fb3e11b43 100644 --- a/a11y/widgets/Makefile.am +++ b/a11y/widgets/Makefile.am @@ -1,5 +1,8 @@ -noinst_LTLIBRARIES = libevolution-widgets-a11y.la +# for debug +#A11Y_CFLAGS += -pedantic -ansi -DACC_DEBUG -Werror + +privlib_LTLIBRARIES = libevolution-widgets-a11y.la INCLUDES = \ -DG_LOG_DOMAIN=\"evolution-a11y\" \ @@ -19,5 +22,11 @@ INCLUDES = \ libevolution_widgets_a11y_la_SOURCES = \ ea-calendar-item.c \ ea-calendar-item.h \ + ea-calendar-cell.c \ + ea-calendar-cell.h \ ea-widgets.c \ ea-widgets.h + +libevolution_widgets_a11y_la_LIBADD = \ + $(top_builddir)/a11y/libevolution-a11y.la + |