|
From: <sv...@va...> - 2005-06-24 13:46:55
|
Author: njn Date: 2005-06-24 14:45:56 +0100 (Fri, 24 Jun 2005) New Revision: 4010 Log: "make dist" fixes from Ralf Wildenhues. Modified: trunk/Makefile.am trunk/corecheck/tests/Makefile.am trunk/coregrind/Makefile.am trunk/include/Makefile.am Modified: trunk/Makefile.am =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- trunk/Makefile.am 2005-06-24 03:28:30 UTC (rev 4009) +++ trunk/Makefile.am 2005-06-24 13:45:56 UTC (rev 4010) @@ -14,10 +14,11 @@ ## addrcheck \ =20 # Temporary: we want to compile Helgrind, but not regtest it. +# And we want to include Addrcheck in the distro, but not compile/test i= t. # Put docs last because building the HTML is slow and we want to get # everything else working before we try it. SUBDIRS =3D include coregrind . tests auxprogs $(TOOLS) helgrind docs -##DIST_SUBDIRS =3D $(SUBDIRS) helgrind +DIST_SUBDIRS =3D $(SUBDIRS) addrcheck =20 SUPP_FILES =3D \ glibc-2.1.supp glibc-2.2.supp glibc-2.3.supp \ Modified: trunk/corecheck/tests/Makefile.am =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- trunk/corecheck/tests/Makefile.am 2005-06-24 03:28:30 UTC (rev 4009) +++ trunk/corecheck/tests/Makefile.am 2005-06-24 13:45:56 UTC (rev 4010) @@ -54,7 +54,7 @@ stack_changes vgprintf =20 AM_CFLAGS =3D $(WERROR) -Winline -Wall -Wshadow -g -O0 -AM_CPPFLAGS =3D -I$(top_builddir)/include +AM_CPPFLAGS =3D -I$(top_srcdir)/include AM_CXXFLAGS =3D $(AM_CFLAGS) =20 vgprintf_SOURCES =3D vgprintf.c Modified: trunk/coregrind/Makefile.am =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- trunk/coregrind/Makefile.am 2005-06-24 03:28:30 UTC (rev 4009) +++ trunk/coregrind/Makefile.am 2005-06-24 13:45:56 UTC (rev 4010) @@ -65,6 +65,7 @@ pub_core_skiplist.h \ pub_core_stacks.h \ pub_core_stacktrace.h \ + pub_core_syscall.h \ pub_core_syswrap.h \ pub_core_threadmodel.h \ pub_core_threadstate.h \ Modified: trunk/include/Makefile.am =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- trunk/include/Makefile.am 2005-06-24 03:28:30 UTC (rev 4009) +++ trunk/include/Makefile.am 2005-06-24 13:45:56 UTC (rev 4010) @@ -6,6 +6,7 @@ pub_tool_basics_asm.h \ pub_tool_aspacemgr.h \ pub_tool_cpuid.h \ + pub_tool_debuginfo.h \ pub_tool_errormgr.h \ pub_tool_execontext.h \ pub_tool_hashtable.h \ @@ -22,8 +23,10 @@ pub_tool_profile.h \ pub_tool_redir.h \ pub_tool_replacemalloc.h \ + pub_tool_signals.h \ pub_tool_skiplist.h \ pub_tool_stacktrace.h \ + pub_tool_threadstate.h \ pub_tool_tooliface.h \ valgrind.h \ vki-linux.h \ |