mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-06 19:54:18 +00:00
tree a bit better. Also, fixes to make 'make dist' include into the final tarball a minimal but workable subset of the stuff in the VEX directory. Note, you must do 'make' or 'make install' before 'make dist' since otherwise VEX/priv/main/vex_svnversion.h will not exist. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@4266
17 lines
434 B
Makefile
17 lines
434 B
Makefile
include $(top_srcdir)/Makefile.all.am
|
|
include $(top_srcdir)/Makefile.core-AM_CPPFLAGS.am
|
|
|
|
noinst_LIBRARIES = libdispatch.a
|
|
|
|
# Remember to include all the arch-specific files in the distribution.
|
|
EXTRA_DIST = \
|
|
$(addsuffix .S,$(addprefix dispatch-,$(VG_ARCH_ALL)))
|
|
|
|
libdispatch_a_SOURCES = \
|
|
dispatch-@VG_ARCH@.S
|
|
|
|
dispatch-@VG_ARCH@.S: libvex_guest_offsets.h
|
|
|
|
libvex_guest_offsets.h:
|
|
$(MAKE) -C @VEX_DIR@ pub/libvex_guest_offsets.h
|