diff options
author | Bolian Yin <bolian.yin@sun.com> | 2003-08-20 15:46:05 +0800 |
---|---|---|
committer | Bolian Yin <byin@src.gnome.org> | 2003-08-20 15:46:05 +0800 |
commit | 7bb25afd430ffab77397d9fc4e6b756251ba31d8 (patch) | |
tree | e5aed36d5b6b60807223983ed3f03bf77c75fccf /a11y/Makefile.am | |
parent | 432977b820abd0093e6f68f81bd7c01fafc3536f (diff) | |
download | gsoc2013-evolution-7bb25afd430ffab77397d9fc4e6b756251ba31d8.tar.gz gsoc2013-evolution-7bb25afd430ffab77397d9fc4e6b756251ba31d8.tar.zst gsoc2013-evolution-7bb25afd430ffab77397d9fc4e6b756251ba31d8.zip |
setup the a11y directory for evolution accessibility work New files are:
2003-08-20 Bolian Yin <bolian.yin@sun.com>
setup the a11y directory for evolution accessibility work
New files are:
ChangeLog
ea-factory.h
Makefile.am
calendar/ea-calendar.c
calendar/ea-calendar.h
calendar/ea-calendar-helpers.c
calendar/ea-calendar-helpers.h
calendar/ea-cal-view.c
calendar/ea-cal-view.h
calendar/ea-cal-view-event.c
calendar/ea-cal-view-event.h
calendar/ea-day-view.c
calendar/ea-day-view.h
calendar/ea-week-view.c
calendar/ea-week-view.h
calendar/ea-gnome-calendar.c
calendar/ea-gnome-calendar.h
calendar/Makefile.am
svn path=/trunk/; revision=22302
Diffstat (limited to 'a11y/Makefile.am')
-rw-r--r-- | a11y/Makefile.am | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/a11y/Makefile.am b/a11y/Makefile.am new file mode 100644 index 0000000000..4ff451e404 --- /dev/null +++ b/a11y/Makefile.am @@ -0,0 +1,34 @@ +# Calendar IDL files + +CALENDAR_IDLS = $(top_srcdir)/calendar/idl/evolution-calendar.idl + +CALENDAR_IDL_GENERATED_H = evolution-calendar.h + +$(CALENDAR_IDL_GENERATED_H): $(CALENDAR_IDLS) + $(ORBIT_IDL) -I $(srcdir) $(IDL_INCLUDES) \ + $(top_srcdir)/calendar/idl/evolution-calendar.idl + +SUBDIRS = calendar + +INCLUDES = \ + -DPREFIX=\"$(prefix)\" \ + -DSYSCONFDIR=\"$(sysconfdir)\" \ + -DDATADIR=\"$(datadir)\" \ + -DLIBDIR=\"$(libdir)\" \ + -DG_LOG_DOMAIN=\"evolution-a11y\" \ + -I$(top_srcdir) \ + -DG_DISABLE_DEPRECATED \ + -DLIBGNOME_DISABLE_DEPRECATED \ + $(EVOLUTION_CALENDAR_CFLAGS) \ + $(A11Y_CFLAGS) + +privlib_LTLIBRARIES = libevolution-a11y.la + +libevolution_a11y_la_SOURCES = \ + $(CALENDAR_IDL_GENERATED_H) + +BUILT_SOURCES = $(CALENDAR_IDL_GENERATED_H) + +libevolution_a11y_la_LIBADD = \ + $(A11Y_LIBS) \ + $(top_builddir)/a11y/calendar/libevolution-calendar-a11y.la |