diff options
author | Dan Winship <danw@src.gnome.org> | 2003-03-01 06:44:27 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2003-03-01 06:44:27 +0800 |
commit | e923674e247e076b0e90ac493c68db59c8edf211 (patch) | |
tree | 24d635f1caced1ad13adc2bc894ec597234ef8cb /calendar/gui/dialogs | |
parent | ce6b94f8b825ff1c26916555a0157d21cc32dfe4 (diff) | |
download | gsoc2013-evolution-e923674e247e076b0e90ac493c68db59c8edf211.tar gsoc2013-evolution-e923674e247e076b0e90ac493c68db59c8edf211.tar.gz gsoc2013-evolution-e923674e247e076b0e90ac493c68db59c8edf211.tar.bz2 gsoc2013-evolution-e923674e247e076b0e90ac493c68db59c8edf211.tar.lz gsoc2013-evolution-e923674e247e076b0e90ac493c68db59c8edf211.tar.xz gsoc2013-evolution-e923674e247e076b0e90ac493c68db59c8edf211.tar.zst gsoc2013-evolution-e923674e247e076b0e90ac493c68db59c8edf211.zip |
build libcal-dialogs as an uninstalled shared library ($(IDL_GENERATED_H),
* gui/dialogs/Makefile.am: build libcal-dialogs as an uninstalled
shared library
($(IDL_GENERATED_H), etc): Only generate
Evolution-Addressbook-SelectNames.h, not the corresponding .c
files, or we'll get duplicate symbol errors trying to link this
into libevolution_calendar.la
* gui/Makefile.am (libevolution_calendar_la_LIBADD): Update for
that (and eliminate libtool portability warnings)
svn path=/trunk/; revision=20114
Diffstat (limited to 'calendar/gui/dialogs')
-rw-r--r-- | calendar/gui/dialogs/.cvsignore | 4 | ||||
-rw-r--r-- | calendar/gui/dialogs/Makefile.am | 14 |
2 files changed, 6 insertions, 12 deletions
diff --git a/calendar/gui/dialogs/.cvsignore b/calendar/gui/dialogs/.cvsignore index 64968755b7..79c19fe2f4 100644 --- a/calendar/gui/dialogs/.cvsignore +++ b/calendar/gui/dialogs/.cvsignore @@ -3,6 +3,4 @@ Makefile Makefile.in Evolution-Addressbook-SelectNames.h -Evolution-Addressbook-SelectNames-stubs.c -Evolution-Addressbook-SelectNames-skels.c -Evolution-Addressbook-SelectNames-common.c + diff --git a/calendar/gui/dialogs/Makefile.am b/calendar/gui/dialogs/Makefile.am index a4ffff5f17..dc44ea7be6 100644 --- a/calendar/gui/dialogs/Makefile.am +++ b/calendar/gui/dialogs/Makefile.am @@ -2,16 +2,12 @@ IDLS = $(top_srcdir)/addressbook/gui/component/select-names/Evolution-Addressboo IDL_GENERATED_H = \ Evolution-Addressbook-SelectNames.h -IDL_GENERATED_C = \ - Evolution-Addressbook-SelectNames-common.c \ - Evolution-Addressbook-SelectNames-skels.c \ - Evolution-Addressbook-SelectNames-stubs.c -IDL_GENERATED = $(IDL_GENERATED_C) $(IDL_GENERATED_H) +IDL_GENERATED = $(IDL_GENERATED_H) $(IDL_GENERATED_H): $(IDLS) - $(ORBIT_IDL) -I $(srcdir) $(IDL_INCLUDES) \ + $(ORBIT_IDL) -I $(srcdir) $(IDL_INCLUDES) \ + --nostubs --noskels --nocommon \ $(top_srcdir)/addressbook/gui/component/select-names/Evolution-Addressbook-SelectNames.idl -$(IDL_GENERATED_C): $(IDL_GENERATED_H) BUILT_SOURCES = $(IDL_GENERATED) @@ -34,9 +30,9 @@ INCLUDES = \ -DEVOLUTION_UIDIR=\""$(evolutionuidir)"\" \ $(EVOLUTION_CALENDAR_CFLAGS) -noinst_LIBRARIES = libcal-dialogs.a +noinst_LTLIBRARIES = libcal-dialogs.la -libcal_dialogs_a_SOURCES = \ +libcal_dialogs_la_SOURCES = \ $(IDL_GENERATED) \ alarm-options.c \ alarm-options.h \ |