diff options
Diffstat (limited to 'addressbook/gui')
-rw-r--r-- | addressbook/gui/component/.cvsignore | 1 | ||||
-rw-r--r-- | addressbook/gui/component/Makefile.am | 12 |
2 files changed, 13 insertions, 0 deletions
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 + |