summaryrefslogtreecommitdiff
path: root/perf
diff options
context:
space:
mode:
authornjn <njn@a5019735-40e9-0310-863c-91ae7b9d1cf9>2009-06-24 00:37:09 +0000
committernjn <njn@a5019735-40e9-0310-863c-91ae7b9d1cf9>2009-06-24 00:37:09 +0000
commit8b68b64759254d514d98328c496cbd88cde4c9a5 (patch)
tree50187630159a0303e2664948b454281afc1524c9 /perf
parent109d5daa9f0e443a25bbdc7eeac1053d9f2ba8f7 (diff)
This commit merges the BUILD_TWEAKS branch onto the trunk. It has the
following improvements: - Arch/OS/platform-specific files are now included/excluded via the preprocessor, rather than via the build system. This is more consistent (we use the pre-processor for small arch/OS/platform-specific chunks within files) and makes the build system much simpler, as the sources for all programs are the same on all platforms. - Vast amounts of cut+paste Makefile.am code has been factored out. If a new platform is implemented, you need to add 11 extra Makefile.am lines. Previously it was over 100 lines. - Vex has been autotoolised. Dependency checking now works in Vex (no more incomplete builds). Parallel builds now also work. --with-vex no longer works; it's little use and a pain to support. VEX/Makefile is still in the Vex repository and gets overwritten at configure-time; it should probably be renamed Makefile-gcc to avoid possible problems, such as accidentally committing a generated Makefile. There's a bunch of hacky copying to deal with the fact that autotools don't handle same-named files in different directories. Julian plans to rename the files to avoid this problem. - Various small Makefile.am things have been made more standard automake style, eg. the use of pkginclude/pkglib prefixes instead of rolling our own. - The existing five top-level Makefile.am include files have been consolidated into three. - Most Makefile.am files now are structured more clearly, with comment headers separating sections, declarations relating to the same things next to each other, better spacing and layout, etc. - Removed the unused exp-ptrcheck/tests/x86 directory. - Renamed some XML files. - Factored out some duplicated dSYM handling code. - Split auxprogs/ into auxprogs/ and mpi/, which allowed the resulting Makefile.am files to be much more standard. - Cleaned up m_coredump by merging a bunch of files that had been overzealously separated. The net result is 630 fewer lines of Makefile.am code, or 897 if you exclude the added Makefile.vex.am, or 997 once the hacky file copying for Vex is removed. And the build system is much simpler. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@10364 a5019735-40e9-0310-863c-91ae7b9d1cf9
Diffstat (limited to 'perf')
-rw-r--r--perf/Makefile.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/perf/Makefile.am b/perf/Makefile.am
index 1101ac95..6d4eb424 100644
--- a/perf/Makefile.am
+++ b/perf/Makefile.am
@@ -1,9 +1,9 @@
include $(top_srcdir)/Makefile.tool-tests.am
-noinst_SCRIPTS = vg_perf
+dist_noinst_SCRIPTS = vg_perf
-EXTRA_DIST = $(noinst_SCRIPTS) \
+EXTRA_DIST = \
bigcode1.vgperf \
bigcode2.vgperf \
bz2.vgperf \