diff options
author | njn <njn@a5019735-40e9-0310-863c-91ae7b9d1cf9> | 2005-07-02 17:36:11 +0000 |
---|---|---|
committer | njn <njn@a5019735-40e9-0310-863c-91ae7b9d1cf9> | 2005-07-02 17:36:11 +0000 |
commit | 94260f2774fa5a518a371344d27b7facccbc1155 (patch) | |
tree | 3b2ce70825b7e7f42e5d528a31978a9d771a5631 /cachegrind | |
parent | d0ab2c26cfe051f06efc5004e7df9aefd735af12 (diff) |
Fixed 'make dist'. In particular, all the arch/platform-specific files
get included in the distro now, not just the ones for the arch/platform
that the distro tarball is built on.
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@4085 a5019735-40e9-0310-863c-91ae7b9d1cf9
Diffstat (limited to 'cachegrind')
-rw-r--r-- | cachegrind/Makefile.am | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/cachegrind/Makefile.am b/cachegrind/Makefile.am index e981aaf6..7cbebe09 100644 --- a/cachegrind/Makefile.am +++ b/cachegrind/Makefile.am @@ -2,7 +2,10 @@ include $(top_srcdir)/Makefile.tool.am bin_SCRIPTS = cg_annotate -EXTRA_DIST = cg_sim.c +# Remember to include all the arch-specific files in the distribution. +EXTRA_DIST = \ + cg_sim.c \ + $(addsuffix .c,$(addprefix cg-,$(VG_ARCH_ALL))) noinst_HEADERS = cg_arch.h |