diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-07-01 00:02:24 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-07-01 00:02:24 +0000 |
commit | 095ca55f2edd965fa9f3a5d3a4c98a7d7e852ed9 (patch) | |
tree | 074540e563757454c2c4adce2e3799a5ab766db8 /test/math/Makefile | |
parent | de8b8b0b0bdd0f6012187dfc3046cac098000bb0 (diff) |
remove old depend on Config and make it so that a test failure aborts the make process
Diffstat (limited to 'test/math/Makefile')
-rw-r--r-- | test/math/Makefile | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/test/math/Makefile b/test/math/Makefile index e43b18544..0d0639d46 100644 --- a/test/math/Makefile +++ b/test/math/Makefile @@ -38,24 +38,24 @@ all: $(TARGETS) test-double: test-double.o $(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS) - -./$@ + ./$@ test-idouble: test-idouble.o $(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS) - -./$@ + ./$@ test-float: test-float.o $(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS) - -./$@ + ./$@ test-ifloat: test-ifloat.o $(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS) - -./$@ + ./$@ test-ldouble: test-ldouble.o $(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS) - -./$@ + ./$@ test-ildouble: test-ildoubl.o $(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS) - -./$@ + ./$@ -rint: rint.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak +rint: rint.c Makefile $(TESTDIR)/Rules.mak -@ echo "-------" -@ echo " " -@ echo "Compiling vs uClibc: " @@ -63,10 +63,10 @@ rint: rint.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak $(CC) $(CFLAGS) -c $< -o $@.o $(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS) $(STRIPTOOL) -x -R .note -R .comment $@ - -./$@ > $@.out 2>&1 + ./$@ > $@.out 2>&1 -@ echo " " -rint_glibc: rint.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak +rint_glibc: rint.c Makefile $(TESTDIR)/Rules.mak -@ echo "-------" -@ echo " " -@ echo "Compiling vs glibc: " @@ -74,7 +74,7 @@ rint_glibc: rint.c Makefile $(TESTDIR)/Config $(TESTDIR)/Rules.mak $(HOSTCC) $(GLIBC_CFLAGS) -c $< -o $@.o $(HOSTCC) $(GLIBC_LDFLAGS) $@.o -o $@ $(EXTRA_LIBS) $(STRIPTOOL) -x -R .note -R .comment $@ - -./$@ > $@.out 2>&1 + ./$@ > $@.out 2>&1 -@ echo " " diff: rint_glibc rint |