1noinst_LTLIBRARIES = libgda-ui-data-entries.la
2
3SUBDIRS =
4
5AM_CPPFLAGS = \
6        -I$(top_srcdir) -I$(top_srcdir)/libgda -I$(srcdir)/.. \
7        -I$(top_builddir) -I$(top_builddir)/libgda-ui \
8        $(COREDEPS_CFLAGS) \
9	$(COREDEPS_WFLAGS) \
10        $(GTK_CFLAGS) \
11	$(GIO_CFLAGS) \
12        -DPREFIX=\""$(prefix)"\" \
13        -DSYSCONFDIR=\""$(sysconfdir)"\" \
14        -DDATADIR=\""$(datadir)"\" \
15        -DLIBDIR=\""$(libdir)"\"
16
17gdauiincludedir=$(includedir)/libgda-$(GDA_ABI_MAJOR_VERSION).$(GDA_ABI_MINOR_VERSION)/libgda-ui
18gdauiinclude_HEADERS= $(extra_headers)
19extra_headers = \
20	gdaui-data-cell-renderer-util.h \
21	gdaui-entry-shell.h \
22	gdaui-entry-wrapper.h
23
24libgda_ui_data_entries_headers = \
25	gdaui-data-cell-renderer-bin.h \
26	gdaui-data-cell-renderer-boolean.h \
27	gdaui-data-cell-renderer-combo.h \
28	gdaui-data-cell-renderer-info.h \
29	gdaui-data-cell-renderer-textual.h \
30	gdaui-entry-bin.h \
31	gdaui-entry-boolean.h \
32	gdaui-entry-combo.h \
33	gdaui-entry-none.h \
34	gdaui-entry-string.h \
35	gdaui-entry-number.h \
36	gdaui-entry-common-time.h \
37	gdaui-entry-time.h \
38	gdaui-entry-timestamp.h \
39	gdaui-entry-date.h \
40	gdaui-entry.h \
41	gdaui-formatted-entry.h \
42	gdaui-numeric-entry.h
43
44libgda_ui_data_entries_la_SOURCES = \
45	$(libgda_ui_data_entries_headers) \
46	common-bin.c \
47	common-bin.h \
48	$(extra_headers) \
49	gdaui-data-cell-renderer-util.c \
50	gdaui-data-cell-renderer-bin.c \
51	gdaui-data-cell-renderer-boolean.c \
52	gdaui-data-cell-renderer-combo.c \
53	gdaui-data-cell-renderer-info.c \
54	gdaui-data-cell-renderer-textual.c \
55	gdaui-entry-bin.c \
56	gdaui-entry-boolean.c \
57	gdaui-entry-combo.c \
58	gdaui-entry-none.c \
59	widget-embedder.c \
60	widget-embedder.h \
61	gdaui-entry-shell.c \
62	gdaui-entry-string.c \
63	gdaui-entry-number.c \
64	gdaui-entry-common-time.c \
65	gdaui-entry-time.c \
66	gdaui-entry-timestamp.c \
67	gdaui-entry-date.c \
68	gdaui-entry-wrapper.c \
69	gdaui-entry.c \
70	gdaui-formatted-entry.c \
71	gdaui-numeric-entry.c
72
73xmldir   = $(datadir)/libgda-5.0/ui
74xml_in_files = \
75	gdaui-entry-string.xml.in \
76	gdaui-entry-number.xml.in
77
78@INTLTOOL_XML_RULE@
79
80xml_DATA = $(xml_in_files:.xml.in=.xml)
81
82EXTRA_DIST = $(xml_in_files)
83DISTCLEANFILES = $(xml_DATA)
84