|
From: <sv...@va...> - 2009-06-23 03:05:20
|
Author: njn Date: 2009-06-23 04:05:02 +0100 (Tue, 23 Jun 2009) New Revision: 10363 Log: Ensure libvex_guest_offsets.h is installed, and that vex_svnversion.h is not cleaned. Modified: branches/BUILD_TWEAKS/Makefile.vex.am Modified: branches/BUILD_TWEAKS/Makefile.vex.am =================================================================== --- branches/BUILD_TWEAKS/Makefile.vex.am 2009-06-23 02:02:03 UTC (rev 10362) +++ branches/BUILD_TWEAKS/Makefile.vex.am 2009-06-23 03:05:02 UTC (rev 10363) @@ -18,6 +18,7 @@ pub/libvex.h \ pub/libvex_basictypes.h \ pub/libvex_emwarn.h \ + pub/libvex_guest_offsets.h \ pub/libvex_guest_x86.h \ pub/libvex_guest_amd64.h \ pub/libvex_guest_ppc32.h \ @@ -45,7 +46,7 @@ priv/host-arm/hdefs.h BUILT_SOURCES = pub/libvex_guest_offsets.h -CLEANFILES = $(BUILT_SOURCES) +CLEANFILES = pub/libvex_guest_offsets.h # This is very uggerly. Need to sed out both "xyzzyN" and # "xyzzy$N" since gcc on different targets emits the constants @@ -148,7 +149,7 @@ priv/host-arm/isel-arm.c # XXX: temporary -BUILT_SOURCES += \ +TMP_FILES = \ priv/guest-x86/ghelpers-x86.c \ priv/guest-amd64/ghelpers-amd64.c \ priv/guest-ppc/ghelpers-ppc.c \ @@ -169,6 +170,9 @@ priv/host-ppc/isel-ppc.c \ priv/host-arm/isel-arm.c +BUILT_SOURCES += $(TMP_FILES) +CLEANFILES += $(TMP_FILES) + # XXX: temporary EXTRA_DIST += \ priv/guest-x86/ghelpers.c \ |