diff options
-rw-r--r-- | test/assert/Makefile | 5 | ||||
-rw-r--r-- | test/ctype/Makefile | 5 | ||||
-rw-r--r-- | test/string/Makefile | 5 |
3 files changed, 6 insertions, 9 deletions
diff --git a/test/assert/Makefile b/test/assert/Makefile index 8fb90bd1c..57b87aa78 100644 --- a/test/assert/Makefile +++ b/test/assert/Makefile @@ -26,7 +26,7 @@ all: $(TARGETS) assert: assert.c Makefile $(TOPDIR)libc.a -@ echo "-------" -@ echo " " - -@ echo "Testing ctype functions: " + -@ echo "Compiling vs uCLibc: " -@ echo " " $(CC) $(XCFLAGS) -c $< -o $@.o $(CC) $(XLDFLAGS) $@.o -o $@ $(EXTRA_LIBS) @@ -36,12 +36,11 @@ assert: assert.c Makefile $(TOPDIR)libc.a assert_glibc: assert.c Makefile $(TOPDIR)libc.a -@ echo "-------" -@ echo " " - -@ echo "Testing assert functions: " + -@ echo "Compiling vs GNU libc: " -@ echo " " $(CC) $(YCFLAGS) -c $< -o $@.o $(CC) $(YLDFLAGS) --static $@.o -o $@ -./$@ - -./$@ -@ echo " " clean: diff --git a/test/ctype/Makefile b/test/ctype/Makefile index 90594d863..fdb64ce03 100644 --- a/test/ctype/Makefile +++ b/test/ctype/Makefile @@ -26,7 +26,7 @@ all: $(TARGETS) ctype: ctype.c ../testsuite.h Makefile $(TOPDIR)libc.a -@ echo "-------" -@ echo " " - -@ echo "Testing ctype functions: " + -@ echo "Compiling vs uCLibc: " -@ echo " " $(CC) $(XCFLAGS) -c $< -o $@.o $(CC) $(XLDFLAGS) $@.o -o $@ $(EXTRA_LIBS) @@ -36,12 +36,11 @@ ctype: ctype.c ../testsuite.h Makefile $(TOPDIR)libc.a ctype_glibc: ctype.c ../testsuite.h Makefile $(TOPDIR)libc.a -@ echo "-------" -@ echo " " - -@ echo "Testing ctype functions: " + -@ echo "Compiling vs GNU libc: " -@ echo " " $(CC) $(YCFLAGS) -c $< -o $@.o $(CC) $(YLDFLAGS) --static $@.o -o $@ -./$@ - -./$@ -@ echo " " clean: diff --git a/test/string/Makefile b/test/string/Makefile index 40e026775..b3021e0fc 100644 --- a/test/string/Makefile +++ b/test/string/Makefile @@ -26,7 +26,7 @@ all: $(TARGETS) string: string.c Makefile $(TOPDIR)libc.a -@ echo "-------" -@ echo " " - -@ echo "Testing ctype functions: " + -@ echo "Compiling vs uCLibc: " -@ echo " " $(CC) $(XCFLAGS) -c $< -o $@.o $(CC) $(XLDFLAGS) $@.o -o $@ $(EXTRA_LIBS) @@ -36,12 +36,11 @@ string: string.c Makefile $(TOPDIR)libc.a string_glibc: string.c Makefile $(TOPDIR)libc.a -@ echo "-------" -@ echo " " - -@ echo "Testing string functions: " + -@ echo "Compiling vs GNU libc: " -@ echo " " $(CC) $(YCFLAGS) -c $< -o $@.o $(CC) $(YLDFLAGS) --static $@.o -o $@ -./$@ - -./$@ -@ echo " " clean: |