diff options
author | JP Rosevear <jpr@helixcode.com> | 2000-12-09 03:07:26 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2000-12-09 03:07:26 +0800 |
commit | 0c25330539c89b214d922d1dbc98126c6e41cefc (patch) | |
tree | f0884ab4a9ed21ff547156dea581673f4159c007 | |
parent | d75cbc249db2892b38f885a0eb604785184244a4 (diff) | |
download | gsoc2013-evolution-0c25330539c89b214d922d1dbc98126c6e41cefc.tar gsoc2013-evolution-0c25330539c89b214d922d1dbc98126c6e41cefc.tar.gz gsoc2013-evolution-0c25330539c89b214d922d1dbc98126c6e41cefc.tar.bz2 gsoc2013-evolution-0c25330539c89b214d922d1dbc98126c6e41cefc.tar.lz gsoc2013-evolution-0c25330539c89b214d922d1dbc98126c6e41cefc.tar.xz gsoc2013-evolution-0c25330539c89b214d922d1dbc98126c6e41cefc.tar.zst gsoc2013-evolution-0c25330539c89b214d922d1dbc98126c6e41cefc.zip |
Add purify options for the build
2000-12-08 JP Rosevear <jpr@helixcode.com>
* component/Makefile.am (evolution-executive-summary.pure): Add purify
options for the build
svn path=/trunk/; revision=6865
-rw-r--r-- | executive-summary/ChangeLog | 5 | ||||
-rw-r--r-- | executive-summary/component/Makefile.am | 11 |
2 files changed, 16 insertions, 0 deletions
diff --git a/executive-summary/ChangeLog b/executive-summary/ChangeLog index 944be43c87..cfb4cecc7c 100644 --- a/executive-summary/ChangeLog +++ b/executive-summary/ChangeLog @@ -1,5 +1,10 @@ 2000-12-08 JP Rosevear <jpr@helixcode.com> + * component/Makefile.am (evolution-executive-summary.pure): Add purify + options for the build + +2000-12-08 JP Rosevear <jpr@helixcode.com> + * Makefile.am: Remove files from extra_dist since they are already listed diff --git a/executive-summary/component/Makefile.am b/executive-summary/component/Makefile.am index 7e7bb2bc8b..9c0a375f68 100644 --- a/executive-summary/component/Makefile.am +++ b/executive-summary/component/Makefile.am @@ -73,4 +73,15 @@ evolution_executive_summary_LDADD = \ gladedir = $(datadir)/evolution/glade glade_DATA = executive-summary-config.glade +if ENABLE_PURIFY +PLINK = $(LIBTOOL) --mode=link $(PURIFY) $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) -o $@ + +all-local: evolution-executive-summary.pure + +evolution-executive-summary.pure: evolution-executive-summary + @rm -f evolution-executive-summary.pure + $(PLINK) $(evolution_executive_summary_OBJECTS) $(evolution_executive_summary_LDADD) $(LIBS) + +endif + EXTRA_DIST = $(glade_DATA) |