diff options
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 |