Files
evolution/composer/Makefile.am
Gediminas Paulauskas ac9abd5e60 Getting almost full and proper use of xml-i18n-tools.
Removed all files where glade writes strings.
Changed Makefile.am to not distribute them.
Changed all glade files to not write strings to those files.

Removed *.desktop and evolution.keys files, because they are generated.
Added them to .cvsignore
Added *.desktop.in evolution.keys.in files without transalted strings.
Added all existing entries from desktop files to po files.
Changed Makefile.am to distribute only .in files, and merge translations into
desktop files.

Removed obsolete files from po/ dir

svn path=/trunk/; revision=8164
2001-02-11 02:56:16 +00:00

89 lines
2.1 KiB
Makefile

## CORBA stuff
IDLS = \
Evolution-Composer.idl \
Composer.idl
IDL_GENERATED = \
Composer.h \
Composer-common.c \
Composer-skels.c \
Composer-stubs.c
HTML_EDITOR_GENERATED = \
Editor.h \
Editor-common.c \
Editor-skels.c \
Editor-stubs.c
selectnamesdir = $(top_srcdir)/addressbook/gui/component/select-names
$(IDL_GENERATED): $(IDLS) $(selectnamesdir)/Evolution-Addressbook-SelectNames.idl
$(ORBIT_IDL) -I $(srcdir) -I $(datadir)/idl `$(GNOME_CONFIG) --cflags idl` \
-I $(selectnamesdir) $(srcdir)/Composer.idl
Editor-commmon.c: $(GTK_HTML_EDITOR_IDL)
$(HTML_EDITOR_GENERATED): $(GTK_HTML_EDITOR_IDL)
$(ORBIT_IDL) -I $(srcdir) `$(GNOME_CONFIG) --cflags idl` $(GTK_HTML_EDITOR_IDL)
##
idldir = $(datadir)/idl
idl_DATA = $(IDLS)
gladedir = $(datadir)/evolution/glade
glade_DATA = \
e-msg-composer-attachment.glade
libcomposerincludedir = $(includedir)/composer
noinst_LIBRARIES = libcomposer.a
INCLUDES = \
-I$(top_srcdir) \
-I$(top_builddir) \
-I$(top_srcdir)/widgets \
-I$(top_builddir)/widgets \
-I$(top_srcdir)/camel \
-I$(top_builddir)/camel \
-I$(top_builddir)/addressbook/gui/component/select-names \
-I$(top_builddir)/shell \
$(EXTRA_GNOME_CFLAGS) \
$(GNOME_INCLUDEDIR) \
$(BONOBO_GNOME_CFLAGS) \
$(GTKHTML_CFLAGS) \
$(UNICODE_CFLAGS) \
-DEVOLUTION_DATADIR=\"$(datadir)\" \
-DE_GLADEDIR=\"$(gladedir)\" \
-DG_LOG_DOMAIN=\"composer\"
libcomposer_a_SOURCES = \
$(IDL_GENERATED) \
$(HTML_EDITOR_GENERATED) \
e-msg-composer-attachment-bar.c \
e-msg-composer-attachment-bar.h \
e-msg-composer-attachment.c \
e-msg-composer-attachment.h \
e-msg-composer-hdrs.c \
e-msg-composer-hdrs.h \
e-msg-composer-select-file.c \
e-msg-composer-select-file.h \
e-msg-composer.c \
e-msg-composer.h \
e-icon-list.c \
e-icon-list.h \
evolution-composer.c \
evolution-composer.h \
listener.c \
listener.h
EXTRA_DIST = \
$(glade_DATA) \
$(IDLS) \
bad-icon.xpm
BUILT_SOURCES = $(IDL_GENERATED)
CLEANFILES += $(BUILT_SOURCES)