aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--addressbook/ChangeLog6
-rw-r--r--addressbook/gui/component/.cvsignore1
-rw-r--r--addressbook/gui/component/Makefile.am12
3 files changed, 19 insertions, 0 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog
index 5ec56966e6..e1a9d7bbfa 100644
--- a/addressbook/ChangeLog
+++ b/addressbook/ChangeLog
@@ -1,4 +1,10 @@
2000-05-06 Chris Toshok <toshok@helixcode.com>
+ * gui/component/.cvsignore: ignore evolution-addressbook.pure
+
+ * gui/component/Makefile.am: add support for generating
+ evolution-addressbook.pure.
+
+2000-05-06 Chris Toshok <toshok@helixcode.com>
* backend/pas/pas-backend-ldap.c (pas_backend_ldap_load_uri): if a
port isn't specified in the uri default to 389.
diff --git a/addressbook/gui/component/.cvsignore b/addressbook/gui/component/.cvsignore
index c59ca7cad6..a8ecb5d170 100644
--- a/addressbook/gui/component/.cvsignore
+++ b/addressbook/gui/component/.cvsignore
@@ -6,4 +6,5 @@ Makefile.in
*.lo
*.la
evolution-addressbook
+evolution-addressbook.pure
test-addressbook
diff --git a/addressbook/gui/component/Makefile.am b/addressbook/gui/component/Makefile.am
index 8b247a50b8..931394f6b1 100644
--- a/addressbook/gui/component/Makefile.am
+++ b/addressbook/gui/component/Makefile.am
@@ -54,3 +54,15 @@ glade_DATA = ldap-server-dialog.glade
EXTRA_DIST = \
addressbook.gnorba \
addressbook.oafinfo
+
+if ENABLE_PURIFY
+PLINK = $(LIBTOOL) --mode=link $(PURIFY) $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) -o $@
+
+all-local: evolution-addressbook.pure
+
+evolution-addressbook.pure: evolution-addressbook
+ @rm -f evolution-addressbook.pure
+ $(PLINK) $(evolution_addressbook_LDFLAGS) $(evolution_addressbook_OBJECTS) $(evolution_addressbook_LDADD) $(LIBS)
+
+endif
+