summaryrefslogtreecommitdiff
path: root/test/stdlib
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2000-10-26 08:29:37 +0000
committerEric Andersen <andersen@codepoet.org>2000-10-26 08:29:37 +0000
commit822aed5c26a75b446ea096bcfbe475d94feb3f27 (patch)
treefe80a4dfc62888d97ea1d6cf0ada4443073c4bdd /test/stdlib
parente9551853bedf2b0eaff29fe6138a67aad31d6e62 (diff)
Fix makefile bugs
Diffstat (limited to 'test/stdlib')
-rw-r--r--test/stdlib/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/stdlib/Makefile b/test/stdlib/Makefile
index d83ee1f87..12ad870eb 100644
--- a/test/stdlib/Makefile
+++ b/test/stdlib/Makefile
@@ -63,8 +63,8 @@ mallocbug: mallocbug.c Makefile $(TOPDIR)libc.a
-@ echo " "
-@ echo "Compiling vs uC-Libc: "
-@ echo " "
- $(CC) -g $(XCFLAGS) -c $< -o $@.o
- $(CC) -g $(XLDFLAGS) $@.o -o $@ $(EXTRA_LIBS)
+ $(CC) $(XCFLAGS) -c $< -o $@.o
+ $(CC) $(XLDFLAGS) $@.o -o $@ $(EXTRA_LIBS)
$(STRIP)
-ldd $@
ls $(LSFLAGS) $@
@@ -99,7 +99,7 @@ teststrtol: teststrtol.c Makefile $(TOPDIR)libc.a
$(CC) $(XCFLAGS) -c $< -o $@.o
$(CC) $(XLDFLAGS) $@.o -o $@ $(EXTRA_LIBS)
$(STRIP)
- ldd $@
+ -ldd $@
ls -sh $@
-./$@ > $@.out
-@ echo " "
@@ -112,7 +112,7 @@ teststrtol_glibc: teststrtol.c Makefile $(TOPDIR)libc.a
$(CC) $(YCFLAGS) -c $< -o $@.o
$(CC) $(YLDFLAGS) --static $@.o -o $@
$(STRIP)
- ldd $@
+ -ldd $@
ls -sh $@
-./$@ > $@.out
-@ echo " "