summaryrefslogtreecommitdiff
path: root/test/termios
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/termios
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/termios')
-rw-r--r--test/termios/Makefile6
1 files changed, 2 insertions, 4 deletions
diff --git a/test/termios/Makefile b/test/termios/Makefile
index c89318c8c..4c7450be2 100644
--- a/test/termios/Makefile
+++ b/test/termios/Makefile
@@ -25,7 +25,7 @@ all: $(TARGETS)
termios: termios.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)
@@ -38,7 +38,7 @@ termios: termios.c Makefile $(TESTDIR)/Rules.mak
termios_glibc: termios.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 $@
@@ -50,5 +50,3 @@ termios_glibc: termios.c Makefile
clean:
$(RM) *.[oa] *~ core $(TARGETS)
-
-