]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Try to integrate none/tests/arm properly in the build system.
authorJulian Seward <jseward@acm.org>
Sun, 3 Jan 2010 17:40:07 +0000 (17:40 +0000)
committerJulian Seward <jseward@acm.org>
Sun, 3 Jan 2010 17:40:07 +0000 (17:40 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@10998

none/tests/Makefile.am
none/tests/arm/Makefile.am

index 1ada7964c3c3d739a77aabb8bb73d1b386dc4c02..730d3a29bdd81fa1a3f7e4aa802704ca0c1cdef8 100644 (file)
@@ -16,6 +16,9 @@ endif
 if VGCONF_ARCHS_INCLUDE_PPC64
 SUBDIRS += ppc64
 endif
+if VGCONF_ARCHS_INCLUDE_ARM
+SUBDIRS += arm
+endif
 
 # OS-specific tests
 if VGCONF_OS_IS_LINUX
@@ -30,7 +33,7 @@ if VGCONF_PLATFORMS_INCLUDE_X86_LINUX
 SUBDIRS += x86-linux
 endif
 
-DIST_SUBDIRS = x86 amd64 ppc32 ppc64 linux darwin x86-linux .
+DIST_SUBDIRS = x86 amd64 ppc32 ppc64 arm linux darwin x86-linux .
 
 dist_noinst_SCRIPTS = \
        filter_cmdline0 \
index d9ff4b343d2a9f6f8b72184eb1aaf462075e8624..de7a4bc71d62c4aa60eed416d0511994648fa83c 100644 (file)
@@ -1,16 +1,17 @@
 
 ### jrs: re-check this against known-good equivalents, eg x86 version
 
-EXTRA_DIST = $(noinst_SCRIPTS) \
-       instructions.stderr.exp instructions.stdout.exp
+EXTRA_DIST = $(noinst_SCRIPTS)
+#      \
+#      instructions.stderr.exp instructions.stdout.exp
+
 # if any tests appear here, remember to include @FLAG_M32@ in the
 # compilation flags
 #
 
-check_PROGRAMS = instructions
+#check_PROGRAMS = instructions
+check_PROGRAMS =
 
-AM_CFLAGS    = $(WERROR) -Winline -Wall -Wshadow \
-               @FLAG_M32@ -g -I$(top_srcdir)/include \
-               $(FLAG_MMMX) $(FLAG_MSSE)
-AM_CXXFLAGS  = $(AM_CFLAGS)
-AM_CCASFLAGS = @FLAG_M32@
+AM_CFLAGS    += @FLAG_M32@
+AM_CXXFLAGS  += @FLAG_M32@
+AM_CCASFLAGS += @FLAG_M32@