|
From: <sv...@va...> - 2014-03-11 19:30:39
|
Author: mjw
Date: Tue Mar 11 19:30:32 2014
New Revision: 13868
Log:
Make sure all files under the new shared dir are included in make dist.
Added:
trunk/shared/Makefile.am
Modified:
trunk/Makefile.am
trunk/configure.ac
Modified: trunk/Makefile.am
==============================================================================
--- trunk/Makefile.am (original)
+++ trunk/Makefile.am Tue Mar 11 19:30:32 2014
@@ -25,6 +25,7 @@
. \
$(TOOLS) \
$(EXP_TOOLS) \
+ shared \
tests \
perf \
gdbserver_tests \
Modified: trunk/configure.ac
==============================================================================
--- trunk/configure.ac (original)
+++ trunk/configure.ac Tue Mar 11 19:30:32 2014
@@ -2996,6 +2996,7 @@
exp-bbv/tests/arm-linux/Makefile
exp-dhat/Makefile
exp-dhat/tests/Makefile
+ shared/Makefile
])
AC_CONFIG_FILES([coregrind/link_tool_exe_linux],
[chmod +x coregrind/link_tool_exe_linux])
Added: trunk/shared/Makefile.am
==============================================================================
--- trunk/shared/Makefile.am (added)
+++ trunk/shared/Makefile.am Tue Mar 11 19:30:32 2014
@@ -0,0 +1,3 @@
+# We need to list all source files here to make sure they are included in
+# the make dist target.
+EXTRA_DIST = vg_replace_strmem.c
|