summaryrefslogtreecommitdiff
path: root/test/stat
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-07-01 00:08:24 +0000
committerMike Frysinger <vapier@gentoo.org>2005-07-01 00:08:24 +0000
commit6eb01343b46aab40475112f05aeaff1a367223df (patch)
tree8231f10f5318f58ed72c566a005f7f57b77c5c04 /test/stat
parent095ca55f2edd965fa9f3a5d3a4c98a7d7e852ed9 (diff)
make test output nicer so its easier to go through a log of `make -s` and find out what works/fails
Diffstat (limited to 'test/stat')
-rw-r--r--test/stat/Makefile10
1 files changed, 4 insertions, 6 deletions
diff --git a/test/stat/Makefile b/test/stat/Makefile
index 3bd98f795..1271ef2c1 100644
--- a/test/stat/Makefile
+++ b/test/stat/Makefile
@@ -36,7 +36,7 @@ stat_source:
stat: stat.c Makefile $(TESTDIR)/Rules.mak
-@ echo "-------"
-@ echo " "
- -@ echo "Compiling vs uClibc: "
+ -@ echo "Compiling $@ vs uClibc: "
-@ echo " "
$(CC) $(CFLAGS) -c $< -o $@.o
$(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS)
@@ -47,7 +47,7 @@ stat: stat.c Makefile $(TESTDIR)/Rules.mak
stat_glibc: stat.c Makefile
-@ echo "-------"
-@ echo " "
- -@ echo "Compiling vs GNU libc: "
+ -@ echo "Compiling $@ vs GNU libc: "
-@ echo " "
$(HOSTCC) $(GLIBC_CFLAGS) -c $< -o $@.o
$(HOSTCC) $(GLIBC_LDFLAGS) $@.o -o $@
@@ -66,7 +66,7 @@ stat_diff: stat stat_glibc
stat64: stat.c Makefile $(TESTDIR)/Rules.mak
-@ echo "-------"
-@ echo " "
- -@ echo "Compiling vs uClibc: "
+ -@ echo "Compiling $@ vs uClibc: "
-@ echo " "
$(CC) $(CFLAGS) $(CFLAGS64) -c $< -o $@.o
$(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS)
@@ -77,7 +77,7 @@ stat64: stat.c Makefile $(TESTDIR)/Rules.mak
stat64_glibc: stat.c Makefile
-@ echo "-------"
-@ echo " "
- -@ echo "Compiling vs GNU libc: "
+ -@ echo "Compiling $@ vs GNU libc: "
-@ echo " "
$(HOSTCC) $(GLIBC_CFLAGS) $(CFLAGS64) -c $< -o $@.o
$(HOSTCC) $(GLIBC_LDFLAGS) $@.o -o $@
@@ -96,5 +96,3 @@ stat64_diff: stat64 stat64_glibc
clean:
$(RM) *.[oa] *~ core stat stat_glibc stat_glibc.out stat.out \
stat64 stat64_glibc stat64_glibc.out stat64.out
-
-