diff options
author | Eric Andersen <andersen@codepoet.org> | 2000-10-26 08:29:37 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2000-10-26 08:29:37 +0000 |
commit | 822aed5c26a75b446ea096bcfbe475d94feb3f27 (patch) | |
tree | fe80a4dfc62888d97ea1d6cf0ada4443073c4bdd | |
parent | e9551853bedf2b0eaff29fe6138a67aad31d6e62 (diff) |
Fix makefile bugs
-rw-r--r-- | test/stdlib/Makefile | 8 |
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 " " |