Files
evolution/widgets/e-table/Makefile.am
Christopher James Lahey 4a2777a279 Removed dist-hook section.
2000-05-10  Christopher James Lahey  <clahey@helixcode.com>

	* Makefile.am: Removed dist-hook section.

	* configure.in: Set the version number.  Added a check for gnome
	window icons.  Removed a bunch of unused Makefiles.

	* tools/Makefile.am: Created a proper EXTRA_DIST section.

	* widgets/e-text/Makefile.am: Added
	e-text-event-processor-types.h.

From addressbook/ChangeLog:

2000-05-10  Christopher James Lahey  <clahey@helixcode.com>

	* backend/ebook/Makefile.am: Added e-book-types.h, e-card-pairs.h,
	e-card-types.h.

	* backend/pas/Makefile.am: Added pas-backend-ldap.h.

	* contact-editor/Makefile.am: Added a proper EXTRA_DIST section.
	Removed some old defines.

	* ename/Makefile.am: Added e-name-western-tables.h.

	* gui/component/Makefile.am: Added e-ldap-server-dialog.h.  Added
	a proper EXTRA_DIST section.

	* gui/minicard/e-reflow.c: Added a missed cast.

	* printing/Makefile.am: Added a proper EXTRA_DIST section.

From calendar/ChangeLog:

2000-05-10  Christopher James Lahey  <clahey@helixcode.com>

	* gui/Makefile.am: Added main.h.  Combined the two EXTRA_DIST
	sections.

From camel/ChangeLog:

2000-05-10  Christopher James Lahey  <clahey@helixcode.com>

	* Makefile.am: Added camel-types.h, camel-folder-pt-proxy.h, and
	camel-thread-proxy.h.

From default_user/ChangeLog:

2000-05-10  Christopher James Lahey  <clahey@helixcode.com>

	* Makefile.am, local/Calendar/Makefile.am,
	local/Contacts/Makefile.am, local/Directories/Makefile.am,
	local/Directories/subfolders/Bigfoot/Makefile.am,
	local/Directories/subfolders/Netcenter/Makefile.am,
	local/Drafts/Makefile.am, local/Inbox/Makefile.am,
	local/Outbox/Makefile.am, local/Trash/Makefile.am: Created a
	proper EXTRA_DIST section.

From filter/ChangeLog:

2000-05-10  Christopher James Lahey  <clahey@helixcode.com>

	* filter-arg.h: Changed tree.h to gnome-xml/tree.h.

	* Makefile.am: Added filter-arg-types.h, filter-arg.h,
	filter-xml.h, filter-format.h, filter-druid.h, filter-editor.h.

From libical/ChangeLog:

2000-05-10  Christopher James Lahey  <clahey@helixcode.com>

	* configure.in: Reorder Makefiles so that it will build.

From mail/ChangeLog:

2000-05-09  Christopher James Lahey  <clahey@helixcode.com>

	* Makefile.am: Removed folder-browser-factory.h since it doesn't
	exist.  Added mail-display.h, mail-types.h, pixmaps.h.

From widgets/e-table/ChangeLog:

2000-05-10  Christopher James Lahey  <clahey@helixcode.com>

	* Makefile.am: Added e-table-col-dnd.h and table-test.h.

From wombat/ChangeLog:

2000-05-10  Christopher James Lahey  <clahey@helixcode.com>

	* Makefile.am: Added an include for the pcs directory.

svn path=/trunk/; revision=2966
2000-05-10 14:47:09 +00:00

132 lines
2.8 KiB
Makefile

gladedir = $(datadir)/evolution/glade
glade_DATA = \
e-table-config.glade \
e-table-group.glade
glade_headers = \
e-table-config.glade.h \
e-table-group.glade.h
INCLUDES = \
$(EXTRA_GNOME_CFLAGS) \
$(GNOME_INCLUDEDIR) \
-DETABLE_GLADEDIR=\""$(gladedir)"\" \
-I$(top_srcdir)/widgets/e-text \
-I$(top_srcdir)/e-util \
-I$(top_srcdir) \
-DG_LOG_DOMAIN=\"e-table\"
noinst_LIBRARIES = \
libetable.a
libetable_a_SOURCES = \
e-cell.c \
e-cell.h \
e-cell-checkbox.c \
e-cell-checkbox.h \
e-cell-text.c \
e-cell-text.h \
e-cell-toggle.c \
e-cell-toggle.h \
e-table.c \
e-table.h \
e-table-col-dnd.h \
e-table-col.c \
e-table-col.h \
e-table-config.c \
e-table-config.h \
e-table-group.c \
e-table-group.h \
e-table-group-container.c \
e-table-group-container.h \
e-table-group-leaf.c \
e-table-group-leaf.h \
e-table-header.c \
e-table-header.h \
e-table-header-item.c \
e-table-header-item.h \
e-table-item.c \
e-table-item.h \
e-table-model.c \
e-table-model.h \
e-table-simple.c \
e-table-simple.h \
e-table-sort-info.c \
e-table-sort-info.h \
e-table-sorted.c \
e-table-sorted.h \
e-table-sorted-variable.c \
e-table-sorted-variable.h \
e-table-subset.c \
e-table-subset.h \
e-table-subset-variable.c \
e-table-subset-variable.h \
e-table-text-model.c \
e-table-text-model.h
noinst_PROGRAMS = \
table-test table-example-1 table-example-2 table-size-test
table_test_SOURCES = \
test-table.c \
test-check.c \
test-cols.c \
table-test.c \
table-test.h
table_test_LDADD = \
libetable.a \
$(EXTRA_GNOME_LIBS) \
$(top_builddir)/widgets/e-text/libetext.a \
$(top_builddir)/e-util/libeutil.la
table_test_LDFLAGS = `gnome-config --libs gdk_pixbuf`
table_size_test_SOURCES = \
e-table-size-test.c
table_size_test_LDADD = \
libetable.a \
$(EXTRA_GNOME_LIBS) \
$(top_builddir)/widgets/e-text/libetext.a \
$(top_builddir)/e-util/libeutil.la
table_size_test_LDFLAGS = `gnome-config --libs gdk_pixbuf`
table_example_1_SOURCES = \
e-table-example-1.c
table_example_1_LDADD = \
libetable.a \
$(EXTRA_GNOME_LIBS) \
$(top_builddir)/widgets/e-text/libetext.a \
$(top_builddir)/e-util/libeutil.la
table_example_1_LDFLAGS = `gnome-config --libs gdk_pixbuf`
table_example_2_SOURCES = \
e-table-example-2.c
table_example_2_LDADD = \
libetable.a \
$(EXTRA_GNOME_LIBS) \
$(top_builddir)/widgets/e-text/libetext.a \
$(top_builddir)/e-util/libeutil.la
table_example_2_LDFLAGS = `gnome-config --libs gdk_pixbuf`
icons = \
arrow-down.xpm \
arrow-up.xpm \
add-col.xpm \
check-empty.xpm \
check-filled.xpm \
remove-col.xpm
EXTRA_DIST = \
sample.table \
$(icons) \
$(glade_DATA) \
$(glade_headers)