diff options
author | Seth Alves <alves@src.gnome.org> | 2000-07-13 02:26:16 +0800 |
---|---|---|
committer | Seth Alves <alves@src.gnome.org> | 2000-07-13 02:26:16 +0800 |
commit | ed332931e1de0b90d90f887e412308d38253e0bc (patch) | |
tree | 68663330a489dd72de798b5ef584acbc88b44b5d /calendar/cal-util/Makefile.am | |
parent | 355d3fae6600497b302fb494efee628197ac4a5f (diff) | |
download | gsoc2013-evolution-ed332931e1de0b90d90f887e412308d38253e0bc.tar gsoc2013-evolution-ed332931e1de0b90d90f887e412308d38253e0bc.tar.gz gsoc2013-evolution-ed332931e1de0b90d90f887e412308d38253e0bc.tar.bz2 gsoc2013-evolution-ed332931e1de0b90d90f887e412308d38253e0bc.tar.lz gsoc2013-evolution-ed332931e1de0b90d90f887e412308d38253e0bc.tar.xz gsoc2013-evolution-ed332931e1de0b90d90f887e412308d38253e0bc.tar.zst gsoc2013-evolution-ed332931e1de0b90d90f887e412308d38253e0bc.zip |
fixed various problems
* conduits/calendar/calendar-conduit.c: fixed various problems
* cal-client/Makefile.am: build a static version of the library
to link with the conduits
* cal-util/Makefile.am: same
svn path=/trunk/; revision=4116
Diffstat (limited to 'calendar/cal-util/Makefile.am')
-rw-r--r-- | calendar/cal-util/Makefile.am | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/calendar/cal-util/Makefile.am b/calendar/cal-util/Makefile.am index ae12943411..82da5a2564 100644 --- a/calendar/cal-util/Makefile.am +++ b/calendar/cal-util/Makefile.am @@ -12,6 +12,10 @@ INCLUDES = \ -I$(top_builddir)/libical/src/libical \ $(GNOME_INCLUDEDIR) +# +# cal util library +# + lib_LTLIBRARIES = libcal-util.la libcal_util_la_SOURCES = \ @@ -34,6 +38,18 @@ libcal_utilinclude_HEADERS = \ calobj.h \ timeutil.h +# +# static library for use in conduits' shared libraries +# +noinst_LTLIBRARIES = libcal-util-static.la +libcal_util_static_la_SOURCES = $(libcal_util_la_SOURCES) +libcal_util_static_la_LDFLAGS = --all-static + + +# +# test program +# + icalendar_test_SOURCES = \ icalendar-test.c \ icalendar.c \ |