diff options
-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) |