|
From: <sv...@va...> - 2005-07-26 23:06:22
|
Author: njn Date: 2005-07-27 00:06:18 +0100 (Wed, 27 Jul 2005) New Revision: 4274 Log: Vex headers should be installed in $INST/include/valgrind/, too. Modified: trunk/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-07-26 23:04:25 UTC (rev 4273) +++ trunk/Makefile.am 2005-07-26 23:06:18 UTC (rev 4274) @@ -28,6 +28,9 @@ pkgconfigdir =3D $(libdir)/pkgconfig pkgconfig_DATA =3D valgrind.pc =20 +incincdir =3D $(includedir)/valgrind +incinc_HEADERS =3D $(VEX_PUBLIC_HDRS) + BUILT_SOURCES =3D default.supp valgrind.pc =20 DISTCLEANFILES =3D default.supp @@ -47,7 +50,8 @@ valgrind.spec.in valgrind.pc.in \ Makefile.all.am Makefile.tool.am Makefile.core-AM_CPPFLAGS.am \ Makefile.tool-inplace.am \ - $(VEX_PRIMARY_SOURCES) + $(VEX_PRIMARY_SOURCES) \ + $(VEX_PUBLIC_HDRS) =20 install-exec-hook: $(mkinstalldirs) $(DESTDIR)$(valdir) @@ -61,14 +65,9 @@ distclean-local: rm -rf $(inplacedir) =20 +# These list the bits of vex we need to copy into the tarball =20 -# This lists the bits of vex we need to copy into the tarball - -VEX_PRIMARY_SOURCES =3D \ - VEX/README \ - VEX/COPYING \ - VEX/Makefile \ - VEX/auxprogs/genoffsets.c \ +VEX_PUBLIC_HDRS =3D \ VEX/pub/libvex_guest_amd64.h \ VEX/pub/libvex_ir.h \ VEX/pub/libvex_guest_ppc32.h \ @@ -78,7 +77,13 @@ VEX/pub/libvex.h \ VEX/pub/libvex_trc_values.h \ VEX/pub/libvex_guest_arm.h \ - VEX/pub/libvex_guest_x86.h \ + VEX/pub/libvex_guest_x86.h + +VEX_PRIMARY_SOURCES =3D \ + VEX/README \ + VEX/COPYING \ + VEX/Makefile \ + VEX/auxprogs/genoffsets.c \ VEX/priv/ir/irmatch.c \ VEX/priv/ir/irmatch.h \ VEX/priv/ir/irdefs.c \ |