aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJP Rosevear <jpr@ximian.com>2001-04-08 19:14:27 +0800
committerJP Rosevear <jpr@src.gnome.org>2001-04-08 19:14:27 +0800
commitb96649c9115f9cc099fb456866fb6230087cbde2 (patch)
tree766c5512612848db8a9e0f603bd8ddc1425f421f
parent2eac67c34c2d97da8894c1e7dc9a366d144d550f (diff)
downloadgsoc2013-evolution-b96649c9115f9cc099fb456866fb6230087cbde2.tar
gsoc2013-evolution-b96649c9115f9cc099fb456866fb6230087cbde2.tar.gz
gsoc2013-evolution-b96649c9115f9cc099fb456866fb6230087cbde2.tar.bz2
gsoc2013-evolution-b96649c9115f9cc099fb456866fb6230087cbde2.tar.lz
gsoc2013-evolution-b96649c9115f9cc099fb456866fb6230087cbde2.tar.xz
gsoc2013-evolution-b96649c9115f9cc099fb456866fb6230087cbde2.tar.zst
gsoc2013-evolution-b96649c9115f9cc099fb456866fb6230087cbde2.zip
Setup up the conduit library building better so the files get disted
2001-04-08 JP Rosevear <jpr@ximian.com> * Makefile.am: Setup up the conduit library building better so the files get disted svn path=/trunk/; revision=9205
-rw-r--r--e-util/ChangeLog5
-rw-r--r--e-util/Makefile.am17
2 files changed, 15 insertions, 7 deletions
diff --git a/e-util/ChangeLog b/e-util/ChangeLog
index 21f017aa55..3e8c616e91 100644
--- a/e-util/ChangeLog
+++ b/e-util/ChangeLog
@@ -1,3 +1,8 @@
+2001-04-08 JP Rosevear <jpr@ximian.com>
+
+ * Makefile.am: Setup up the conduit library building better so the
+ files get disted
+
2001-04-06 Federico Mena Quintero <federico@ximian.com>
* e-sexp.c (scanner_config): Added a question mark to the set of
diff --git a/e-util/Makefile.am b/e-util/Makefile.am
index 2fd7b68e18..6050a8b049 100644
--- a/e-util/Makefile.am
+++ b/e-util/Makefile.am
@@ -53,19 +53,22 @@ libeutil_la_LIBADD = $(UNICODE_LIBS)
libeutil_static_la_SOURCES = $(libeutil_la_SOURCES)
libeutil_static_la_LDFLAGS = --all-static
+pilot_sources = \
+ e-pilot-map.c \
+ e-pilot-map.h \
+ e-pilot-util.c \
+ e-pilot-util.h
+
if ENABLE_PILOT_CONDUITS
-pl_needed = e-pilot-util.c e-pilot-util.h
+pilot_compile = $(pilot_sources)
else
-pl_needed =
+pilot_compile =
endif
-libeconduit_la_SOURCES = \
- e-pilot-map.c \
- e-pilot-map.h \
- $(pl_needed)
+libeconduit_la_SOURCES = $(pilot_compile)
libeconduit_static_la_SOURCES = $(libeconduit_la_SOURCES)
libeconduit_static_la_LDFLAGS = --all-static
-
+EXTRA_DIST = $(pilot_sources)