diff options
Diffstat (limited to 'a11y/calendar/Makefile.am')
-rw-r--r-- | a11y/calendar/Makefile.am | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/a11y/calendar/Makefile.am b/a11y/calendar/Makefile.am new file mode 100644 index 0000000000..849e152135 --- /dev/null +++ b/a11y/calendar/Makefile.am @@ -0,0 +1,38 @@ + +noinst_LTLIBRARIES = libevolution-calendar-a11y.la + +INCLUDES = \ + -DG_LOG_DOMAIN=\"evolution-a11y\" \ + -I$(top_srcdir)/shell \ + -I$(top_srcdir)/calendar \ + -I$(top_srcdir)/calendar/cal-client \ + -I$(top_srcdir)/libical/src/libical \ + -I$(top_srcdir)/calendar/gui \ + -I$(top_srcdir)/widgets \ + -I$(top_srcdir)/a11y \ + -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_CALENDAR_CFLAGS) + +libevolution_calendar_a11y_la_SOURCES = \ + ea-calendar.c \ + ea-calendar.h \ + ea-calendar-helpers.c \ + ea-calendar-helpers.h \ + ea-cal-view.c \ + ea-cal-view.h \ + ea-cal-view-event.c \ + ea-cal-view-event.h \ + ea-day-view.c \ + ea-day-view.h \ + ea-week-view.c \ + ea-week-view.h \ + ea-gnome-calendar.c \ + ea-gnome-calendar.h |