* Makefile.am (INCLUDES): Define EVOLUTION_IMAGES using $(imagesdir). Define EVOLUTION_GLADEDIR using $(gladedir) (eshellincludedir): Define in terms of $(privincludedir) (evolution_LDFLAGS): Remove this. gmodule-2's LDFLAGS include the equivalent of -export-dynamic for us. (serverdir, etspecdir): Remove. Defined in configure.in now. * e-folder.c: #include <string.h> * e-corba-config-page.c: Likewise * e-shell-config.c: Likewise * e-shell-folder-creation-dialog.c: Likewise * e-shell-folder-title-bar.c: Likewise * e-shell-startup-wizard.c: Likewise * evolution-activity-client.c: Likewise. * evolution-shell-component-client.c: Likewise * evolution-shell-component-utils.c: Likewise * evolution-storage.c: Likewise * evolution-test-component.c: Likewise * e-shortcuts-view.c (destroy_group_cb): Remove unused variable * importer/Makefile.am (INCLUDES): Remove -I$(includedir). Define EVOLUTION_GLADEDIR using $(gladedir). (libevolution_importerincludedir): Define in terms of $(privincludedir) (gladedir): Removed. Defined in configure.in now. * glade/Makefile.am (gladedir): Likewise svn path=/trunk/; revision=19774
70 lines
1.5 KiB
Makefile
70 lines
1.5 KiB
Makefile
INCLUDES = \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/shell \
|
|
-I$(top_builddir)/shell \
|
|
-DG_LOG_DOMAIN=\"Evolution-Importer\" \
|
|
-DEVOLUTION_GLADEDIR="\"$(gladedir)\"" \
|
|
$(SHELL_CFLAGS)
|
|
|
|
privlib_LTLIBRARIES = libevolution-importer.la
|
|
|
|
|
|
# IDL stuff
|
|
|
|
IDLS = GNOME_Evolution_Importer.idl
|
|
|
|
IDL_GENERATED_H = \
|
|
GNOME_Evolution_Importer.h
|
|
|
|
IDL_GENERATED_C = \
|
|
GNOME_Evolution_Importer-common.c \
|
|
GNOME_Evolution_Importer-skels.c \
|
|
GNOME_Evolution_Importer-stubs.c
|
|
|
|
IDL_GENERATED = $(IDL_GENERATED_H) $(IDL_GENERATED_C)
|
|
|
|
GNOME_Evolution_Importer-impl.o: GNOME_Evolution_Importer.h
|
|
|
|
$(IDL_GENERATED_H): $(IDLS)
|
|
$(ORBIT_IDL) -I $(srcdir) $(IDL_INCLUDES) $(srcdir)/GNOME_Evolution_Importer.idl
|
|
|
|
$(IDL_GENERATED_C): $(IDL_GENERATED_H)
|
|
@true
|
|
|
|
idl_DATA = $(IDLS)
|
|
|
|
|
|
# Component
|
|
|
|
libevolution_importerincludedir = $(privincludedir)/importer
|
|
libevolution_importer_la_SOURCES = \
|
|
$(IDL_GENERATED) \
|
|
evolution-intelligent-importer.c \
|
|
evolution-importer-client.c \
|
|
evolution-importer-listener.c \
|
|
evolution-importer.c \
|
|
intelligent.c \
|
|
intelligent.h
|
|
|
|
libevolution_importerinclude_HEADERS = \
|
|
GNOME_Evolution_Importer.h \
|
|
evolution-intelligent-importer.h \
|
|
evolution-importer-client.h \
|
|
evolution-importer-listener.h \
|
|
evolution-importer.h
|
|
|
|
libevolution_importer_la_LIBADD = \
|
|
$(top_builddir)/e-util/libeutil.la \
|
|
$(SHELL_LIBS)
|
|
|
|
glade_DATA = import.glade
|
|
|
|
EXTRA_DIST = $(glade_DATA) $(IDLS)
|
|
|
|
BUILT_SOURCES= $(IDL_GENERATED_H)
|
|
CLEANFILES = $(IDL_GENERATED)
|
|
|
|
dist-hook:
|
|
cd $(distdir); rm -f $(BUILT_SOURCES)
|
|
|