diff options
author | Kaushal Kumar <kakumar@novell.com> | 2005-06-17 23:20:35 +0800 |
---|---|---|
committer | Kaushal Kumar <kaushal@src.gnome.org> | 2005-06-17 23:20:35 +0800 |
commit | 27a61acf278caf11e5e203d4ee13e107d5b84b2d (patch) | |
tree | 3cfc4a916ecfd4d75587e6939b4e4990a35eb5d1 /widgets/table/Makefile.am | |
parent | 5a7ddf3c6dab1474185d7c92a1413601878eb690 (diff) | |
download | gsoc2013-evolution-27a61acf278caf11e5e203d4ee13e107d5b84b2d.tar.gz gsoc2013-evolution-27a61acf278caf11e5e203d4ee13e107d5b84b2d.tar.zst gsoc2013-evolution-27a61acf278caf11e5e203d4ee13e107d5b84b2d.zip |
Retired GAL from Head. The relevant files have moved inside evolution.
2005-06-17 Kaushal Kumar <kakumar@novell.com>
* Retired GAL from Head. The relevant files have moved inside
evolution. Thanks to JP Rosevear for performing the cvs surgery. The
files have been moved in the following order.
evolution/e-util <- gal/gal/util
evolution/a11y <- gal/gal/a11y
evolution/a11y/e-table <- gal/gal/a11y/e-table
evolution/a11y/e-text <- gal/gal/a11y/e-text
evolution/widgets/table <- gal/gal/e-table
evolution/widgets/text <- gal/gal/e-text
evolution/widgets/misc <- gal/gal/widgets
evolution/widgets/misc/pixmaps <- gal/gal/widgets/pixmaps
evolution/widgets/menus <- gal/gal/menus
Following is the summary of changes done to fix the build:-
- New files added to cvs repository,
- a11y/e-table/Makefile.am
- a11y/e-text/Makefile.am
- widgets/table/Makefile.am
- widgets/text/Makefile.am
- widgets/misc/pixmaps/Makefile.am
- iconv-detect.h
- iconv-detect.c
- Updated configure.in.
- Updated all the relevant Makefile.am files.
- Updated the include paths to replace all gal references.
- Updated the marshal list to suit gal files requirements.
svn path=/trunk/; revision=29522
Diffstat (limited to 'widgets/table/Makefile.am')
-rw-r--r-- | widgets/table/Makefile.am | 159 |
1 files changed, 159 insertions, 0 deletions
diff --git a/widgets/table/Makefile.am b/widgets/table/Makefile.am new file mode 100644 index 0000000000..8f5d699544 --- /dev/null +++ b/widgets/table/Makefile.am @@ -0,0 +1,159 @@ +glade_DATA = \ + e-table-config.glade \ + e-table-config-no-group.glade \ + e-table-field-chooser.glade + +INCLUDES = \ + -I$(top_srcdir) \ + -I$(top_srcdir)/widgets \ + $(EXTRA_GNOME_CFLAGS) \ + $(GNOME_BONOBO_CFLAGS) \ + $(GNOME_INCLUDEDIR) \ + $(ICONV_CFLAGS) \ + $(GNOME_FULL_CFLAGS) \ + -DEVOLUTION_GLADEDIR=\"$(gladedir)\" \ + -DG_LOG_DOMAIN=\"e-table\" + +privlib_LTLIBRARIES = libetable.la + +libetable_la_SOURCES = \ + e-cell.c \ + e-cell-checkbox.c \ + e-cell-combo.c \ + e-cell-date.c \ + e-cell-float.c \ + e-cell-number.c \ + e-cell-pixbuf.c \ + e-cell-popup.c \ + e-cell-progress.c \ + e-cell-size.c \ + e-cell-spin-button.c \ + e-cell-text.c \ + e-cell-toggle.c \ + e-cell-tree.c \ + e-cell-vbox.c \ + e-table-click-to-add.c \ + e-table-col.c \ + e-table-column-specification.c \ + e-table-config.c \ + e-table-extras.c \ + e-table-field-chooser-dialog.c \ + e-table-field-chooser-item.c \ + e-table-field-chooser.c \ + e-table-group.c \ + e-table-group-container.c \ + e-table-group-leaf.c \ + e-table-header.c \ + e-table-header-item.c \ + e-table-header-utils.c \ + e-table-item.c \ + e-table-memory-callbacks.c \ + e-table-memory-store.c \ + e-table-memory.c \ + e-table-model.c \ + e-table-one.c \ + e-table-scrolled.c \ + e-table-search.c \ + e-table-selection-model.c \ + e-table-simple.c \ + e-table-sort-info.c \ + e-table-sorted.c \ + e-table-sorted-variable.c \ + e-table-sorter.c \ + e-table-sorting-utils.c \ + e-table-specification.c \ + e-table-state.c \ + e-table-subset.c \ + e-table-subset-variable.c \ + e-table-utils.c \ + e-table-without.c \ + e-table.c \ + e-tree-memory-callbacks.c \ + e-tree-memory.c \ + e-tree-model.c \ + e-tree-scrolled.c \ + e-tree-selection-model.c \ + e-tree-sorted.c \ + e-tree-table-adapter.c \ + e-tree.c + +libetableincludedir = $(privincludedir)/e-table + +libetableinclude_HEADERS = \ + e-cell.h \ + e-cell-checkbox.h \ + e-cell-combo.h \ + e-cell-date.h \ + e-cell-float.h \ + e-cell-number.h \ + e-cell-pixbuf.h \ + e-cell-popup.h \ + e-cell-progress.h \ + e-cell-size.h \ + e-cell-spin-button.h \ + e-cell-text.h \ + e-cell-toggle.h \ + e-cell-tree.h \ + e-cell-vbox.h \ + e-table-click-to-add.h \ + e-table-col-dnd.h \ + e-table-col.h \ + e-table-column-specification.h \ + e-table-config.h \ + e-table-defines.h \ + e-table-extras.h \ + e-table-field-chooser-dialog.h \ + e-table-field-chooser-item.h \ + e-table-field-chooser.h \ + e-table-group.h \ + e-table-group-container.h \ + e-table-group-leaf.h \ + e-table-header.h \ + e-table-header-item.h \ + e-table-header-utils.h \ + e-table-item.h \ + e-table-memory-callbacks.h \ + e-table-memory-store.h \ + e-table-memory.h \ + e-table-model.h \ + e-table-one.h \ + e-table-scrolled.h \ + e-table-search.h \ + e-table-selection-model.h \ + e-table-simple.h \ + e-table-sort-info.h \ + e-table-sorted.h \ + e-table-sorted-variable.h \ + e-table-sorter.h \ + e-table-sorting-utils.h \ + e-table-specification.h \ + e-table-state.h \ + e-table-subset.h \ + e-table-subset-variable.h \ + e-table-tooltip.h \ + e-table-utils.h \ + e-table-without.h \ + e-table.h \ + e-tree-memory-callbacks.h \ + e-tree-memory.h \ + e-tree-model.h \ + e-tree-scrolled.h \ + e-tree-selection-model.h \ + e-tree-sorted.h \ + e-tree-table-adapter.h \ + e-tree.h + +icons = \ + add-col.xpm \ + arrow-down.xpm \ + arrow-up.xpm \ + add-col.xpm \ + check-empty.xpm \ + check-filled.xpm \ + remove-col.xpm \ + tree-expanded.xpm \ + tree-unexpanded.xpm + +EXTRA_DIST = \ + $(icons) \ + $(glade_DATA) |