diff options
author | Hao Sheng <hao.sheng@sun.com> | 2004-03-15 14:21:53 +0800 |
---|---|---|
committer | Yuedong Du <york@src.gnome.org> | 2004-03-15 14:21:53 +0800 |
commit | b02e9c61d7ef00837082581bea73c3f82d31f82e (patch) | |
tree | defb2be7d1cd32401ee0c9968415b284ea707384 /a11y/addressbook/Makefile.am | |
parent | 0d9c21aba16a78315034be6f74742cefe5340e9c (diff) | |
download | gsoc2013-evolution-b02e9c61d7ef00837082581bea73c3f82d31f82e.tar.gz gsoc2013-evolution-b02e9c61d7ef00837082581bea73c3f82d31f82e.tar.zst gsoc2013-evolution-b02e9c61d7ef00837082581bea73c3f82d31f82e.zip |
Contritbuted by Leon Zhang <leon.zhang@sun.com> add directory addressbook.
2003-03-15 Hao Sheng <hao.sheng@sun.com>
* Contritbuted by Leon Zhang <leon.zhang@sun.com>
* Makefile.am: add directory addressbook.
* implement basic accessbility addressbook's minicard.
add new directory and Files below:
addressbook/
addressbook/Makefile.am
addressbook/ea-addressbook.c
addressbook/ea-addressbook-view.c
addressbook/ea-minicard.c
addressbook/ea-minicard-view.c
addressbook/ea-addressbook.h
addressbook/ea-addressbook-view.h
addressbook/ea-minicard.h
addressbook/ea-minicard-view.h
svn path=/trunk/; revision=25060
Diffstat (limited to 'a11y/addressbook/Makefile.am')
-rw-r--r-- | a11y/addressbook/Makefile.am | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/a11y/addressbook/Makefile.am b/a11y/addressbook/Makefile.am new file mode 100644 index 0000000000..86d5fbe3ad --- /dev/null +++ b/a11y/addressbook/Makefile.am @@ -0,0 +1,33 @@ +privlib_LTLIBRARIES = libevolution-addressbook-a11y.la + +INCLUDES = \ + -DG_LOG_DOMAIN=\"evolution-a11y\" \ + -I$(top_srcdir)/a11y \ + -I$(top_srcdir)/a11y/addressbook \ + -I$(top_srcdir)/shell \ + -I$(top_srcdir)/addressbook \ + -I$(top_srcdir)/addressbook/gui \ + -I$(top_srcdir)/addressbook/gui/widgets \ + -I$(top_srcdir)/addressbook/gui/contact-editor \ + -I$(top_srcdir)/addressbook/backend \ + -I$(top_srcdir)/addressbook/backend/ebook \ + -DEVOLUTION_DATADIR=\""$(datadir)"\" \ + -DEVOLUTION_GLADEDIR=\""$(gladedir)"\" \ + -DEVOLUTION_ETSPECDIR=\""$(etspecdir)"\" \ + -DEVOLUTION_IMAGESDIR=\""$(imagesdir)"\" \ + -DEVOLUTION_GALVIEWSDIR=\""$(viewsdir)"\" \ + -DEVOLUTION_UIDIR=\""$(evolutionuidir)"\" \ + -DG_DISABLE_DEPRECATED \ + -DPREFIX=\""$(prefix)"\" \ + $(A11Y_CFLAGS) \ + $(EVOLUTION_ADDRESSBOOK_CFLAGS) + +libevolution_addressbook_a11y_la_SOURCES = \ + ea-minicard.c \ + ea-minicard.h \ + ea-minicard-view.c \ + ea-minicard-view.h \ + ea-addressbook-view.c \ + ea-addressbook-view.h \ + ea-addressbook.c \ + ea-addressbook.h |